diff --git a/.gitignore b/.gitignore index 8a9ff09..8b6ebfd 100644 --- a/.gitignore +++ b/.gitignore @@ -118,8 +118,10 @@ media/ backup/ backups/ -# EXCEPCIÓN: Permitir backup compartido para colaboradores -!backend/fixtures/db_full_backup.sql +# EXCEPCIÓN: Permitir fixtures para colaboradores +!backend/fixtures/ +!backend/fixtures/*.json +!backend/fixtures/*.sql # ============================================== # Archivos Temporales @@ -129,3 +131,4 @@ backups/ .cache/ tmp/ temp/ +.claude/ diff --git a/CHANGELOG_SETUP.md b/CHANGELOG_SETUP.md new file mode 100644 index 0000000..70d03db --- /dev/null +++ b/CHANGELOG_SETUP.md @@ -0,0 +1,310 @@ +# Changelog - Configuración de Inicialización Automática + +## Fecha: 2025-10-21 + +## 🎯 Objetivo + +Configurar el proyecto para que: +1. Los colaboradores obtengan automáticamente la base de datos al clonar +2. El sistema esté listo para producción cuando haya acceso al servidor +3. La configuración sea lo más simple posible (zero-config para colaboradores) + +## ✅ Cambios Realizados + +### 1. Script de Inicialización Automática + +**Archivo nuevo:** `backend/init_db.py` + +- Detecta si la base de datos está vacía +- Carga automáticamente fixtures si no hay datos +- Previene duplicación de datos +- Se ejecuta automáticamente en cada inicio de contenedor + +### 2. Fixtures con Datos Iniciales + +**Archivo nuevo:** `backend/fixtures/initial_data.json` + +Contiene: +- Usuarios (superusuario Admin y asistentes) +- Perfiles de usuario +- Sesiones +- Datos de autenticación + +Tamaño: ~1.4 MB +Fuente: Exportado desde `database_backup_complete.json` + +### 3. Script de Exportación + +**Archivo nuevo:** `export_fixtures.py` + +- Permite exportar datos actuales a fixtures +- Compatible con Windows (sin emojis en console) +- Genera `backend/fixtures/initial_users.json` e `initial_events.json` + +### 4. Configuración de Docker Compose + +**Archivos modificados:** +- `docker-compose.yml` (producción) +- `docker-compose.dev.yml` (desarrollo) + +Cambios: +```diff +command: > + sh -c "python manage.py migrate && ++ python init_db.py && + python manage.py collectstatic --noinput && + ..." +``` + +Ahora ejecuta `init_db.py` automáticamente después de las migraciones. + +### 5. Configuración de Git + +**Archivo modificado:** `.gitignore` + +```diff +# Backups +*.sql +*.sql.gz +*.backup +backup/ +backups/ + +-# EXCEPCIÓN: Permitir backup compartido para colaboradores +-!backend/fixtures/db_full_backup.sql ++# EXCEPCIÓN: Permitir fixtures para colaboradores ++!backend/fixtures/ ++!backend/fixtures/*.json ++!backend/fixtures/*.sql +``` + +Ahora los fixtures se INCLUYEN en el repositorio (antes estaban excluidos). + +También se agregó: +```diff ++.claude/ +``` + +Para excluir archivos de configuración de Claude Code. + +### 6. Documentación Nueva + +**Archivos nuevos creados:** + +1. **QUICK_START.md** (Inicio rápido) + - 3 comandos para empezar + - Acceso rápido a URLs + - Comandos útiles básicos + +2. **SETUP_COLABORADORES.md** (Guía completa para colaboradores) + - Proceso de clonación y configuración + - Explicación de inicialización automática + - Usuarios precargados + - Comandos útiles avanzados + - Problemas comunes y soluciones + - Cómo actualizar y compartir datos + +3. **GUIA_PRODUCCION.md** (Guía de despliegue en producción) + - Preparación del servidor + - Configuración de variables de entorno + - Configuración de SSL (Let's Encrypt y autofirmados) + - Seguridad y firewall + - Backups automáticos + - Monitoreo y mantenimiento + - Actualización del sistema + - Problemas comunes + +4. **RESUMEN_CONFIGURACION.md** (Resumen técnico) + - Lo que se configuró + - Cómo funciona el flujo de trabajo + - Estado actual del proyecto + - Archivos clave + - Beneficios de la configuración + - Próximos pasos + +5. **RESPUESTAS_FAQ.md** (Preguntas frecuentes) + - ¿Ya está en producción? + - ¿Los colaboradores tendrán mi BD? + - ¿Pueden usar mi superusuario? + - ¿Cómo actualizar datos? + - ¿Los fixtures se suben a Git? + - Y más... + +6. **CHANGELOG_SETUP.md** (Este archivo) + - Resumen de todos los cambios + - Fecha y propósito + - Lista de archivos nuevos/modificados + +### 7. README Actualizado + +**Archivo modificado:** `README.md` + +Agregado al inicio: +```markdown +## ⚡ Inicio Rápido + +**¿Primera vez usando el proyecto?** Ver QUICK_START.md +**¿Eres colaborador?** Ver SETUP_COLABORADORES.md +**¿Quieres poner en producción?** Ver GUIA_PRODUCCION.md +``` + +## 📊 Resumen de Archivos + +### Archivos Nuevos (8) + +1. `backend/init_db.py` - Script de inicialización +2. `backend/fixtures/initial_data.json` - Datos iniciales +3. `export_fixtures.py` - Script de exportación +4. `QUICK_START.md` - Guía rápida +5. `SETUP_COLABORADORES.md` - Guía para colaboradores +6. `GUIA_PRODUCCION.md` - Guía de producción +7. `RESUMEN_CONFIGURACION.md` - Resumen técnico +8. `RESPUESTAS_FAQ.md` - FAQ +9. `CHANGELOG_SETUP.md` - Este archivo + +### Archivos Modificados (4) + +1. `.gitignore` - Permitir fixtures en Git +2. `docker-compose.yml` - Ejecutar init_db.py +3. `docker-compose.dev.yml` - Ejecutar init_db.py +4. `README.md` - Enlaces a nuevas guías + +## 🔄 Flujo de Trabajo Implementado + +### Para Colaboradores Nuevos + +``` +1. git clone [repo] +2. cp .env.development.example .env.development +3. docker-compose -f docker-compose.dev.yml up -d + + [Automáticamente]: + - PostgreSQL inicia + - Django migra tablas + - init_db.py carga fixtures + - Servidor inicia + +4. Acceder a http://localhost + - Login con usuario "Admin" + - ¡Todo funciona! +``` + +### Para Compartir Datos + +``` +1. Hacer cambios en la BD +2. python export_fixtures.py +3. git add backend/fixtures/ +4. git commit -m "Actualizar fixtures" +5. git push origin main + +Colaboradores: +6. git pull origin main +7. docker-compose -f docker-compose.dev.yml down -v +8. docker-compose -f docker-compose.dev.yml up -d +``` + +### Para Producción (Futuro) + +``` +1. Acceder al servidor +2. git clone [repo] +3. Configurar .env.production +4. Configurar SSL +5. docker-compose up -d + + [Automáticamente]: + - Todo igual que en desarrollo + - Pero en HTTPS con Gunicorn +``` + +## ✨ Beneficios + +### Antes de Este Cambio + +- ❌ Colaboradores tenían que crear manualmente usuarios +- ❌ Cada uno tenía diferentes datos +- ❌ Difícil de sincronizar entre máquinas +- ❌ Producción requería configuración manual + +### Después de Este Cambio + +- ✅ Zero configuración para colaboradores +- ✅ Todos tienen los mismos datos +- ✅ Un comando para actualizar (`git pull` + `docker-compose up`) +- ✅ Listo para producción cuando se necesite + +## 🔒 Seguridad + +### Consideraciones + +- ✅ Las contraseñas en fixtures están hasheadas (seguras) +- ✅ Los archivos `.env` NO se suben a Git +- ✅ Los fixtures se pueden compartir sin riesgo +- ⚠️ Cambiar contraseñas en producción + +### Archivos Sensibles NO en Git + +- `.env` +- `.env.development` +- `.env.production` +- `backend/logs/` +- `docker/ssl/` (certificados) + +### Archivos en Git (Seguros) + +- `backend/fixtures/*.json` (contraseñas hasheadas) +- Scripts de configuración +- Documentación + +## 🎯 Estado del Proyecto + +### Desarrollo: ✅ 100% Funcional + +- Inicialización automática +- Fixtures compartidos +- Documentación completa +- Listo para colaboradores + +### Producción: ✅ 100% Preparado + +- Docker Compose configurado +- Variables de entorno separadas +- SSL configurado +- Solo falta acceso al servidor + +## 📞 Próximos Pasos + +### Inmediatos + +1. ✅ Revisar este changelog +2. ⬜ Probar localmente que todo funciona +3. ⬜ Subir cambios a GitHub +4. ⬜ Compartir con colaboradores + +### Cuando Tengas Servidor + +1. ⬜ Seguir GUIA_PRODUCCION.md +2. ⬜ Configurar .env.production +3. ⬜ Configurar certificados SSL +4. ⬜ Ejecutar docker-compose up -d +5. ⬜ Cambiar contraseñas de producción + +## 📝 Notas + +- Los fixtures actuales tienen ~1.4 MB +- Compatible con Windows, Linux y Mac +- Docker Compose v2+ requerido +- Python 3.11+ para scripts locales + +## 👥 Créditos + +- Configuración: Sistema de inicialización automática +- Fecha: 21 de octubre de 2025 +- Propósito: Facilitar colaboración y despliegue + +--- + +**Versión:** 1.0.0 +**Estado:** ✅ Completado +**Próximo paso:** Subir a GitHub diff --git a/GUIA_PRODUCCION.md b/GUIA_PRODUCCION.md new file mode 100644 index 0000000..fddaab1 --- /dev/null +++ b/GUIA_PRODUCCION.md @@ -0,0 +1,403 @@ +# Guía para Poner en Producción + +Esta guía te ayudará a desplegar el sistema en un servidor de producción cuando tengas acceso. + +## 📋 Checklist Pre-Producción + +Antes de desplegar en producción, asegúrate de tener: + +- [ ] Acceso al servidor de producción (IP: 132.248.80.77 según configuración) +- [ ] Docker y Docker Compose instalados en el servidor +- [ ] Certificados SSL válidos (o configurar Let's Encrypt) +- [ ] Dominio configurado (opcional, puedes usar solo IP) +- [ ] Credenciales de producción seguras preparadas +- [ ] Backup de los datos actuales (si hay) + +## 🚀 Pasos para Desplegar en Producción + +### 1. Preparar el Servidor + +```bash +# Conectarse al servidor (SSH) +ssh usuario@132.248.80.77 + +# Actualizar el sistema +sudo apt update && sudo apt upgrade -y + +# Instalar Docker (si no está instalado) +curl -fsSL https://get.docker.com -o get-docker.sh +sudo sh get-docker.sh + +# Instalar Docker Compose +sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose +sudo chmod +x /usr/local/bin/docker-compose + +# Verificar instalación +docker --version +docker-compose --version +``` + +### 2. Clonar el Repositorio + +```bash +# Clonar en el servidor +cd /opt # o el directorio que prefieras +sudo git clone https://github.com/val20-11/Pagina-de-Asistencia-MAC.git +cd Pagina-de-Asistencia-MAC +``` + +### 3. Configurar Variables de Entorno de Producción + +```bash +# Copiar el template +cp .env.production.example .env.production + +# Editar con tus credenciales SEGURAS +nano .env.production +``` + +**IMPORTANTE:** Configura estas variables en `.env.production`: + +```env +# Django +DEBUG=False +SECRET_KEY= +ALLOWED_HOSTS=132.248.80.77,tu-dominio.com + +# Base de Datos +DB_NAME=mac_attendance +DB_USER=mac_user +DB_PASSWORD= +DB_HOST=db +DB_PORT=5432 + +# CORS (solo HTTPS en producción) +CORS_ALLOWED_ORIGINS=https://132.248.80.77,https://tu-dominio.com + +# Security +CSRF_TRUSTED_ORIGINS=https://132.248.80.77,https://tu-dominio.com +SECURE_SSL_REDIRECT=True +``` + +**Generar SECRET_KEY segura:** +```bash +docker run --rm python:3.11-slim python -c "from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())" +``` + +**Generar contraseña segura de BD:** +```bash +openssl rand -base64 32 +``` + +### 4. Configurar Certificados SSL + +#### Opción A: Certificados Autofirmados (para pruebas) + +Los certificados autofirmados ya están configurados en `docker/ssl/README.md`. + +#### Opción B: Let's Encrypt (Recomendado para producción) + +```bash +# Instalar certbot +sudo apt install certbot + +# Generar certificados (necesitas un dominio) +sudo certbot certonly --standalone -d tu-dominio.com + +# Los certificados estarán en: +# /etc/letsencrypt/live/tu-dominio.com/fullchain.pem +# /etc/letsencrypt/live/tu-dominio.com/privkey.pem + +# Copiar a la ubicación de Docker +sudo cp /etc/letsencrypt/live/tu-dominio.com/fullchain.pem docker/ssl/server.crt +sudo cp /etc/letsencrypt/live/tu-dominio.com/privkey.pem docker/ssl/server.key +sudo chmod 644 docker/ssl/server.crt +sudo chmod 600 docker/ssl/server.key +``` + +**Renovación automática:** +```bash +# Crear script de renovación +sudo crontab -e + +# Agregar (renueva cada 2 meses, los certificados duran 3 meses): +0 0 1 */2 * certbot renew --quiet && cp /etc/letsencrypt/live/tu-dominio.com/fullchain.pem /opt/Pagina-de-Asistencia-MAC/docker/ssl/server.crt && cp /etc/letsencrypt/live/tu-dominio.com/privkey.pem /opt/Pagina-de-Asistencia-MAC/docker/ssl/server.key && docker-compose -f /opt/Pagina-de-Asistencia-MAC/docker-compose.yml restart nginx +``` + +### 5. Construir e Iniciar Contenedores + +```bash +# Construir imágenes +docker-compose build + +# Iniciar en segundo plano +docker-compose up -d + +# Ver logs +docker-compose logs -f +``` + +### 6. Verificar que Todo Funciona + +```bash +# Ver estado de contenedores +docker-compose ps + +# Verificar logs del backend +docker-compose logs backend | tail -50 + +# Verificar que la base de datos esté saludable +docker-compose exec db pg_isready -U mac_user -d mac_attendance +``` + +### 7. Verificar Usuarios Creados + +```bash +# Listar usuarios creados +docker-compose exec backend python manage.py shell -c "from django.contrib.auth.models import User; [print(f'{u.username} - Superuser: {u.is_superuser}') for u in User.objects.all()]" +``` + +Si los fixtures se cargaron correctamente, verás tu superusuario "Admin" y otros usuarios. + +### 8. Acceder al Sistema + +Abre tu navegador y ve a: +- **Aplicación:** https://132.248.80.77 (o https://tu-dominio.com) +- **Admin:** https://132.248.80.77/admin + +## 🔒 Seguridad Post-Despliegue + +### Cambiar Contraseñas + +**IMPORTANTE:** Si estás usando los fixtures con contraseñas de desarrollo, cámbialas: + +```bash +# Cambiar contraseña del superusuario +docker-compose exec backend python manage.py changepassword Admin + +# O crear un nuevo superusuario +docker-compose exec backend python manage.py createsuperuser +``` + +### Configurar Firewall + +```bash +# Permitir solo puertos necesarios +sudo ufw allow 22/tcp # SSH +sudo ufw allow 443/tcp # HTTPS +sudo ufw enable + +# Verificar +sudo ufw status +``` + +### Configurar Fail2Ban (Protección contra fuerza bruta) + +```bash +# Instalar fail2ban +sudo apt install fail2ban + +# Configurar (opcional, para proteger SSH y Django) +sudo systemctl enable fail2ban +sudo systemctl start fail2ban +``` + +## 📊 Backups en Producción + +### Backup Manual + +```bash +# Crear backup de la base de datos +docker-compose exec db pg_dump -U mac_user mac_attendance > backup_$(date +%Y%m%d_%H%M%S).sql + +# Guardar en un lugar seguro (S3, Google Drive, etc.) +``` + +### Backup Automático Diario + +```bash +# Crear script de backup +sudo nano /opt/backup_mac.sh +``` + +Contenido del script: +```bash +#!/bin/bash +BACKUP_DIR="/opt/backups" +DATE=$(date +%Y%m%d_%H%M%S) +mkdir -p $BACKUP_DIR + +docker-compose -f /opt/Pagina-de-Asistencia-MAC/docker-compose.yml exec -T db pg_dump -U mac_user mac_attendance > $BACKUP_DIR/backup_$DATE.sql + +# Mantener solo los últimos 30 días +find $BACKUP_DIR -name "backup_*.sql" -mtime +30 -delete + +echo "Backup completado: backup_$DATE.sql" +``` + +```bash +# Hacer ejecutable +sudo chmod +x /opt/backup_mac.sh + +# Agregar a crontab (diario a las 2 AM) +sudo crontab -e +# Agregar: +0 2 * * * /opt/backup_mac.sh +``` + +## 🔄 Actualizar el Sistema en Producción + +Cuando hay cambios en el código: + +```bash +# 1. Hacer backup +docker-compose exec db pg_dump -U mac_user mac_attendance > backup_pre_update.sql + +# 2. Detener servicios +docker-compose down + +# 3. Actualizar código +git pull origin main + +# 4. Reconstruir imágenes +docker-compose build + +# 5. Iniciar servicios +docker-compose up -d + +# 6. Verificar logs +docker-compose logs -f +``` + +## 📈 Monitoreo + +### Ver Logs en Tiempo Real + +```bash +# Todos los servicios +docker-compose logs -f + +# Solo backend +docker-compose logs -f backend + +# Solo nginx +docker-compose logs -f nginx + +# Solo BD +docker-compose logs -f db +``` + +### Estadísticas de Uso + +```bash +# Uso de recursos +docker stats + +# Espacio en disco +df -h +docker system df +``` + +## 🚨 Problemas Comunes + +### "502 Bad Gateway" +```bash +# Verificar que el backend esté corriendo +docker-compose ps backend + +# Ver logs del backend +docker-compose logs backend + +# Reiniciar backend +docker-compose restart backend +``` + +### "Base de datos no conecta" +```bash +# Verificar salud de la BD +docker-compose exec db pg_isready + +# Ver logs +docker-compose logs db + +# Verificar credenciales en .env.production +``` + +### "Certificado SSL inválido" +```bash +# Verificar que los archivos existen +ls -la docker/ssl/ + +# Verificar permisos +chmod 644 docker/ssl/server.crt +chmod 600 docker/ssl/server.key + +# Reiniciar nginx +docker-compose restart nginx +``` + +## 📞 Mantenimiento + +### Limpieza Regular + +```bash +# Limpiar imágenes no usadas (mensual) +docker system prune -a + +# Limpiar volúmenes huérfanos +docker volume prune +``` + +### Actualizar Dependencias + +```bash +# Actualizar imágenes base +docker-compose pull +docker-compose build --no-cache +docker-compose up -d +``` + +## 📝 Checklist Post-Despliegue + +- [ ] Sistema accesible via HTTPS +- [ ] Certificados SSL válidos +- [ ] Usuarios pueden iniciar sesión +- [ ] Contraseñas de desarrollo cambiadas +- [ ] Firewall configurado +- [ ] Backups automáticos configurados +- [ ] Monitoreo funcionando +- [ ] Logs revisados (sin errores críticos) +- [ ] Documentación actualizada +- [ ] Equipo notificado de la URL de producción + +--- + +## 🎯 Resumen: Comandos Rápidos para Producción + +```bash +# Iniciar +docker-compose up -d + +# Detener +docker-compose down + +# Reiniciar +docker-compose restart + +# Ver logs +docker-compose logs -f + +# Backup +docker-compose exec db pg_dump -U mac_user mac_attendance > backup.sql + +# Actualizar +git pull && docker-compose build && docker-compose up -d + +# Estado del sistema +docker-compose ps +docker stats +``` + +--- + +**¡El sistema está listo para producción cuando tengas acceso al servidor! 🚀** diff --git a/QUICK_START.md b/QUICK_START.md new file mode 100644 index 0000000..95c6035 --- /dev/null +++ b/QUICK_START.md @@ -0,0 +1,67 @@ +# Quick Start - Inicio Rápido ⚡ + +## Para Colaboradores (Ya tienes el repo clonado) + +```bash +# 1. Copiar variables de entorno +cp .env.development.example .env.development + +# 2. Iniciar Docker +docker-compose -f docker-compose.dev.yml up -d + +# 3. Abrir navegador +# http://localhost +``` + +**¡Listo!** El sistema ya tiene: +- ✅ Base de datos configurada +- ✅ Superusuario creado (usuario: `Admin`) +- ✅ Datos de ejemplo cargados +- ✅ Todo funcionando automáticamente + +## Primera vez clonando el proyecto + +```bash +# 1. Clonar +git clone https://github.com/val20-11/Pagina-de-Asistencia-MAC.git +cd Pagina-de-Asistencia-MAC + +# 2. Configurar +cp .env.development.example .env.development + +# 3. Iniciar +docker-compose -f docker-compose.dev.yml up -d +``` + +## Acceso Rápido + +- **App:** http://localhost +- **Admin:** http://localhost/admin +- **Usuario:** Admin (con la contraseña del superusuario original) + +## Comandos Útiles + +```bash +# Ver logs +docker-compose -f docker-compose.dev.yml logs -f + +# Reiniciar +docker-compose -f docker-compose.dev.yml restart + +# Detener +docker-compose -f docker-compose.dev.yml down + +# Resetear BD completa +docker-compose -f docker-compose.dev.yml down -v +docker-compose -f docker-compose.dev.yml up -d +``` + +## Más Información + +- **Colaboradores:** Ver [SETUP_COLABORADORES.md](SETUP_COLABORADORES.md) +- **Producción:** Ver [GUIA_PRODUCCION.md](GUIA_PRODUCCION.md) +- **Completo:** Ver [README.md](README.md) + +--- + +**Problema? Ejecuta:** `docker-compose -f docker-compose.dev.yml logs backend` diff --git a/README.md b/README.md index 15a9a57..6dddf4d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,16 @@ Sistema de gestión de asistencia para ponencias y eventos académicos de Matemáticas Aplicadas y Computación (MAC). +## ⚡ Inicio Rápido + +**¿Primera vez usando el proyecto?** Ver [QUICK_START.md](QUICK_START.md) - ¡En 3 comandos estarás listo! + +**¿Eres colaborador?** Ver [SETUP_COLABORADORES.md](SETUP_COLABORADORES.md) - Todo está precargado automáticamente + +**¿Quieres poner en producción?** Ver [GUIA_PRODUCCION.md](GUIA_PRODUCCION.md) - Guía completa de despliegue + +--- + ## 🚀 Características - **Gestión de Eventos**: Crear y administrar ponencias, talleres, seminarios diff --git a/RESPUESTAS_FAQ.md b/RESPUESTAS_FAQ.md new file mode 100644 index 0000000..821d57f --- /dev/null +++ b/RESPUESTAS_FAQ.md @@ -0,0 +1,308 @@ +# Preguntas Frecuentes - FAQ + +## ❓ ¿Ya está la página en producción? + +**Respuesta: NO, aún no está en producción.** + +### Estado Actual + +- ✅ **Proyecto configurado** para producción +- ✅ **Docker Compose** de producción listo +- ✅ **SSL/HTTPS** configurado (con certificados autofirmados) +- ✅ **Datos iniciales** preparados y listos para cargarse +- ❌ **NO desplegado** en un servidor público + +### Dónde Funciona Ahora + +- ✅ **Localmente** en tu máquina (http://localhost) +- ✅ **Desarrollo** con Docker (puerto 80) + +### Para Poner en Producción + +Ver [GUIA_PRODUCCION.md](GUIA_PRODUCCION.md) - Necesitas: + +1. Acceso al servidor (IP configurada: 132.248.80.77) +2. Configurar variables de entorno de producción +3. Certificados SSL válidos (o Let's Encrypt) +4. Ejecutar: `docker-compose up -d` + +--- + +## ❓ ¿Cuando alguien clone el repo, tendrá mi base de datos? + +**Respuesta: SÍ, automáticamente. ✅** + +### Cómo Funciona + +Cuando alguien clona el repositorio y ejecuta: + +```bash +git clone https://github.com/val20-11/Pagina-de-Asistencia-MAC.git +cd Pagina-de-Asistencia-MAC +cp .env.development.example .env.development +docker-compose -f docker-compose.dev.yml up -d +``` + +**Esto sucede automáticamente:** + +1. Docker inicia PostgreSQL (base de datos vacía) +2. Django ejecuta migraciones (crea tablas) +3. **`init_db.py` se ejecuta automáticamente** +4. El script detecta que la BD está vacía +5. Carga los fixtures desde `backend/fixtures/initial_data.json` +6. Los datos se importan a PostgreSQL +7. ¡El colaborador tiene exactamente tus mismos datos! + +### Qué Datos se Comparten + +El archivo `backend/fixtures/initial_data.json` contiene: + +- ✅ Tu usuario superusuario "Admin" +- ✅ Todos los usuarios asistentes que creaste +- ✅ Perfiles de usuario +- ✅ Eventos (si los exportaste) +- ✅ Asistencias registradas (si las exportaste) + +**IMPORTANTE:** Las contraseñas están hasheadas (seguras), NO están en texto plano. + +--- + +## ❓ ¿Pueden entrar con mi superusuario? + +**Respuesta: SÍ, pero solo si conocen la contraseña. ✅** + +### Seguridad de las Contraseñas + +Las contraseñas en los fixtures están **hasheadas** (encriptadas). Ejemplo: + +```json +{ + "username": "Admin", + "password": "pbkdf2_sha256$1000000$6z4YF8h...$XgRW+e3Bw..." +} +``` + +Esto NO es la contraseña real, es un hash. Nadie puede ver la contraseña original. + +### Cómo Funciona + +Cuando un colaborador clona el repo: + +1. ✅ Se crea el usuario "Admin" con el **mismo hash de contraseña** +2. ✅ Si el colaborador sabe tu contraseña original, puede entrar +3. ✅ Si NO sabe la contraseña, NO puede entrar + +### ¿Qué Hacer? + +#### Opción 1: Compartir la Contraseña (Equipo de Confianza) + +Si confías en tus colaboradores: +- Compárteles la contraseña del superusuario "Admin" +- Todos pueden administrar el sistema + +#### Opción 2: Que Cada Uno Cree su Superusuario + +Si NO quieres compartir tu contraseña: + +```bash +# Cada colaborador ejecuta: +docker-compose -f docker-compose.dev.yml exec backend python manage.py createsuperuser + +# Y crea su propio usuario admin +``` + +#### Opción 3: Cambiar la Contraseña en los Fixtures (Recomendado) + +Crea una contraseña genérica para desarrollo que todos conozcan: + +1. En tu máquina local: +```bash +docker-compose -f docker-compose.dev.yml exec backend python manage.py changepassword Admin +# Nueva contraseña: admin123 (por ejemplo) +``` + +2. Exportar los nuevos fixtures: +```bash +python export_fixtures.py +``` + +3. Subir a GitHub: +```bash +git add backend/fixtures/ +git commit -m "Actualizar contraseña de desarrollo" +git push origin main +``` + +4. Documentar en `SETUP_COLABORADORES.md`: + - Usuario: Admin + - Contraseña: admin123 + +**IMPORTANTE:** En producción, SIEMPRE cambia esta contraseña a una segura. + +--- + +## ❓ ¿Cómo actualizo los datos que comparto? + +**Respuesta: Con el script de exportación. ✅** + +### Proceso + +1. **Haz cambios** en tu base de datos local + - Crea usuarios + - Crea eventos + - Registra asistencias + - etc. + +2. **Exporta los cambios:** + ```bash + python export_fixtures.py + ``` + +3. **Sube a GitHub:** + ```bash + git add backend/fixtures/ + git commit -m "Actualizar datos iniciales" + git push origin main + ``` + +4. **Los colaboradores actualizan:** + ```bash + git pull origin main + docker-compose -f docker-compose.dev.yml down -v # Borra BD actual + docker-compose -f docker-compose.dev.yml up -d # Recarga fixtures + ``` + +--- + +## ❓ ¿Qué pasa si NO quiero compartir todos mis datos? + +**Respuesta: Puedes crear fixtures personalizados. ✅** + +### Opción 1: Exportar Solo Ciertos Modelos + +Modifica `export_fixtures.py` para exportar solo lo que quieras: + +```python +# Solo usuarios, sin eventos +cmd = [ + "docker", "exec", "pagina-de-asistencia-mac-backend-1", + "python", "manage.py", "dumpdata", + "--indent", "2", + "auth.user", # Solo esto + "authentication.userprofile" # Y esto + # NO exportar eventos ni asistencias +] +``` + +### Opción 2: Crear Fixtures Mínimos + +Crea fixtures básicos a mano con solo: +- 1 superusuario genérico +- 1-2 usuarios de ejemplo + +### Opción 3: Usar Variables de Entorno + +En producción, carga diferentes fixtures: + +```bash +# En .env.production +LOAD_INITIAL_FIXTURES=false + +# En init_db.py, verificar esta variable +``` + +--- + +## ❓ ¿Los fixtures se suben a GitHub? + +**Respuesta: SÍ, están configurados para subirse. ✅** + +### Qué se Sube + +- ✅ `backend/fixtures/*.json` - Datos iniciales (usuarios, eventos) +- ✅ `backend/fixtures/*.sql` - Backups SQL (si existen) + +### Qué NO se Sube + +- ❌ `.env` - Variables de entorno (contraseñas, claves) +- ❌ `backend/db.sqlite3` - Base de datos SQLite +- ❌ `backend/media/` - Archivos subidos +- ❌ `backend/logs/` - Logs + +Ver `.gitignore` para detalles. + +--- + +## ❓ ¿Qué pasa en producción con los fixtures? + +**Respuesta: Se cargan automáticamente si la BD está vacía. ✅** + +### Primera Vez en Producción + +```bash +# En el servidor de producción: +docker-compose up -d + +[Automáticamente]: +1. PostgreSQL inicia (vacío) +2. Django migra las tablas +3. init_db.py detecta BD vacía +4. Carga backend/fixtures/initial_data.json +5. ¡Sistema listo con tus datos! +``` + +### Actualizaciones en Producción + +Si la BD ya tiene datos, `init_db.py` NO los sobrescribe: + +```python +# En init_db.py: +if User.objects.count() > 0: + print("BD ya tiene usuarios, no se cargan fixtures") + return +``` + +Esto previene duplicados y pérdida de datos. + +--- + +## ❓ ¿Cómo funciona sin servidor de producción? + +**Respuesta: Funciona perfectamente en modo desarrollo. ✅** + +### Actualmente (Sin Servidor) + +- ✅ Funciona en tu máquina local +- ✅ Colaboradores lo usan en sus máquinas +- ✅ Cada uno tiene su propia base de datos PostgreSQL local +- ✅ Todos comparten los mismos datos iniciales (via fixtures) + +### Cuando Tengas Servidor + +- ✅ Mismo código, misma configuración +- ✅ Solo cambias de `docker-compose.dev.yml` a `docker-compose.yml` +- ✅ Configuras variables de producción en `.env.production` +- ✅ ¡Listo para producción! + +--- + +## ❓ Resumen de Respuestas Rápidas + +| Pregunta | Respuesta | +|----------|-----------| +| ¿Está en producción? | NO, solo local. Listo para desplegar cuando tengas servidor. | +| ¿Los colaboradores tienen mi BD? | SÍ, automáticamente via fixtures. | +| ¿Pueden usar mi superusuario? | SÍ, si conocen la contraseña (está hasheada). | +| ¿Los fixtures se suben a Git? | SÍ, configurado en .gitignore. | +| ¿Cómo actualizar datos? | `python export_fixtures.py` + git push | +| ¿Funciona sin servidor? | SÍ, perfecto en modo desarrollo. | +| ¿Listo para producción? | SÍ, cuando tengas acceso al servidor. | + +--- + +## 📞 Más Información + +- **Inicio Rápido:** [QUICK_START.md](QUICK_START.md) +- **Para Colaboradores:** [SETUP_COLABORADORES.md](SETUP_COLABORADORES.md) +- **Para Producción:** [GUIA_PRODUCCION.md](GUIA_PRODUCCION.md) +- **Resumen Técnico:** [RESUMEN_CONFIGURACION.md](RESUMEN_CONFIGURACION.md) diff --git a/RESUMEN_CONFIGURACION.md b/RESUMEN_CONFIGURACION.md new file mode 100644 index 0000000..460bf70 --- /dev/null +++ b/RESUMEN_CONFIGURACION.md @@ -0,0 +1,264 @@ +# Resumen de Configuración del Proyecto + +## ✅ Lo que Ya Está Configurado + +### 1. Sistema de Inicialización Automática + +**Archivo:** `backend/init_db.py` + +Este script se ejecuta automáticamente cada vez que inicias los contenedores y: +- ✅ Detecta si la base de datos está vacía +- ✅ Carga automáticamente los fixtures desde `backend/fixtures/` +- ✅ Crea usuarios, perfiles y datos de ejemplo +- ✅ No duplica datos si ya existen + +**Integración:** +- Configurado en `docker-compose.yml` (línea 25) +- Configurado en `docker-compose.dev.yml` (línea 29) + +### 2. Fixtures con Datos Iniciales + +**Archivo:** `backend/fixtures/initial_data.json` + +Contiene: +- ✅ Usuario superusuario "Admin" con todos los permisos +- ✅ Usuarios asistentes precreados +- ✅ Perfiles de usuario asociados +- ✅ Sesiones y datos de autenticación +- ✅ Contraseñas hasheadas (seguras) + +### 3. Script de Exportación + +**Archivo:** `export_fixtures.py` + +Permite exportar los datos actuales para compartir con colaboradores: + +```bash +python export_fixtures.py +``` + +Genera: +- `backend/fixtures/initial_users.json` +- `backend/fixtures/initial_events.json` + +### 4. Configuración de Git + +**Archivo:** `.gitignore` (actualizado) + +- ✅ Los fixtures se INCLUYEN en el repositorio +- ✅ Los archivos `.env` se EXCLUYEN (seguridad) +- ✅ Los backups SQL se PERMITEN en `backend/fixtures/` + +Esto significa que cuando alguien clone el repo, tendrá todos los datos automáticamente. + +## 📚 Documentación Creada + +### Para Colaboradores + +1. **QUICK_START.md** - Inicio en 3 comandos +2. **SETUP_COLABORADORES.md** - Guía completa de configuración + - Cómo clonar y configurar + - Usuarios precargados + - Comandos útiles + - Solución de problemas + - Cómo compartir datos + +### Para Producción + +3. **GUIA_PRODUCCION.md** - Guía completa de despliegue + - Preparación del servidor + - Configuración de SSL + - Variables de entorno de producción + - Backups automáticos + - Monitoreo y mantenimiento + +### Actualizado + +4. **README.md** - Actualizado con enlaces a las nuevas guías + +## 🔄 Flujo de Trabajo + +### Para un Colaborador Nuevo + +``` +1. git clone https://github.com/val20-11/Pagina-de-Asistencia-MAC.git +2. cd Pagina-de-Asistencia-MAC +3. cp .env.development.example .env.development +4. docker-compose -f docker-compose.dev.yml up -d + + [Docker ejecuta automáticamente]: + - Migraciones de Django + - init_db.py (carga fixtures) + - Collectstatic + - Runserver + +5. Abrir http://localhost + - Login con usuario "Admin" + - ¡Todo funciona! +``` + +### Para Compartir tus Datos + +``` +1. python export_fixtures.py +2. git add backend/fixtures/ +3. git commit -m "Actualizar fixtures" +4. git push origin main + + [Colaboradores]: +5. git pull origin main +6. docker-compose -f docker-compose.dev.yml down -v +7. docker-compose -f docker-compose.dev.yml up -d + - Se recargan los nuevos fixtures automáticamente +``` + +## 🚀 Para Producción (Cuando Tengas Acceso) + +### Estado Actual: PREPARADO ✅ + +El proyecto está 100% listo para desplegar en producción. Solo necesitas: + +1. **Acceso al servidor** (IP: 132.248.80.77) +2. **Configurar `.env.production`** con credenciales seguras +3. **Certificados SSL** (autofirmados o Let's Encrypt) +4. **Ejecutar:** `docker-compose up -d` + +### Qué Sucederá en Producción + +```bash +# En el servidor: +docker-compose up -d + +[Automáticamente]: +1. PostgreSQL inicia +2. Django ejecuta migraciones +3. init_db.py carga fixtures (usuarios, datos iniciales) +4. Collectstatic recopila archivos estáticos +5. Gunicorn inicia el servidor +6. Nginx sirve la aplicación en HTTPS + +¡Sistema en producción! 🎉 +``` + +## 🔐 Seguridad + +### Ya Configurado + +- ✅ Contraseñas en fixtures están hasheadas (seguras) +- ✅ Archivos `.env` NO se suben a Git +- ✅ Rate limiting configurado +- ✅ JWT para autenticación +- ✅ CORS configurado +- ✅ Sistema de auditoría activo + +### Para Producción (Cuando Despliegues) + +- ⚠️ CAMBIAR contraseñas de desarrollo +- ⚠️ Generar nueva SECRET_KEY +- ⚠️ Usar contraseña segura para BD +- ⚠️ Configurar certificados SSL válidos +- ⚠️ Configurar firewall (solo puertos 22, 443) + +## 📊 Archivos Clave + +``` +Pagina-de-Asistencia-MAC/ +├── 📄 QUICK_START.md ← Inicio rápido +├── 📄 SETUP_COLABORADORES.md ← Guía para colaboradores +├── 📄 GUIA_PRODUCCION.md ← Guía de producción +├── 📄 RESUMEN_CONFIGURACION.md ← Este archivo +├── 🐍 export_fixtures.py ← Script de exportación +├── 🐳 docker-compose.yml ← Producción +├── 🐳 docker-compose.dev.yml ← Desarrollo (modificado) +├── ⚙️ .gitignore ← Actualizado +├── backend/ +│ ├── 🐍 init_db.py ← Inicialización automática +│ └── fixtures/ +│ └── 📦 initial_data.json ← Datos iniciales (en Git) +└── README.md ← Actualizado +``` + +## ✨ Beneficios de Esta Configuración + +### Para Colaboradores + +- ✅ **Zero configuración manual** - Todo automático +- ✅ **Base de datos lista** - No necesitan crear usuarios +- ✅ **Mismo entorno para todos** - Fixtures compartidos +- ✅ **Fácil de actualizar** - `git pull` + `docker-compose up` + +### Para Ti (Administrador) + +- ✅ **Control total** - Decides qué datos compartir +- ✅ **Fácil de mantener** - Un script para exportar +- ✅ **Listo para producción** - Cuando tengas acceso +- ✅ **Documentación completa** - Para ti y tu equipo + +### Para Producción + +- ✅ **Mismo proceso** - Dev y prod usan el mismo flujo +- ✅ **Inicialización automática** - Fixtures se cargan solos +- ✅ **Seguro** - Variables de entorno separadas +- ✅ **Escalable** - Docker Compose listo para escalar + +## 🎯 Próximos Pasos + +### Ahora (Sin Servidor) + +1. ✅ Probar la configuración localmente +2. ✅ Compartir el repositorio con colaboradores +3. ✅ Verificar que todo funcione en sus máquinas +4. ✅ Desarrollar nuevas funcionalidades + +### Cuando Tengas Acceso al Servidor + +1. Seguir [GUIA_PRODUCCION.md](GUIA_PRODUCCION.md) +2. Configurar variables de entorno de producción +3. Configurar certificados SSL +4. Ejecutar `docker-compose up -d` +5. Cambiar contraseñas de producción +6. ¡Listo! + +## 📞 Comandos de Referencia Rápida + +```bash +# Desarrollo +docker-compose -f docker-compose.dev.yml up -d +docker-compose -f docker-compose.dev.yml logs -f +docker-compose -f docker-compose.dev.yml down + +# Exportar datos +python export_fixtures.py + +# Producción (cuando tengas servidor) +docker-compose up -d +docker-compose logs -f +docker-compose down + +# Backup de producción +docker-compose exec db pg_dump -U mac_user mac_attendance > backup.sql +``` + +--- + +## ✅ Checklist Final + +- [x] Script de inicialización automática creado +- [x] Fixtures con datos iniciales en Git +- [x] Script de exportación funcionando +- [x] .gitignore configurado correctamente +- [x] docker-compose.dev.yml actualizado +- [x] docker-compose.yml (producción) actualizado +- [x] Documentación para colaboradores +- [x] Documentación para producción +- [x] Quick Start creado +- [x] README actualizado con enlaces + +**Estado:** ✅ TODO LISTO + +--- + +**El proyecto está 100% preparado para:** +- ✅ Desarrollo en equipo +- ✅ Clonación por colaboradores (todo automático) +- ✅ Despliegue en producción (cuando tengas acceso) diff --git a/SETUP_COLABORADORES.md b/SETUP_COLABORADORES.md new file mode 100644 index 0000000..2765d95 --- /dev/null +++ b/SETUP_COLABORADORES.md @@ -0,0 +1,247 @@ +# Guía de Configuración para Colaboradores + +Esta guía te ayudará a configurar el proyecto en tu máquina local con todos los datos necesarios ya precargados. + +## 🚀 Inicio Rápido (5 minutos) + +### Prerrequisitos +- Docker y Docker Compose instalados +- Git instalado + +### Paso 1: Clonar el Repositorio + +```bash +git clone https://github.com/val20-11/Pagina-de-Asistencia-MAC.git +cd Pagina-de-Asistencia-MAC +``` + +### Paso 2: Configurar Variables de Entorno + +```bash +# Copiar el archivo de ejemplo +cp .env.development.example .env.development + +# (Opcional) Puedes editar .env.development si necesitas cambiar algo +# Por defecto viene configurado y listo para usar +``` + +### Paso 3: Iniciar el Proyecto + +```bash +# Iniciar todos los contenedores +docker-compose -f docker-compose.dev.yml up --build -d + +# Ver los logs (CTRL+C para salir) +docker-compose -f docker-compose.dev.yml logs -f +``` + +### Paso 4: Acceder al Sistema + +**¡Listo!** El sistema estará disponible en: + +- **Aplicación:** http://localhost +- **Panel Admin:** http://localhost/admin + +## 👤 Usuarios Precargados + +El sistema viene con usuarios ya creados que puedes usar inmediatamente: + +### Superusuario (Admin) +- **Usuario:** `Admin` +- **Contraseña:** (la contraseña del usuario Admin original) +- **Acceso:** Panel de administración completo + +### Asistentes +- **Usuario:** `asst_11111111` +- **Contraseña:** `11111111` (mismo que el número de cuenta) +- **Acceso:** Panel de asistentes + +*Nota: Todos los usuarios y datos están en `backend/fixtures/initial_data.json`* + +## 🔄 Cómo Funciona la Inicialización Automática + +Cuando inicias el proyecto por primera vez: + +1. **Docker Compose** ejecuta las migraciones de Django +2. **Script `init_db.py`** detecta si la base de datos está vacía +3. Si está vacía, carga automáticamente los **fixtures** desde `backend/fixtures/` +4. Los fixtures incluyen: + - Usuarios (superusuarios y asistentes) + - Perfiles de usuario + - Eventos (si existen) + - Asistencias (si existen) + +**No necesitas hacer nada manualmente** - todo se configura automáticamente. + +## 🔧 Comandos Útiles + +### Ver logs en tiempo real +```bash +docker-compose -f docker-compose.dev.yml logs -f +``` + +### Reiniciar contenedores +```bash +docker-compose -f docker-compose.dev.yml restart +``` + +### Detener el proyecto +```bash +docker-compose -f docker-compose.dev.yml down +``` + +### Resetear la base de datos completamente +```bash +# Esto elimina todos los datos y volúmenes +docker-compose -f docker-compose.dev.yml down -v + +# Luego volver a iniciar (se recargarán los fixtures automáticamente) +docker-compose -f docker-compose.dev.yml up -d +``` + +### Crear un nuevo superusuario (opcional) +```bash +docker-compose -f docker-compose.dev.yml exec backend python manage.py createsuperuser +``` + +### Acceder a la consola de Django +```bash +docker-compose -f docker-compose.dev.yml exec backend python manage.py shell +``` + +### Ejecutar tests +```bash +docker-compose -f docker-compose.dev.yml exec backend pytest +``` + +## 📊 Actualizar con Nuevos Datos + +Si el equipo comparte nuevos datos: + +### Opción 1: Actualizar desde Git (Recomendado) + +```bash +# Obtener los últimos cambios +git pull origin main + +# Reiniciar los contenedores para cargar los nuevos fixtures +docker-compose -f docker-compose.dev.yml down -v +docker-compose -f docker-compose.dev.yml up -d +``` + +### Opción 2: Cargar fixtures manualmente + +```bash +# Si solo quieres cargar fixtures específicos sin borrar todo +docker-compose -f docker-compose.dev.yml exec backend python manage.py loaddata backend/fixtures/initial_data.json +``` + +## 🎯 Compartir tus Cambios + +Si quieres que otros colaboradores tengan tus datos: + +### 1. Exportar los datos actuales + +Usa el script de exportación: + +```bash +# En Windows PowerShell +python export_fixtures.py + +# En Linux/Mac +python3 export_fixtures.py +``` + +Esto creará/actualizará archivos en `backend/fixtures/`: +- `initial_users.json` - Usuarios y perfiles +- `initial_events.json` - Eventos y asistencias (si existen) + +### 2. Subir a GitHub + +```bash +git add backend/fixtures/ +git commit -m "Actualizar fixtures con nuevos datos" +git push origin main +``` + +### 3. Notificar al equipo + +Avisa a tu equipo que ejecuten: +```bash +git pull origin main +docker-compose -f docker-compose.dev.yml down -v +docker-compose -f docker-compose.dev.yml up -d +``` + +## ❓ Problemas Comunes + +### "El contenedor backend no inicia" +```bash +# Ver logs del backend +docker-compose -f docker-compose.dev.yml logs backend + +# Reintentar con build limpio +docker-compose -f docker-compose.dev.yml up --build +``` + +### "No puedo acceder a http://localhost" +1. Verifica que los contenedores estén corriendo: + ```bash + docker-compose -f docker-compose.dev.yml ps + ``` +2. Verifica que el puerto 80 no esté ocupado +3. Prueba con `http://127.0.0.1` + +### "La base de datos no tiene datos" +```bash +# Verificar que los fixtures existan +ls -la backend/fixtures/ + +# Cargar manualmente si es necesario +docker-compose -f docker-compose.dev.yml exec backend python init_db.py +``` + +### "Error al cargar fixtures" +```bash +# Verificar que los archivos JSON sean válidos +cat backend/fixtures/initial_data.json | python -m json.tool + +# Ver logs detallados +docker-compose -f docker-compose.dev.yml exec backend python manage.py loaddata backend/fixtures/initial_data.json --verbosity 2 +``` + +## 📁 Estructura de Archivos Importantes + +``` +Pagina-de-Asistencia-MAC/ +├── .env.development # Variables de entorno (NO en Git) +├── .env.development.example # Plantilla de variables de entorno +├── docker-compose.dev.yml # Configuración Docker para desarrollo +├── export_fixtures.py # Script para exportar datos +├── backend/ +│ ├── init_db.py # Script de inicialización automática +│ └── fixtures/ # Datos iniciales (fixtures) +│ ├── initial_data.json # Usuarios y perfiles +│ └── initial_events.json # Eventos (si existen) +└── SETUP_COLABORADORES.md # Esta guía +``` + +## 🔐 Seguridad + +- **NO subas archivos `.env`** a GitHub (ya están en `.gitignore`) +- Los fixtures pueden contener **contraseñas hasheadas** (seguras) +- Si compartes fixtures, asegúrate de que no contengan **datos sensibles reales** +- En producción, siempre cambia las contraseñas por defecto + +## 📞 Soporte + +Si tienes problemas: + +1. Revisa esta guía +2. Verifica los logs: `docker-compose -f docker-compose.dev.yml logs` +3. Consulta el README principal del proyecto +4. Pregunta al equipo de desarrollo + +--- + +**¡Bienvenido al equipo de desarrollo! 🎉** diff --git a/backend/fixtures/initial_data.json b/backend/fixtures/initial_data.json new file mode 100644 index 0000000..22db21b --- /dev/null +++ b/backend/fixtures/initial_data.json @@ -0,0 +1,69723 @@ +[ +{ + "model": "auth.user", + "pk": 1, + "fields": { + "password": "pbkdf2_sha256$1000000$6z4YF8hANYWJEhYacCGQWX$XgRW+e3BwH64quYgt/e5Ff2Rr4d+BYJRewdpi+wi0e8=", + "last_login": "2025-10-21T03:19:04.792Z", + "is_superuser": true, + "username": "Admin", + "first_name": "", + "last_name": "", + "email": "uftdy20@gmail.com", + "is_staff": true, + "is_active": true, + "date_joined": "2025-10-21T03:18:24.470Z", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "auth.user", + "pk": 5, + "fields": { + "password": "pbkdf2_sha256$1000000$Z8l5IhX4CHEhuiwFam5BrL$7lbNorl6nf5aWs3dQWbnIrjrWa6jALim2Da4xUYcqRo=", + "last_login": null, + "is_superuser": false, + "username": "asst_11111111", + "first_name": "", + "last_name": "", + "email": "asst_11111111@mac.com", + "is_staff": false, + "is_active": true, + "date_joined": "2025-10-21T04:15:43.510Z", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "sessions.session", + "pk": "76gr34ghjgpxe01m6g28t10l1vskc39w", + "fields": { + "session_data": ".eJxVjEEOwiAQRe_C2hAYmEpduu8ZCDCDVA0kpV0Z765NutDtf-_9l_BhW4vfOi9-JnERWpx-txjSg-sO6B7qrcnU6rrMUe6KPGiXUyN-Xg_376CEXr51RARnIevxTFkjK-BMIaJhp4jzwGA0JJUILYxkzaAYEtlgGCE5heL9AeiuN_E:1vB2ts:sDyJdaTVjSVJ2JN_bKYWxJUhFE3vyNckjLUZm78uoCo", + "expire_date": "2025-11-04T03:19:04.822Z" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19081, + "fields": { + "user": null, + "account_number": "32332262", + "user_type": "student", + "full_name": "Garcia Jacinto Marlene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19082, + "fields": { + "user": null, + "account_number": "42401685", + "user_type": "student", + "full_name": "Hernandez Salsedo Mesias Elehin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19083, + "fields": { + "user": null, + "account_number": "32609638", + "user_type": "student", + "full_name": "Alvarez Soria Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19084, + "fields": { + "user": null, + "account_number": "31914892", + "user_type": "student", + "full_name": "Cortez Mendoza Noe Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19085, + "fields": { + "user": null, + "account_number": "41511988", + "user_type": "student", + "full_name": "Chavez Hernandez Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19086, + "fields": { + "user": null, + "account_number": "32213143", + "user_type": "student", + "full_name": "Davila Cayetano Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19087, + "fields": { + "user": null, + "account_number": "32333375", + "user_type": "student", + "full_name": "Madrid Garcia Josue Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19088, + "fields": { + "user": null, + "account_number": "42649062", + "user_type": "student", + "full_name": "Hurwitz Lucia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19089, + "fields": { + "user": null, + "account_number": "42624029", + "user_type": "student", + "full_name": "Romero Vera Oscar Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19090, + "fields": { + "user": null, + "account_number": "42610546", + "user_type": "student", + "full_name": "Vega Muñoz Angel Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19091, + "fields": { + "user": null, + "account_number": "42610543", + "user_type": "student", + "full_name": "Martinez Olvera Leonardo Jaret" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19092, + "fields": { + "user": null, + "account_number": "42610541", + "user_type": "student", + "full_name": "Gonzalez Garcia Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19093, + "fields": { + "user": null, + "account_number": "42610518", + "user_type": "student", + "full_name": "Estrada Diaz Kevin Orlando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19094, + "fields": { + "user": null, + "account_number": "42610486", + "user_type": "student", + "full_name": "Silva Chavez Lizeth Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19095, + "fields": { + "user": null, + "account_number": "42610483", + "user_type": "student", + "full_name": "Galicia Nava Juan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19096, + "fields": { + "user": null, + "account_number": "42610482", + "user_type": "student", + "full_name": "Carreño Del Angel Natalia Cristina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19097, + "fields": { + "user": null, + "account_number": "42610475", + "user_type": "student", + "full_name": "Hernandez De La Cruz Jose Gabino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19098, + "fields": { + "user": null, + "account_number": "42610466", + "user_type": "student", + "full_name": "Franco Oropeza Aurora Josselinne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19099, + "fields": { + "user": null, + "account_number": "42610435", + "user_type": "student", + "full_name": "Remigio Ramirez Marely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19100, + "fields": { + "user": null, + "account_number": "42610415", + "user_type": "student", + "full_name": "Bonilla Salcedo Alma Sophia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19101, + "fields": { + "user": null, + "account_number": "42610400", + "user_type": "student", + "full_name": "Duran Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19102, + "fields": { + "user": null, + "account_number": "42610396", + "user_type": "student", + "full_name": "Serrano Clemente Einar Evaristo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19103, + "fields": { + "user": null, + "account_number": "42610393", + "user_type": "student", + "full_name": "Villegas Alcantara Luis Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19104, + "fields": { + "user": null, + "account_number": "42610386", + "user_type": "student", + "full_name": "Trinidad Picazo Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19105, + "fields": { + "user": null, + "account_number": "42610384", + "user_type": "student", + "full_name": "Martinez Mendoza Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19106, + "fields": { + "user": null, + "account_number": "42610333", + "user_type": "student", + "full_name": "Alvarez Gutierrez Omar Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19107, + "fields": { + "user": null, + "account_number": "42610310", + "user_type": "student", + "full_name": "Cruz Perez Alexia Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19108, + "fields": { + "user": null, + "account_number": "42610299", + "user_type": "student", + "full_name": "Maya Flores Kuriel Osmar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19109, + "fields": { + "user": null, + "account_number": "42610294", + "user_type": "student", + "full_name": "Martinez Carmona Nicolas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19110, + "fields": { + "user": null, + "account_number": "42610282", + "user_type": "student", + "full_name": "Galindo Padilla Mauricio Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19111, + "fields": { + "user": null, + "account_number": "42610280", + "user_type": "student", + "full_name": "Martinez Garcia Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19112, + "fields": { + "user": null, + "account_number": "42610279", + "user_type": "student", + "full_name": "Castañeda Mota Eibar Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19113, + "fields": { + "user": null, + "account_number": "42610273", + "user_type": "student", + "full_name": "Mendez Morales Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19114, + "fields": { + "user": null, + "account_number": "42610271", + "user_type": "student", + "full_name": "Zavala Dominguez Carlos Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19115, + "fields": { + "user": null, + "account_number": "42610262", + "user_type": "student", + "full_name": "Pineda Peña Hugo Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19116, + "fields": { + "user": null, + "account_number": "42610258", + "user_type": "student", + "full_name": "Gonzalez Hernandez Eric Noel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19117, + "fields": { + "user": null, + "account_number": "42610254", + "user_type": "student", + "full_name": "Hernandez Ramirez Brayan Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19118, + "fields": { + "user": null, + "account_number": "42610253", + "user_type": "student", + "full_name": "Cabañas Garduño Jose Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19119, + "fields": { + "user": null, + "account_number": "42610235", + "user_type": "student", + "full_name": "Rosas Fregoso Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19120, + "fields": { + "user": null, + "account_number": "42610226", + "user_type": "student", + "full_name": "Ramirez Rosas Christian Jareb" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19121, + "fields": { + "user": null, + "account_number": "42610220", + "user_type": "student", + "full_name": "Rodriguez Lopez Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19122, + "fields": { + "user": null, + "account_number": "42610196", + "user_type": "student", + "full_name": "Hernandez Gutierrez Cynthia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19123, + "fields": { + "user": null, + "account_number": "42610190", + "user_type": "student", + "full_name": "Ibarra Garduño Gael Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19124, + "fields": { + "user": null, + "account_number": "42610184", + "user_type": "student", + "full_name": "Marquez Gutierrez Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19125, + "fields": { + "user": null, + "account_number": "42610178", + "user_type": "student", + "full_name": "Montaño Perez Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19126, + "fields": { + "user": null, + "account_number": "42610177", + "user_type": "student", + "full_name": "Verde Perea Gabriela Joselin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19127, + "fields": { + "user": null, + "account_number": "42610175", + "user_type": "student", + "full_name": "Roman Orosco Luis Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19128, + "fields": { + "user": null, + "account_number": "42610171", + "user_type": "student", + "full_name": "Arroyo Montes De Oca Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19129, + "fields": { + "user": null, + "account_number": "42610164", + "user_type": "student", + "full_name": "Bolaños Robles Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19130, + "fields": { + "user": null, + "account_number": "42610156", + "user_type": "student", + "full_name": "Barraza Castañeda Sean Patricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19131, + "fields": { + "user": null, + "account_number": "42610143", + "user_type": "student", + "full_name": "Alvarez Orozco Fatima Neftali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19132, + "fields": { + "user": null, + "account_number": "42610141", + "user_type": "student", + "full_name": "Martiñon Javier Dylan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19133, + "fields": { + "user": null, + "account_number": "42610119", + "user_type": "student", + "full_name": "Vega Rojas Daniel Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19134, + "fields": { + "user": null, + "account_number": "42610118", + "user_type": "student", + "full_name": "Mendoza Santiago Stephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19135, + "fields": { + "user": null, + "account_number": "42610093", + "user_type": "student", + "full_name": "Gomez Vasquez Perla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19136, + "fields": { + "user": null, + "account_number": "42610090", + "user_type": "student", + "full_name": "Vazquez Pelaez Cesar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19137, + "fields": { + "user": null, + "account_number": "42610064", + "user_type": "student", + "full_name": "Ramirez Flores Erick Elian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19138, + "fields": { + "user": null, + "account_number": "42610062", + "user_type": "student", + "full_name": "Medel Guevara Joel Gonzalo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19139, + "fields": { + "user": null, + "account_number": "42610045", + "user_type": "student", + "full_name": "Zamitiz Carmona Cristian Erasto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19140, + "fields": { + "user": null, + "account_number": "42610041", + "user_type": "student", + "full_name": "Carmona Juarez Javier Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19141, + "fields": { + "user": null, + "account_number": "42610037", + "user_type": "student", + "full_name": "Reyes Cornelio Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19142, + "fields": { + "user": null, + "account_number": "42610036", + "user_type": "student", + "full_name": "Paredes Martinez Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19143, + "fields": { + "user": null, + "account_number": "42610022", + "user_type": "student", + "full_name": "Romero Diaz Jesus Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19144, + "fields": { + "user": null, + "account_number": "42610013", + "user_type": "student", + "full_name": "Ramirez Hernandez Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19145, + "fields": { + "user": null, + "account_number": "42610012", + "user_type": "student", + "full_name": "Gomez Almeida Alexandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19146, + "fields": { + "user": null, + "account_number": "42610009", + "user_type": "student", + "full_name": "Rioja Arias Mauro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19147, + "fields": { + "user": null, + "account_number": "42610002", + "user_type": "student", + "full_name": "Flores Sanchez Juan Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19148, + "fields": { + "user": null, + "account_number": "42609996", + "user_type": "student", + "full_name": "Berrios Armendariz Aylin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19149, + "fields": { + "user": null, + "account_number": "42609985", + "user_type": "student", + "full_name": "Lopez Santiago Leslie Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19150, + "fields": { + "user": null, + "account_number": "42609917", + "user_type": "student", + "full_name": "Cedillo Gonzalez Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19151, + "fields": { + "user": null, + "account_number": "42609911", + "user_type": "student", + "full_name": "Rojas Bernal Kevin Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19152, + "fields": { + "user": null, + "account_number": "42609872", + "user_type": "student", + "full_name": "Bautista Monsreal Abraham Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19153, + "fields": { + "user": null, + "account_number": "42609850", + "user_type": "student", + "full_name": "Gomez Arce Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19154, + "fields": { + "user": null, + "account_number": "42609848", + "user_type": "student", + "full_name": "Sanchez Saavedra Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19155, + "fields": { + "user": null, + "account_number": "42609845", + "user_type": "student", + "full_name": "Rosas Vazquez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19156, + "fields": { + "user": null, + "account_number": "42609842", + "user_type": "student", + "full_name": "Medina Gomez Allan Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19157, + "fields": { + "user": null, + "account_number": "42609836", + "user_type": "student", + "full_name": "Molina Muñoz Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19158, + "fields": { + "user": null, + "account_number": "42609813", + "user_type": "student", + "full_name": "Hernandez Blancas Alexa Jadeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19159, + "fields": { + "user": null, + "account_number": "42609798", + "user_type": "student", + "full_name": "De Gaona Reyes Ana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19160, + "fields": { + "user": null, + "account_number": "42609794", + "user_type": "student", + "full_name": "Ibañez Rueda Alexis Jaciel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19161, + "fields": { + "user": null, + "account_number": "42609787", + "user_type": "student", + "full_name": "Avendaño Galicia Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19162, + "fields": { + "user": null, + "account_number": "42609780", + "user_type": "student", + "full_name": "Ayala Villanueva Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19163, + "fields": { + "user": null, + "account_number": "42609767", + "user_type": "student", + "full_name": "Herrera Montiel Sophia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19164, + "fields": { + "user": null, + "account_number": "42609751", + "user_type": "student", + "full_name": "Sanchez Gaña Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19165, + "fields": { + "user": null, + "account_number": "42609725", + "user_type": "student", + "full_name": "Rueda Granados Daniel Levi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19166, + "fields": { + "user": null, + "account_number": "42609706", + "user_type": "student", + "full_name": "De La Rosa Martinez Gerardo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19167, + "fields": { + "user": null, + "account_number": "42609699", + "user_type": "student", + "full_name": "Velazquez Ramirez Carlos Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19168, + "fields": { + "user": null, + "account_number": "42609680", + "user_type": "student", + "full_name": "Jimenez Ortega Brayan Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19169, + "fields": { + "user": null, + "account_number": "42609649", + "user_type": "student", + "full_name": "Ramirez Nava Estrella" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19170, + "fields": { + "user": null, + "account_number": "42609645", + "user_type": "student", + "full_name": "Cabrera Chimal Cristopher Bryan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19171, + "fields": { + "user": null, + "account_number": "42609638", + "user_type": "student", + "full_name": "Alvarez Soria Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19172, + "fields": { + "user": null, + "account_number": "42609632", + "user_type": "student", + "full_name": "Garcia Hernandez Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19173, + "fields": { + "user": null, + "account_number": "42609608", + "user_type": "student", + "full_name": "Navia Albarran Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19174, + "fields": { + "user": null, + "account_number": "42609580", + "user_type": "student", + "full_name": "Martinez Gonzalez Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19175, + "fields": { + "user": null, + "account_number": "42609579", + "user_type": "student", + "full_name": "Mendoza Guerrero Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19176, + "fields": { + "user": null, + "account_number": "42609558", + "user_type": "student", + "full_name": "Rodriguez Cipriano Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19177, + "fields": { + "user": null, + "account_number": "42609547", + "user_type": "student", + "full_name": "Huerta Chavez Erick Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19178, + "fields": { + "user": null, + "account_number": "42609544", + "user_type": "student", + "full_name": "Vergara Hernandez Sinuhe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19179, + "fields": { + "user": null, + "account_number": "42609542", + "user_type": "student", + "full_name": "Santiago Becerra Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19180, + "fields": { + "user": null, + "account_number": "42609511", + "user_type": "student", + "full_name": "Jimenez Pimentel Sergio Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19181, + "fields": { + "user": null, + "account_number": "42609506", + "user_type": "student", + "full_name": "Luna Alcantara Melina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19182, + "fields": { + "user": null, + "account_number": "42609500", + "user_type": "student", + "full_name": "Campos Ramirez Alvaro Wayne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19183, + "fields": { + "user": null, + "account_number": "42609495", + "user_type": "student", + "full_name": "Juarez Badillo Oscar Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19184, + "fields": { + "user": null, + "account_number": "42609494", + "user_type": "student", + "full_name": "Baca Cazares Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19185, + "fields": { + "user": null, + "account_number": "42609491", + "user_type": "student", + "full_name": "Jaimes Cruz Nahum Jeremias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19186, + "fields": { + "user": null, + "account_number": "42609475", + "user_type": "student", + "full_name": "Hernandez Gonzalez Emmanuel Jalil" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19187, + "fields": { + "user": null, + "account_number": "42609474", + "user_type": "student", + "full_name": "Barragan Pinacho Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19188, + "fields": { + "user": null, + "account_number": "42609471", + "user_type": "student", + "full_name": "Cadena Cardenas Jesron Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19189, + "fields": { + "user": null, + "account_number": "42609465", + "user_type": "student", + "full_name": "Ceron Hernandez Litzy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19190, + "fields": { + "user": null, + "account_number": "42609456", + "user_type": "student", + "full_name": "Moncada Cortes Jose Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19191, + "fields": { + "user": null, + "account_number": "42609452", + "user_type": "student", + "full_name": "Lopez Martinez Regina Adamaris" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19192, + "fields": { + "user": null, + "account_number": "42609451", + "user_type": "student", + "full_name": "Martinez Suarez Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19193, + "fields": { + "user": null, + "account_number": "42609450", + "user_type": "student", + "full_name": "Aguilar Flores Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19194, + "fields": { + "user": null, + "account_number": "42609417", + "user_type": "student", + "full_name": "Garcia Cordova Ernesto Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19195, + "fields": { + "user": null, + "account_number": "42609411", + "user_type": "student", + "full_name": "Garcia Resendis Itztli Kaban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19196, + "fields": { + "user": null, + "account_number": "42609405", + "user_type": "student", + "full_name": "Cruz Garcia Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19197, + "fields": { + "user": null, + "account_number": "42609399", + "user_type": "student", + "full_name": "Reyes Zayago Johana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19198, + "fields": { + "user": null, + "account_number": "42609398", + "user_type": "student", + "full_name": "Araiza Navarrete Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19199, + "fields": { + "user": null, + "account_number": "42609387", + "user_type": "student", + "full_name": "Rodriguez Espinoza Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19200, + "fields": { + "user": null, + "account_number": "42609376", + "user_type": "student", + "full_name": "Gamez Castillo Rodrigo Tadeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19201, + "fields": { + "user": null, + "account_number": "42609374", + "user_type": "student", + "full_name": "Cruz Saldivar Andrea Karime" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19202, + "fields": { + "user": null, + "account_number": "42609359", + "user_type": "student", + "full_name": "Espinosa Martinez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19203, + "fields": { + "user": null, + "account_number": "42609354", + "user_type": "student", + "full_name": "Alanis Andrade Yahir Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19204, + "fields": { + "user": null, + "account_number": "42609352", + "user_type": "student", + "full_name": "Martinez Marin Tala" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19205, + "fields": { + "user": null, + "account_number": "42609350", + "user_type": "student", + "full_name": "Altamirano Juarez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19206, + "fields": { + "user": null, + "account_number": "42609340", + "user_type": "student", + "full_name": "Moreno Madrigal Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19207, + "fields": { + "user": null, + "account_number": "42609331", + "user_type": "student", + "full_name": "Pineda Gonzalez Brenda Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19208, + "fields": { + "user": null, + "account_number": "42609328", + "user_type": "student", + "full_name": "Muñoz Alvarez Fernanda Alexia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19209, + "fields": { + "user": null, + "account_number": "42609326", + "user_type": "student", + "full_name": "Dominguez Reyes Jordana Samantha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19210, + "fields": { + "user": null, + "account_number": "42609322", + "user_type": "student", + "full_name": "Hernandez Garcia Emmanuel Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19211, + "fields": { + "user": null, + "account_number": "42609309", + "user_type": "student", + "full_name": "Mendoza Almaraz Oliver" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19212, + "fields": { + "user": null, + "account_number": "42609296", + "user_type": "student", + "full_name": "Garcia Gama Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19213, + "fields": { + "user": null, + "account_number": "42609282", + "user_type": "student", + "full_name": "Huesca Martinez Jose Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19214, + "fields": { + "user": null, + "account_number": "42609279", + "user_type": "student", + "full_name": "Tristan Barrios Jennifer Karin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19215, + "fields": { + "user": null, + "account_number": "42609252", + "user_type": "student", + "full_name": "Ortega Ramirez Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19216, + "fields": { + "user": null, + "account_number": "42609227", + "user_type": "student", + "full_name": "Martinez Cienfuegos Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19217, + "fields": { + "user": null, + "account_number": "42609206", + "user_type": "student", + "full_name": "Silva Araujo Maxim Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19218, + "fields": { + "user": null, + "account_number": "42609205", + "user_type": "student", + "full_name": "Picazo Chavez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19219, + "fields": { + "user": null, + "account_number": "42609188", + "user_type": "student", + "full_name": "Hernandez Martinez Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19220, + "fields": { + "user": null, + "account_number": "42609186", + "user_type": "student", + "full_name": "Cosio Martinez Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19221, + "fields": { + "user": null, + "account_number": "42609184", + "user_type": "student", + "full_name": "Monroy Sanchez Vala Marian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19222, + "fields": { + "user": null, + "account_number": "42609165", + "user_type": "student", + "full_name": "Hernandez Malpica Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19223, + "fields": { + "user": null, + "account_number": "42609151", + "user_type": "student", + "full_name": "Martinez Del Angel Nancy Estephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19224, + "fields": { + "user": null, + "account_number": "42609132", + "user_type": "student", + "full_name": "Agustin Osorio Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19225, + "fields": { + "user": null, + "account_number": "42609124", + "user_type": "student", + "full_name": "Roque De La O Sherlyn Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19226, + "fields": { + "user": null, + "account_number": "42609121", + "user_type": "student", + "full_name": "Peralta Tafoya Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19227, + "fields": { + "user": null, + "account_number": "42609108", + "user_type": "student", + "full_name": "Chavez Jimenez Luis Fhernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19228, + "fields": { + "user": null, + "account_number": "42609106", + "user_type": "student", + "full_name": "Damian Hernandez Fidel Vladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19229, + "fields": { + "user": null, + "account_number": "42609090", + "user_type": "student", + "full_name": "Mejia Ramirez Eduardo Abisai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19230, + "fields": { + "user": null, + "account_number": "42609078", + "user_type": "student", + "full_name": "Gonzalez Camacho Giovanni Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19231, + "fields": { + "user": null, + "account_number": "42609077", + "user_type": "student", + "full_name": "Cerna Jimenez Omar Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19232, + "fields": { + "user": null, + "account_number": "42609066", + "user_type": "student", + "full_name": "Lameiras Ugalde Karla Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19233, + "fields": { + "user": null, + "account_number": "42609032", + "user_type": "student", + "full_name": "Herrera Barragan Jc Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19234, + "fields": { + "user": null, + "account_number": "42609026", + "user_type": "student", + "full_name": "Robledo Cruz Josue Obed" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19235, + "fields": { + "user": null, + "account_number": "42609020", + "user_type": "student", + "full_name": "Limon Zamudio Andrea Yised" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19236, + "fields": { + "user": null, + "account_number": "42609019", + "user_type": "student", + "full_name": "Rivera Gutierrez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19237, + "fields": { + "user": null, + "account_number": "42609006", + "user_type": "student", + "full_name": "Garcia Diaz Rey Baltazar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19238, + "fields": { + "user": null, + "account_number": "42608989", + "user_type": "student", + "full_name": "Hernandez Tovar Evelyn Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19239, + "fields": { + "user": null, + "account_number": "42608970", + "user_type": "student", + "full_name": "Chavez Rodriguez Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19240, + "fields": { + "user": null, + "account_number": "42608963", + "user_type": "student", + "full_name": "Palma Pacheco Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19241, + "fields": { + "user": null, + "account_number": "42608954", + "user_type": "student", + "full_name": "Chaparro Ruiz Jesus Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19242, + "fields": { + "user": null, + "account_number": "42608941", + "user_type": "student", + "full_name": "Camargo Villamar Cristian Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19243, + "fields": { + "user": null, + "account_number": "42608932", + "user_type": "student", + "full_name": "Camargo Huertero Jesus Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19244, + "fields": { + "user": null, + "account_number": "42608930", + "user_type": "student", + "full_name": "Cruz Salas Oscar Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19245, + "fields": { + "user": null, + "account_number": "42608918", + "user_type": "student", + "full_name": "Regalado Ramirez Evan Elliot" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19246, + "fields": { + "user": null, + "account_number": "42608910", + "user_type": "student", + "full_name": "Hernandez Hernandez Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19247, + "fields": { + "user": null, + "account_number": "42608902", + "user_type": "student", + "full_name": "Fermin Caballero Diosmany Klark" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19248, + "fields": { + "user": null, + "account_number": "42608885", + "user_type": "student", + "full_name": "Baca Montiel Alberto Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19249, + "fields": { + "user": null, + "account_number": "42311114", + "user_type": "student", + "full_name": "Cabrera Amador Einar Jahaziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19250, + "fields": { + "user": null, + "account_number": "42212521", + "user_type": "student", + "full_name": "Davila Tejero Mauricio Eloy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19251, + "fields": { + "user": null, + "account_number": "42105322", + "user_type": "student", + "full_name": "Flores Marcelo Osmar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19252, + "fields": { + "user": null, + "account_number": "41005866", + "user_type": "student", + "full_name": "Del Razo Ochoa Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19253, + "fields": { + "user": null, + "account_number": "32367283", + "user_type": "student", + "full_name": "Garcia Cid Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19254, + "fields": { + "user": null, + "account_number": "32367265", + "user_type": "student", + "full_name": "Pineda Villafranca Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19255, + "fields": { + "user": null, + "account_number": "32366502", + "user_type": "student", + "full_name": "Aguayo Davila Ximena Elissa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19256, + "fields": { + "user": null, + "account_number": "32364925", + "user_type": "student", + "full_name": "Ladron De Guevara Lopez Maria Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19257, + "fields": { + "user": null, + "account_number": "32351341", + "user_type": "student", + "full_name": "Gudiño Castillo Karla Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19258, + "fields": { + "user": null, + "account_number": "32349086", + "user_type": "student", + "full_name": "Sierra Soto Carla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19259, + "fields": { + "user": null, + "account_number": "32333306", + "user_type": "student", + "full_name": "Flores Ocampo Jafid Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19260, + "fields": { + "user": null, + "account_number": "32333243", + "user_type": "student", + "full_name": "Galindo Victoria Alfredo Aldahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19261, + "fields": { + "user": null, + "account_number": "32332383", + "user_type": "student", + "full_name": "Vazquez Garcia Noha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19262, + "fields": { + "user": null, + "account_number": "32332053", + "user_type": "student", + "full_name": "Aguirre Flores Jessica Nahomy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19263, + "fields": { + "user": null, + "account_number": "32331905", + "user_type": "student", + "full_name": "Saldaña Victoria Julio Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19264, + "fields": { + "user": null, + "account_number": "32331868", + "user_type": "student", + "full_name": "Ortiz Tiozol Diego Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19265, + "fields": { + "user": null, + "account_number": "32331286", + "user_type": "student", + "full_name": "Gonzalez Carrasco Angel Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19266, + "fields": { + "user": null, + "account_number": "32331283", + "user_type": "student", + "full_name": "Flores Cruz Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19267, + "fields": { + "user": null, + "account_number": "32331177", + "user_type": "student", + "full_name": "Juarez Mandujano Haidan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19268, + "fields": { + "user": null, + "account_number": "32329933", + "user_type": "student", + "full_name": "Rendon Moreno Uxue Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19269, + "fields": { + "user": null, + "account_number": "32329893", + "user_type": "student", + "full_name": "Mendoza Maya Ernesto Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19270, + "fields": { + "user": null, + "account_number": "32329414", + "user_type": "student", + "full_name": "Castañeda Calderon Luis Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19271, + "fields": { + "user": null, + "account_number": "32329327", + "user_type": "student", + "full_name": "Gomez Vazquez Abbi Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19272, + "fields": { + "user": null, + "account_number": "32329044", + "user_type": "student", + "full_name": "De Aquino Cordero Carlos Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19273, + "fields": { + "user": null, + "account_number": "32327706", + "user_type": "student", + "full_name": "Espinosa Flores Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19274, + "fields": { + "user": null, + "account_number": "32327598", + "user_type": "student", + "full_name": "Mejia Valtierra Angel Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19275, + "fields": { + "user": null, + "account_number": "32327522", + "user_type": "student", + "full_name": "Garcia Perez Natalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19276, + "fields": { + "user": null, + "account_number": "32326922", + "user_type": "student", + "full_name": "Lopez Martinez Ingrid Dominique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19277, + "fields": { + "user": null, + "account_number": "32325815", + "user_type": "student", + "full_name": "Villalpando Tomas Itzel Fabiola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19278, + "fields": { + "user": null, + "account_number": "32325807", + "user_type": "student", + "full_name": "Montesinos Vaca Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19279, + "fields": { + "user": null, + "account_number": "32325380", + "user_type": "student", + "full_name": "Lopez Garcia Sara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19280, + "fields": { + "user": null, + "account_number": "32325130", + "user_type": "student", + "full_name": "Rangel Valdes Karla Janet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19281, + "fields": { + "user": null, + "account_number": "32325062", + "user_type": "student", + "full_name": "Rodriguez Tapia Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19282, + "fields": { + "user": null, + "account_number": "32324954", + "user_type": "student", + "full_name": "Melo Barrera Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19283, + "fields": { + "user": null, + "account_number": "32324953", + "user_type": "student", + "full_name": "Mora Sanchez Pablo Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19284, + "fields": { + "user": null, + "account_number": "32324633", + "user_type": "student", + "full_name": "Mejia Cantu Karen Samantha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19285, + "fields": { + "user": null, + "account_number": "32324237", + "user_type": "student", + "full_name": "Jijon Arenas Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19286, + "fields": { + "user": null, + "account_number": "32323696", + "user_type": "student", + "full_name": "Reyes Ramirez Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19287, + "fields": { + "user": null, + "account_number": "32322810", + "user_type": "student", + "full_name": "Rivera Vera Maria De La Luz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19288, + "fields": { + "user": null, + "account_number": "32322190", + "user_type": "student", + "full_name": "Garcia Rodriguez Jean Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19289, + "fields": { + "user": null, + "account_number": "32322183", + "user_type": "student", + "full_name": "Jaime Castro Santiago Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19290, + "fields": { + "user": null, + "account_number": "32321314", + "user_type": "student", + "full_name": "Martinez Perez Angel Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19291, + "fields": { + "user": null, + "account_number": "32321219", + "user_type": "student", + "full_name": "Vazquez Esquivias Melanie Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19292, + "fields": { + "user": null, + "account_number": "32321213", + "user_type": "student", + "full_name": "Salgado Jaimes Raul Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19293, + "fields": { + "user": null, + "account_number": "32321115", + "user_type": "student", + "full_name": "Hernandez Vergara Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19294, + "fields": { + "user": null, + "account_number": "32320957", + "user_type": "student", + "full_name": "Cornejo Mar Jesus Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19295, + "fields": { + "user": null, + "account_number": "32320786", + "user_type": "student", + "full_name": "Mujica Guerrero David Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19296, + "fields": { + "user": null, + "account_number": "32320772", + "user_type": "student", + "full_name": "Garcia Lopez Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19297, + "fields": { + "user": null, + "account_number": "32320587", + "user_type": "student", + "full_name": "Cobos Garcia Pablo Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19298, + "fields": { + "user": null, + "account_number": "32320329", + "user_type": "student", + "full_name": "Fragoso Camarin Yaretzi Dailin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19299, + "fields": { + "user": null, + "account_number": "32319537", + "user_type": "student", + "full_name": "Torres Mendoza Diego Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19300, + "fields": { + "user": null, + "account_number": "32319007", + "user_type": "student", + "full_name": "Vazquez Valdez Ashly Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19301, + "fields": { + "user": null, + "account_number": "32318633", + "user_type": "student", + "full_name": "Francisco Dominguez Christian Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19302, + "fields": { + "user": null, + "account_number": "32318518", + "user_type": "student", + "full_name": "Vieyra Barrera Kevin Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19303, + "fields": { + "user": null, + "account_number": "32317939", + "user_type": "student", + "full_name": "Martinez Arellano Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19304, + "fields": { + "user": null, + "account_number": "32317150", + "user_type": "student", + "full_name": "Soto Ramirez Alvaro Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19305, + "fields": { + "user": null, + "account_number": "32316638", + "user_type": "student", + "full_name": "Brindis Gamboa Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19306, + "fields": { + "user": null, + "account_number": "32316246", + "user_type": "student", + "full_name": "Plata Castillo Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19307, + "fields": { + "user": null, + "account_number": "32315992", + "user_type": "student", + "full_name": "Reynoso Ramos Diego Giovani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19308, + "fields": { + "user": null, + "account_number": "32315801", + "user_type": "student", + "full_name": "Gonzalez Jimenez Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19309, + "fields": { + "user": null, + "account_number": "32315287", + "user_type": "student", + "full_name": "Espinosa Razo Haniel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19310, + "fields": { + "user": null, + "account_number": "32315211", + "user_type": "student", + "full_name": "Paez Villafuerte Erick Gerson" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19311, + "fields": { + "user": null, + "account_number": "32314843", + "user_type": "student", + "full_name": "Calderon Miranda Oscar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19312, + "fields": { + "user": null, + "account_number": "32314829", + "user_type": "student", + "full_name": "Gaona Hernandez Hanna Paloma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19313, + "fields": { + "user": null, + "account_number": "32314149", + "user_type": "student", + "full_name": "Tahuilan Gonzalez Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19314, + "fields": { + "user": null, + "account_number": "32313941", + "user_type": "student", + "full_name": "Martinez Gonzalez Marco Paulo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19315, + "fields": { + "user": null, + "account_number": "32313879", + "user_type": "student", + "full_name": "Chavez Flores Jose Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19316, + "fields": { + "user": null, + "account_number": "32313720", + "user_type": "student", + "full_name": "Escobar Ruiz Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19317, + "fields": { + "user": null, + "account_number": "32313549", + "user_type": "student", + "full_name": "Resendiz Moreno Isaac Baruch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19318, + "fields": { + "user": null, + "account_number": "32313017", + "user_type": "student", + "full_name": "Villegas Gonzalez Maria Del Rosario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19319, + "fields": { + "user": null, + "account_number": "32312850", + "user_type": "student", + "full_name": "Bernal Morales Kathya Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19320, + "fields": { + "user": null, + "account_number": "32312570", + "user_type": "student", + "full_name": "Garcia Garcia Gabriel Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19321, + "fields": { + "user": null, + "account_number": "32312562", + "user_type": "student", + "full_name": "Reyes Pallares Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19322, + "fields": { + "user": null, + "account_number": "32312335", + "user_type": "student", + "full_name": "Juarez Reyes Horacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19323, + "fields": { + "user": null, + "account_number": "32311272", + "user_type": "student", + "full_name": "Colula Colula Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19324, + "fields": { + "user": null, + "account_number": "32310767", + "user_type": "student", + "full_name": "Jaramillo Diaz Brenda Naima" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19325, + "fields": { + "user": null, + "account_number": "32310586", + "user_type": "student", + "full_name": "Castellanos Mondragon Jeshua Andre" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19326, + "fields": { + "user": null, + "account_number": "32310432", + "user_type": "student", + "full_name": "Rodriguez Hernandez Erick Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19327, + "fields": { + "user": null, + "account_number": "32310050", + "user_type": "student", + "full_name": "Hernandez Ramos Bruno Matias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19328, + "fields": { + "user": null, + "account_number": "32309688", + "user_type": "student", + "full_name": "Angeles Quintero Karen Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19329, + "fields": { + "user": null, + "account_number": "32309682", + "user_type": "student", + "full_name": "Coria Zambrano Ana Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19330, + "fields": { + "user": null, + "account_number": "32309602", + "user_type": "student", + "full_name": "Fuentes Bastida Yael Koth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19331, + "fields": { + "user": null, + "account_number": "32309528", + "user_type": "student", + "full_name": "Martinez Herver Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19332, + "fields": { + "user": null, + "account_number": "32309325", + "user_type": "student", + "full_name": "Velazquez Mata Moises De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19333, + "fields": { + "user": null, + "account_number": "32309220", + "user_type": "student", + "full_name": "Dominguez Azua Diego Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19334, + "fields": { + "user": null, + "account_number": "32308996", + "user_type": "student", + "full_name": "Villeda Medrano Francisco Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19335, + "fields": { + "user": null, + "account_number": "32308370", + "user_type": "student", + "full_name": "Rodriguez Orozco Eli Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19336, + "fields": { + "user": null, + "account_number": "32307877", + "user_type": "student", + "full_name": "Coria Alfaro Abraham Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19337, + "fields": { + "user": null, + "account_number": "32307839", + "user_type": "student", + "full_name": "Castillo Cano Gabriel Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19338, + "fields": { + "user": null, + "account_number": "32307778", + "user_type": "student", + "full_name": "Guerrero Perez Tonatiuh" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19339, + "fields": { + "user": null, + "account_number": "32307690", + "user_type": "student", + "full_name": "Torres Flores Josue Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19340, + "fields": { + "user": null, + "account_number": "32307361", + "user_type": "student", + "full_name": "Canchola Martinez Carlos Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19341, + "fields": { + "user": null, + "account_number": "32307197", + "user_type": "student", + "full_name": "Contreras Aviles Jose Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19342, + "fields": { + "user": null, + "account_number": "32307018", + "user_type": "student", + "full_name": "Ramirez Guillen German Uziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19343, + "fields": { + "user": null, + "account_number": "32306225", + "user_type": "student", + "full_name": "Vasquez Olmedo Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19344, + "fields": { + "user": null, + "account_number": "32306021", + "user_type": "student", + "full_name": "Espejel Rebollar Areli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19345, + "fields": { + "user": null, + "account_number": "32305964", + "user_type": "student", + "full_name": "Guevara Gonzalez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19346, + "fields": { + "user": null, + "account_number": "32305607", + "user_type": "student", + "full_name": "Rivera Mireles Erick Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19347, + "fields": { + "user": null, + "account_number": "32305560", + "user_type": "student", + "full_name": "Enriquez Paulin Ian Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19348, + "fields": { + "user": null, + "account_number": "32305312", + "user_type": "student", + "full_name": "Torres Barriga Nestor Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19349, + "fields": { + "user": null, + "account_number": "32304567", + "user_type": "student", + "full_name": "Cruz Carrillo Victor Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19350, + "fields": { + "user": null, + "account_number": "32304315", + "user_type": "student", + "full_name": "Villafranco Reyes Alfredo Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19351, + "fields": { + "user": null, + "account_number": "32304307", + "user_type": "student", + "full_name": "Hernandez Aveitua Anibal Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19352, + "fields": { + "user": null, + "account_number": "32303817", + "user_type": "student", + "full_name": "Flores Cordero Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19353, + "fields": { + "user": null, + "account_number": "32303322", + "user_type": "student", + "full_name": "Lopez Turcio Cristofer Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19354, + "fields": { + "user": null, + "account_number": "32303320", + "user_type": "student", + "full_name": "Prudencio Martinez Antony" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19355, + "fields": { + "user": null, + "account_number": "32303307", + "user_type": "student", + "full_name": "Monroy Sanchez Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19356, + "fields": { + "user": null, + "account_number": "32302214", + "user_type": "student", + "full_name": "Lopez Sanchez Antonio De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19357, + "fields": { + "user": null, + "account_number": "32302088", + "user_type": "student", + "full_name": "De La Cruz Barcenas Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19358, + "fields": { + "user": null, + "account_number": "32301445", + "user_type": "student", + "full_name": "Soria Zapata Valentina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19359, + "fields": { + "user": null, + "account_number": "32300649", + "user_type": "student", + "full_name": "Marquez Granados Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19360, + "fields": { + "user": null, + "account_number": "32300004", + "user_type": "student", + "full_name": "Ramos Evangelista Rogelio Jaciel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19361, + "fields": { + "user": null, + "account_number": "32233317", + "user_type": "student", + "full_name": "Gutierrez Martinez Hansel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19362, + "fields": { + "user": null, + "account_number": "32233191", + "user_type": "student", + "full_name": "Sanchez Colin Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19363, + "fields": { + "user": null, + "account_number": "32231959", + "user_type": "student", + "full_name": "Baños Garcia Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19364, + "fields": { + "user": null, + "account_number": "32231621", + "user_type": "student", + "full_name": "Cruz Martinez Isaac Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19365, + "fields": { + "user": null, + "account_number": "32230657", + "user_type": "student", + "full_name": "Duran Blancas Luis David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19366, + "fields": { + "user": null, + "account_number": "32229540", + "user_type": "student", + "full_name": "Mercado Velasco Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19367, + "fields": { + "user": null, + "account_number": "32228687", + "user_type": "student", + "full_name": "Urrea Baltierra Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19368, + "fields": { + "user": null, + "account_number": "32227613", + "user_type": "student", + "full_name": "Moreno Guerrero Jose Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19369, + "fields": { + "user": null, + "account_number": "32226760", + "user_type": "student", + "full_name": "Lagunas Vega Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19370, + "fields": { + "user": null, + "account_number": "32226506", + "user_type": "student", + "full_name": "Guerrero Martinez Enrique Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19371, + "fields": { + "user": null, + "account_number": "32226286", + "user_type": "student", + "full_name": "Sanchez Pineda Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19372, + "fields": { + "user": null, + "account_number": "32225358", + "user_type": "student", + "full_name": "Resendiz Martinez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19373, + "fields": { + "user": null, + "account_number": "32225165", + "user_type": "student", + "full_name": "Don Juan Zaldivar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19374, + "fields": { + "user": null, + "account_number": "32224181", + "user_type": "student", + "full_name": "Rodriguez Sequeda Jose Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19375, + "fields": { + "user": null, + "account_number": "32223401", + "user_type": "student", + "full_name": "Martinez Gonzalez Enrique Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19376, + "fields": { + "user": null, + "account_number": "32222215", + "user_type": "student", + "full_name": "Lopez Peñaloza Angel Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19377, + "fields": { + "user": null, + "account_number": "32222069", + "user_type": "student", + "full_name": "Garcia Osorio Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19378, + "fields": { + "user": null, + "account_number": "32221956", + "user_type": "student", + "full_name": "Serra Garcia Cesar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19379, + "fields": { + "user": null, + "account_number": "32220744", + "user_type": "student", + "full_name": "Quiroz Garcia Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19380, + "fields": { + "user": null, + "account_number": "32218957", + "user_type": "student", + "full_name": "Enriquez Tinoco Sahara Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19381, + "fields": { + "user": null, + "account_number": "32218666", + "user_type": "student", + "full_name": "Morales Coutiño Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19382, + "fields": { + "user": null, + "account_number": "32217317", + "user_type": "student", + "full_name": "Urbano Plata Alan Adahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19383, + "fields": { + "user": null, + "account_number": "32217122", + "user_type": "student", + "full_name": "Nieves Antonio Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19384, + "fields": { + "user": null, + "account_number": "32216578", + "user_type": "student", + "full_name": "Cortes Carrillo Manuel Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19385, + "fields": { + "user": null, + "account_number": "32216384", + "user_type": "student", + "full_name": "Jimenez Colli Angel Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19386, + "fields": { + "user": null, + "account_number": "32215270", + "user_type": "student", + "full_name": "Rodriguez Jimenez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19387, + "fields": { + "user": null, + "account_number": "32214732", + "user_type": "student", + "full_name": "Gonzalez Negrete Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19388, + "fields": { + "user": null, + "account_number": "32212425", + "user_type": "student", + "full_name": "Saldivar Ramirez Santiago Tadeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19389, + "fields": { + "user": null, + "account_number": "32211727", + "user_type": "student", + "full_name": "Diaz Alpizar Fabrizio Iram" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19390, + "fields": { + "user": null, + "account_number": "32211173", + "user_type": "student", + "full_name": "Teapila Rojas Ian Alair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19391, + "fields": { + "user": null, + "account_number": "32210585", + "user_type": "student", + "full_name": "Vargas Sanchez Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19392, + "fields": { + "user": null, + "account_number": "32210570", + "user_type": "student", + "full_name": "De La Cruz Lopez Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19393, + "fields": { + "user": null, + "account_number": "32210395", + "user_type": "student", + "full_name": "Garcia Roman Gerson Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19394, + "fields": { + "user": null, + "account_number": "32208812", + "user_type": "student", + "full_name": "Carbajal Mendoza Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19395, + "fields": { + "user": null, + "account_number": "32208285", + "user_type": "student", + "full_name": "Hernandez Alabez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19396, + "fields": { + "user": null, + "account_number": "32207157", + "user_type": "student", + "full_name": "Ramirez Luna Yair Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19397, + "fields": { + "user": null, + "account_number": "32206603", + "user_type": "student", + "full_name": "Macias Espinosa Cesar Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19398, + "fields": { + "user": null, + "account_number": "32205712", + "user_type": "student", + "full_name": "Garduño Montoya Iker Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19399, + "fields": { + "user": null, + "account_number": "32205458", + "user_type": "student", + "full_name": "Nava Guzman Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19400, + "fields": { + "user": null, + "account_number": "32204378", + "user_type": "student", + "full_name": "Monter Gonzalez Mariana Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19401, + "fields": { + "user": null, + "account_number": "32203611", + "user_type": "student", + "full_name": "Garrido Ayala Viviana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19402, + "fields": { + "user": null, + "account_number": "32203405", + "user_type": "student", + "full_name": "Davila Perez Samir Uziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19403, + "fields": { + "user": null, + "account_number": "32201684", + "user_type": "student", + "full_name": "Palafox Mendoza Giselle Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19404, + "fields": { + "user": null, + "account_number": "32200951", + "user_type": "student", + "full_name": "Hernandez Montero Aaron Romeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19405, + "fields": { + "user": null, + "account_number": "32200745", + "user_type": "student", + "full_name": "Ramirez Ordoñez Jesus Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19406, + "fields": { + "user": null, + "account_number": "32200725", + "user_type": "student", + "full_name": "Cuevas Alvarez Gael Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19407, + "fields": { + "user": null, + "account_number": "32200524", + "user_type": "student", + "full_name": "Becerril Ordoñez Natalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19408, + "fields": { + "user": null, + "account_number": "32165980", + "user_type": "student", + "full_name": "Villar Romero Christian Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19409, + "fields": { + "user": null, + "account_number": "32132762", + "user_type": "student", + "full_name": "Mendieta Lopez Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19410, + "fields": { + "user": null, + "account_number": "32132447", + "user_type": "student", + "full_name": "Sanchez Angeles Victor Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19411, + "fields": { + "user": null, + "account_number": "32126259", + "user_type": "student", + "full_name": "Cardenas Martinez Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19412, + "fields": { + "user": null, + "account_number": "32125008", + "user_type": "student", + "full_name": "Ramirez Ramirez Yesica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19413, + "fields": { + "user": null, + "account_number": "32123854", + "user_type": "student", + "full_name": "Pantitlan Molina Raul Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19414, + "fields": { + "user": null, + "account_number": "32123049", + "user_type": "student", + "full_name": "Angeles Tenorio Dilan Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19415, + "fields": { + "user": null, + "account_number": "32120408", + "user_type": "student", + "full_name": "Primero Rodriguez Eduardo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19416, + "fields": { + "user": null, + "account_number": "32116578", + "user_type": "student", + "full_name": "Barrera Sanchez Alem Isaias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19417, + "fields": { + "user": null, + "account_number": "32115685", + "user_type": "student", + "full_name": "Reyes Garcia Evelyn Yesenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19418, + "fields": { + "user": null, + "account_number": "32115273", + "user_type": "student", + "full_name": "Rosillo Montijo Elias Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19419, + "fields": { + "user": null, + "account_number": "32113514", + "user_type": "student", + "full_name": "Martinez Mendieta Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19420, + "fields": { + "user": null, + "account_number": "32112949", + "user_type": "student", + "full_name": "Hernandez Martinez Isael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19421, + "fields": { + "user": null, + "account_number": "32111643", + "user_type": "student", + "full_name": "Vazquez Sanchez Mauricio Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19422, + "fields": { + "user": null, + "account_number": "32111633", + "user_type": "student", + "full_name": "Reyes Villa Cristian David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19423, + "fields": { + "user": null, + "account_number": "32111267", + "user_type": "student", + "full_name": "Gonzalez Tellez Leonardo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19424, + "fields": { + "user": null, + "account_number": "32110070", + "user_type": "student", + "full_name": "Cruz Pineda Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19425, + "fields": { + "user": null, + "account_number": "32107661", + "user_type": "student", + "full_name": "Perez Ramirez Eduardo Julian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19426, + "fields": { + "user": null, + "account_number": "32103339", + "user_type": "student", + "full_name": "Piña Gonzalez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19427, + "fields": { + "user": null, + "account_number": "32100837", + "user_type": "student", + "full_name": "Salazar Lara Cristian Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19428, + "fields": { + "user": null, + "account_number": "32029312", + "user_type": "student", + "full_name": "Flores Hernandez Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19429, + "fields": { + "user": null, + "account_number": "32024841", + "user_type": "student", + "full_name": "Segura Arciniega Aneris Tamara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19430, + "fields": { + "user": null, + "account_number": "32024443", + "user_type": "student", + "full_name": "Rosas Ventura Rodrigo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19431, + "fields": { + "user": null, + "account_number": "32018239", + "user_type": "student", + "full_name": "Veliz Nava Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19432, + "fields": { + "user": null, + "account_number": "32017922", + "user_type": "student", + "full_name": "Robles Castañeda Emiliano Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19433, + "fields": { + "user": null, + "account_number": "32011457", + "user_type": "student", + "full_name": "Castillo Sanchez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19434, + "fields": { + "user": null, + "account_number": "32006893", + "user_type": "student", + "full_name": "Aguilar Garcia Aldo Leopoldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19435, + "fields": { + "user": null, + "account_number": "32000944", + "user_type": "student", + "full_name": "Rios Arroyo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19436, + "fields": { + "user": null, + "account_number": "31922347", + "user_type": "student", + "full_name": "Garcia Martinez Michelle Yared" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19437, + "fields": { + "user": null, + "account_number": "31912004", + "user_type": "student", + "full_name": "Ancheyhta Miyasaka Akira Augusto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19438, + "fields": { + "user": null, + "account_number": "31833968", + "user_type": "student", + "full_name": "Martinez Corral Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19439, + "fields": { + "user": null, + "account_number": "31817559", + "user_type": "student", + "full_name": "Herrera Correa Andrea Rosario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19440, + "fields": { + "user": null, + "account_number": "31635185", + "user_type": "student", + "full_name": "Lopez Nava Edwing Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19441, + "fields": { + "user": null, + "account_number": "31620441", + "user_type": "student", + "full_name": "Madrigal Gonzalez Jesus Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19442, + "fields": { + "user": null, + "account_number": "31612094", + "user_type": "student", + "full_name": "Guarneros Rodriguez Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19443, + "fields": { + "user": null, + "account_number": "31501070", + "user_type": "student", + "full_name": "Fajardo Hernandez Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19444, + "fields": { + "user": null, + "account_number": "31419371", + "user_type": "student", + "full_name": "Rosas Lopez Rogelio Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19445, + "fields": { + "user": null, + "account_number": "31417672", + "user_type": "student", + "full_name": "Diaz Mondragon Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19446, + "fields": { + "user": null, + "account_number": "42513859", + "user_type": "student", + "full_name": "Posada Ramirez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19447, + "fields": { + "user": null, + "account_number": "42513840", + "user_type": "student", + "full_name": "Hernandez Gonzalez Nery Xiomara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19448, + "fields": { + "user": null, + "account_number": "42513796", + "user_type": "student", + "full_name": "Garcia Delgado Abner" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19449, + "fields": { + "user": null, + "account_number": "42513726", + "user_type": "student", + "full_name": "Buendia Cruz Dora Alexandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19450, + "fields": { + "user": null, + "account_number": "42513648", + "user_type": "student", + "full_name": "Garcia Martinez Rubi Denise" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19451, + "fields": { + "user": null, + "account_number": "42513602", + "user_type": "student", + "full_name": "Sanchez Maldonado Kevin Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19452, + "fields": { + "user": null, + "account_number": "42513515", + "user_type": "student", + "full_name": "Anaya Diaz Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19453, + "fields": { + "user": null, + "account_number": "42513493", + "user_type": "student", + "full_name": "Loaeza Garcia Leslie Adamari" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19454, + "fields": { + "user": null, + "account_number": "42513487", + "user_type": "student", + "full_name": "Gomez Zepeda Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19455, + "fields": { + "user": null, + "account_number": "42513485", + "user_type": "student", + "full_name": "Hernandez Martinez Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19456, + "fields": { + "user": null, + "account_number": "42513456", + "user_type": "student", + "full_name": "Cordova Rojas Kevin Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19457, + "fields": { + "user": null, + "account_number": "42513400", + "user_type": "student", + "full_name": "Almaraz Remigio Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19458, + "fields": { + "user": null, + "account_number": "42513303", + "user_type": "student", + "full_name": "Rangel Rodriguez Fernando Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19459, + "fields": { + "user": null, + "account_number": "42513258", + "user_type": "student", + "full_name": "Navarro Dominguez Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19460, + "fields": { + "user": null, + "account_number": "42513150", + "user_type": "student", + "full_name": "Espinosa Martinez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19461, + "fields": { + "user": null, + "account_number": "42513133", + "user_type": "student", + "full_name": "Salgado Baltierra Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19462, + "fields": { + "user": null, + "account_number": "42513000", + "user_type": "student", + "full_name": "Puebla Jimenez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19463, + "fields": { + "user": null, + "account_number": "42512915", + "user_type": "student", + "full_name": "Escalona Castillo Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19464, + "fields": { + "user": null, + "account_number": "42512914", + "user_type": "student", + "full_name": "Hurtado Solis Javier Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19465, + "fields": { + "user": null, + "account_number": "42512887", + "user_type": "student", + "full_name": "Miguel Jimenez Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19466, + "fields": { + "user": null, + "account_number": "42512684", + "user_type": "student", + "full_name": "Rosario Gutierrez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19467, + "fields": { + "user": null, + "account_number": "42512566", + "user_type": "student", + "full_name": "Jurado Munguia Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19468, + "fields": { + "user": null, + "account_number": "42512371", + "user_type": "student", + "full_name": "Carrillo Acevedo Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19469, + "fields": { + "user": null, + "account_number": "42512340", + "user_type": "student", + "full_name": "Viquez Hernandez Victor Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19470, + "fields": { + "user": null, + "account_number": "42512279", + "user_type": "student", + "full_name": "Rodriguez Anduiza David Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19471, + "fields": { + "user": null, + "account_number": "42512218", + "user_type": "student", + "full_name": "Mireles Villafranco Angel Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19472, + "fields": { + "user": null, + "account_number": "42512159", + "user_type": "student", + "full_name": "Marquez Bernabe Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19473, + "fields": { + "user": null, + "account_number": "42512000", + "user_type": "student", + "full_name": "Govea Escalona Ingemar Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19474, + "fields": { + "user": null, + "account_number": "42511956", + "user_type": "student", + "full_name": "Cerna Jimenez Alan Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19475, + "fields": { + "user": null, + "account_number": "42511768", + "user_type": "student", + "full_name": "Vargas Centeno Melina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19476, + "fields": { + "user": null, + "account_number": "42511713", + "user_type": "student", + "full_name": "Maya Mondragon Danyael Aleksai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19477, + "fields": { + "user": null, + "account_number": "42511639", + "user_type": "student", + "full_name": "Flores Real Isaac Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19478, + "fields": { + "user": null, + "account_number": "42511577", + "user_type": "student", + "full_name": "Segoviano Salinas Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19479, + "fields": { + "user": null, + "account_number": "42511554", + "user_type": "student", + "full_name": "Navarrete Basurto Baruch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19480, + "fields": { + "user": null, + "account_number": "42511475", + "user_type": "student", + "full_name": "Garnica Santos Orlando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19481, + "fields": { + "user": null, + "account_number": "42511444", + "user_type": "student", + "full_name": "Ramirez Torres Maria Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19482, + "fields": { + "user": null, + "account_number": "42511407", + "user_type": "student", + "full_name": "Alonso Garcia Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19483, + "fields": { + "user": null, + "account_number": "42511337", + "user_type": "student", + "full_name": "Alvarez Fonseca Ana Patricia Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19484, + "fields": { + "user": null, + "account_number": "42511274", + "user_type": "student", + "full_name": "Lopez Aguilar Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19485, + "fields": { + "user": null, + "account_number": "42511264", + "user_type": "student", + "full_name": "Molina Monroy Jose Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19486, + "fields": { + "user": null, + "account_number": "42511218", + "user_type": "student", + "full_name": "Ocaña Arcibar Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19487, + "fields": { + "user": null, + "account_number": "42510996", + "user_type": "student", + "full_name": "Eva Campos Diego Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19488, + "fields": { + "user": null, + "account_number": "42510994", + "user_type": "student", + "full_name": "Rodriguez Arriaga Justin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19489, + "fields": { + "user": null, + "account_number": "42510931", + "user_type": "student", + "full_name": "Orozco Lopez Jonatan Abdias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19490, + "fields": { + "user": null, + "account_number": "42510774", + "user_type": "student", + "full_name": "Contreras Morales Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19491, + "fields": { + "user": null, + "account_number": "42510624", + "user_type": "student", + "full_name": "Feliciano Martinez Estrella" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19492, + "fields": { + "user": null, + "account_number": "42510581", + "user_type": "student", + "full_name": "Guerrero Montes Nora Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19493, + "fields": { + "user": null, + "account_number": "42510571", + "user_type": "student", + "full_name": "Almaraz Ramirez Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19494, + "fields": { + "user": null, + "account_number": "42510495", + "user_type": "student", + "full_name": "Castillo Rosas Sonia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19495, + "fields": { + "user": null, + "account_number": "42510258", + "user_type": "student", + "full_name": "Jimenez Gonzalez Eduardo Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19496, + "fields": { + "user": null, + "account_number": "42510103", + "user_type": "student", + "full_name": "Duran Bernardino Alan Zaid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19497, + "fields": { + "user": null, + "account_number": "42510033", + "user_type": "student", + "full_name": "Romero Granillo Fernando Nicolas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19498, + "fields": { + "user": null, + "account_number": "42509995", + "user_type": "student", + "full_name": "Ocegueda Tellez Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19499, + "fields": { + "user": null, + "account_number": "42509980", + "user_type": "student", + "full_name": "Del Aguila Rivera Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19500, + "fields": { + "user": null, + "account_number": "42509926", + "user_type": "student", + "full_name": "Rodriguez Bautista Alexis Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19501, + "fields": { + "user": null, + "account_number": "42509865", + "user_type": "student", + "full_name": "De La Cruz Campillo Heriberto Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19502, + "fields": { + "user": null, + "account_number": "42509806", + "user_type": "student", + "full_name": "Cortes Cueto Karoll Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19503, + "fields": { + "user": null, + "account_number": "42509491", + "user_type": "student", + "full_name": "Cervantes Contreras Brandon Esau" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19504, + "fields": { + "user": null, + "account_number": "42509476", + "user_type": "student", + "full_name": "Larios Medrano Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19505, + "fields": { + "user": null, + "account_number": "42509400", + "user_type": "student", + "full_name": "Hernandez Netzahuatl Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19506, + "fields": { + "user": null, + "account_number": "42509388", + "user_type": "student", + "full_name": "Gonzalez Cruz Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19507, + "fields": { + "user": null, + "account_number": "42509372", + "user_type": "student", + "full_name": "Davila Cedillo Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19508, + "fields": { + "user": null, + "account_number": "42509314", + "user_type": "student", + "full_name": "Hernandez Martinez Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19509, + "fields": { + "user": null, + "account_number": "42509006", + "user_type": "student", + "full_name": "Lopez Ramos Ian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19510, + "fields": { + "user": null, + "account_number": "42508955", + "user_type": "student", + "full_name": "Dueñas Arteaga Carlos Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19511, + "fields": { + "user": null, + "account_number": "42508948", + "user_type": "student", + "full_name": "Martinez Villavicencio Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19512, + "fields": { + "user": null, + "account_number": "42508892", + "user_type": "student", + "full_name": "Martinez Jurado Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19513, + "fields": { + "user": null, + "account_number": "42508801", + "user_type": "student", + "full_name": "Barragan Santos Matt Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19514, + "fields": { + "user": null, + "account_number": "42508784", + "user_type": "student", + "full_name": "Alvarez Diaz Angel Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19515, + "fields": { + "user": null, + "account_number": "42508689", + "user_type": "student", + "full_name": "Cervantes Mojica Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19516, + "fields": { + "user": null, + "account_number": "42508643", + "user_type": "student", + "full_name": "Molina Molina Axel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19517, + "fields": { + "user": null, + "account_number": "42508627", + "user_type": "student", + "full_name": "Ramirez Hernandez Crystal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19518, + "fields": { + "user": null, + "account_number": "42508575", + "user_type": "student", + "full_name": "Alejos Torres Elisa Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19519, + "fields": { + "user": null, + "account_number": "42508528", + "user_type": "student", + "full_name": "Garcia Madrigal Jose Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19520, + "fields": { + "user": null, + "account_number": "42508519", + "user_type": "student", + "full_name": "Saucedo Nancy Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19521, + "fields": { + "user": null, + "account_number": "42508288", + "user_type": "student", + "full_name": "Casas Cedillo Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19522, + "fields": { + "user": null, + "account_number": "42508105", + "user_type": "student", + "full_name": "Rivero Suarez Jorge Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19523, + "fields": { + "user": null, + "account_number": "42507960", + "user_type": "student", + "full_name": "Sosa Chavez Jaziel Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19524, + "fields": { + "user": null, + "account_number": "42507921", + "user_type": "student", + "full_name": "Gonzalez Miranda Isai Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19525, + "fields": { + "user": null, + "account_number": "42507726", + "user_type": "student", + "full_name": "Martinez Gonzalez Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19526, + "fields": { + "user": null, + "account_number": "42507687", + "user_type": "student", + "full_name": "Nieto Nava David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19527, + "fields": { + "user": null, + "account_number": "42507619", + "user_type": "student", + "full_name": "Padilla Martinez Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19528, + "fields": { + "user": null, + "account_number": "42507605", + "user_type": "student", + "full_name": "Torres Ramirez Isis Thaily" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19529, + "fields": { + "user": null, + "account_number": "42507589", + "user_type": "student", + "full_name": "Lazo Ibañez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19530, + "fields": { + "user": null, + "account_number": "42507575", + "user_type": "student", + "full_name": "Prieto Jimenez Fidel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19531, + "fields": { + "user": null, + "account_number": "42507521", + "user_type": "student", + "full_name": "Aranda Perez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19532, + "fields": { + "user": null, + "account_number": "42507466", + "user_type": "student", + "full_name": "Santillan Lopez Alan Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19533, + "fields": { + "user": null, + "account_number": "42507367", + "user_type": "student", + "full_name": "Pazos Juarez Francisco Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19534, + "fields": { + "user": null, + "account_number": "42507327", + "user_type": "student", + "full_name": "Peralta Carlos Fernando Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19535, + "fields": { + "user": null, + "account_number": "42507196", + "user_type": "student", + "full_name": "Garcia Lopez Dagoberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19536, + "fields": { + "user": null, + "account_number": "42507171", + "user_type": "student", + "full_name": "Almaraz Zerecero Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19537, + "fields": { + "user": null, + "account_number": "42506981", + "user_type": "student", + "full_name": "Arroyo Juarez Joseph Dylan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19538, + "fields": { + "user": null, + "account_number": "42506951", + "user_type": "student", + "full_name": "Lopez Lopez Noe Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19539, + "fields": { + "user": null, + "account_number": "42506715", + "user_type": "student", + "full_name": "Davalos Contreras Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19540, + "fields": { + "user": null, + "account_number": "42506508", + "user_type": "student", + "full_name": "Alvarez Sanchez Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19541, + "fields": { + "user": null, + "account_number": "42506473", + "user_type": "student", + "full_name": "Morales Gonzalez Jesus Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19542, + "fields": { + "user": null, + "account_number": "42506398", + "user_type": "student", + "full_name": "Ortiz Sanchez Joselyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19543, + "fields": { + "user": null, + "account_number": "42506373", + "user_type": "student", + "full_name": "Ramos Salazar Diaz Marco Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19544, + "fields": { + "user": null, + "account_number": "42506343", + "user_type": "student", + "full_name": "Ramirez Torres Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19545, + "fields": { + "user": null, + "account_number": "42506330", + "user_type": "student", + "full_name": "Ramos Renteria Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19546, + "fields": { + "user": null, + "account_number": "42506147", + "user_type": "student", + "full_name": "Garcia Jasso Andrea Quetzalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19547, + "fields": { + "user": null, + "account_number": "42506114", + "user_type": "student", + "full_name": "Dominguez Ornelas Alan Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19548, + "fields": { + "user": null, + "account_number": "42505923", + "user_type": "student", + "full_name": "Ortiz Espinosa Gael Abdiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19549, + "fields": { + "user": null, + "account_number": "42505873", + "user_type": "student", + "full_name": "Garcia Gutierrez Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19550, + "fields": { + "user": null, + "account_number": "42505857", + "user_type": "student", + "full_name": "Guzman Ramos Carlos Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19551, + "fields": { + "user": null, + "account_number": "42505856", + "user_type": "student", + "full_name": "Lopez Martinez Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19552, + "fields": { + "user": null, + "account_number": "42505756", + "user_type": "student", + "full_name": "De La Paz Ruiz Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19553, + "fields": { + "user": null, + "account_number": "42505709", + "user_type": "student", + "full_name": "Placido Cañas Angel Jhoel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19554, + "fields": { + "user": null, + "account_number": "42505686", + "user_type": "student", + "full_name": "Estrada Salazar Jordi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19555, + "fields": { + "user": null, + "account_number": "42505609", + "user_type": "student", + "full_name": "Sandoval Dominguez Angel Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19556, + "fields": { + "user": null, + "account_number": "42505551", + "user_type": "student", + "full_name": "Granados Osorio Isidoro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19557, + "fields": { + "user": null, + "account_number": "42505469", + "user_type": "student", + "full_name": "Zuñiga Escobar Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19558, + "fields": { + "user": null, + "account_number": "42505333", + "user_type": "student", + "full_name": "Luna Martinez Escobar Marcela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19559, + "fields": { + "user": null, + "account_number": "42505297", + "user_type": "student", + "full_name": "Rodriguez Zavala Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19560, + "fields": { + "user": null, + "account_number": "42505206", + "user_type": "student", + "full_name": "Hernandez Valencia Daira Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19561, + "fields": { + "user": null, + "account_number": "42505153", + "user_type": "student", + "full_name": "Gonzalez Molina Kevin Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19562, + "fields": { + "user": null, + "account_number": "42505045", + "user_type": "student", + "full_name": "Pablo Hernandez Francisco Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19563, + "fields": { + "user": null, + "account_number": "42505029", + "user_type": "student", + "full_name": "Mora Arias Ysumi Joseph" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19564, + "fields": { + "user": null, + "account_number": "42504896", + "user_type": "student", + "full_name": "Martinez Dominguez Edy Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19565, + "fields": { + "user": null, + "account_number": "42504830", + "user_type": "student", + "full_name": "Hernandez Gonzalez Mario Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19566, + "fields": { + "user": null, + "account_number": "42504785", + "user_type": "student", + "full_name": "Gutierrez Martinez Alfonso Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19567, + "fields": { + "user": null, + "account_number": "42504773", + "user_type": "student", + "full_name": "Sanchez Moreno Crisyan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19568, + "fields": { + "user": null, + "account_number": "42504728", + "user_type": "student", + "full_name": "Arriaga Baron Diego Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19569, + "fields": { + "user": null, + "account_number": "42504399", + "user_type": "student", + "full_name": "Aguayo Castellanos Joshua Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19570, + "fields": { + "user": null, + "account_number": "42504232", + "user_type": "student", + "full_name": "Gonzalez Cuellar Alfredo Mijail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19571, + "fields": { + "user": null, + "account_number": "42504191", + "user_type": "student", + "full_name": "Apipilhuasco Cruz Yenedy Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19572, + "fields": { + "user": null, + "account_number": "42504036", + "user_type": "student", + "full_name": "Torres Miranda Diego De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19573, + "fields": { + "user": null, + "account_number": "42504018", + "user_type": "student", + "full_name": "Flores Vidal Alan Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19574, + "fields": { + "user": null, + "account_number": "42504003", + "user_type": "student", + "full_name": "Martin Mercado Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19575, + "fields": { + "user": null, + "account_number": "42503990", + "user_type": "student", + "full_name": "Velazquez Martinez Jesus Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19576, + "fields": { + "user": null, + "account_number": "42503909", + "user_type": "student", + "full_name": "Rivera Xolo Jose Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19577, + "fields": { + "user": null, + "account_number": "42503884", + "user_type": "student", + "full_name": "Rodriguez Falcon Luis Matias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19578, + "fields": { + "user": null, + "account_number": "42503718", + "user_type": "student", + "full_name": "Jaime Ceron Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19579, + "fields": { + "user": null, + "account_number": "42503475", + "user_type": "student", + "full_name": "Ramirez Garcia Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19580, + "fields": { + "user": null, + "account_number": "42503436", + "user_type": "student", + "full_name": "Bernal Morales Angel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19581, + "fields": { + "user": null, + "account_number": "42503416", + "user_type": "student", + "full_name": "Garcia Velazquez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19582, + "fields": { + "user": null, + "account_number": "42503413", + "user_type": "student", + "full_name": "Cortes Rivera Jesus Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19583, + "fields": { + "user": null, + "account_number": "42503310", + "user_type": "student", + "full_name": "Morales Rosas Carlos Augusto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19584, + "fields": { + "user": null, + "account_number": "42503237", + "user_type": "student", + "full_name": "Santos Arroyo Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19585, + "fields": { + "user": null, + "account_number": "42503207", + "user_type": "student", + "full_name": "Moya Hernandez Hansel Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19586, + "fields": { + "user": null, + "account_number": "42503128", + "user_type": "student", + "full_name": "Juarez Olvera Juan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19587, + "fields": { + "user": null, + "account_number": "42503089", + "user_type": "student", + "full_name": "Avila Barcenas Fernando Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19588, + "fields": { + "user": null, + "account_number": "42502911", + "user_type": "student", + "full_name": "Resendiz Martinez Luz Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19589, + "fields": { + "user": null, + "account_number": "42502878", + "user_type": "student", + "full_name": "Vazquez Mendez Cesar Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19590, + "fields": { + "user": null, + "account_number": "42502745", + "user_type": "student", + "full_name": "Rodriguez Lopez Alan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19591, + "fields": { + "user": null, + "account_number": "42502729", + "user_type": "student", + "full_name": "Elias Miranda Edith Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19592, + "fields": { + "user": null, + "account_number": "42502703", + "user_type": "student", + "full_name": "Rodriguez Choreño Alisson Camila" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19593, + "fields": { + "user": null, + "account_number": "42502476", + "user_type": "student", + "full_name": "Grajeda Hernandez Edgar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19594, + "fields": { + "user": null, + "account_number": "42502426", + "user_type": "student", + "full_name": "Pacheco Delgado Angel Haziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19595, + "fields": { + "user": null, + "account_number": "42502372", + "user_type": "student", + "full_name": "Aramburo Chang Jesus Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19596, + "fields": { + "user": null, + "account_number": "42502207", + "user_type": "student", + "full_name": "Aldama Hernandez Alan Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19597, + "fields": { + "user": null, + "account_number": "42502154", + "user_type": "student", + "full_name": "Chona Dominguez Yuliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19598, + "fields": { + "user": null, + "account_number": "42502124", + "user_type": "student", + "full_name": "Saavedra Martinez Joel Abdi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19599, + "fields": { + "user": null, + "account_number": "42501774", + "user_type": "student", + "full_name": "Tinoco Covarrubias Ruben Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19600, + "fields": { + "user": null, + "account_number": "42501751", + "user_type": "student", + "full_name": "Balderrama Perez Dilan Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19601, + "fields": { + "user": null, + "account_number": "42501727", + "user_type": "student", + "full_name": "Rangel Gonzalez Aime Jimena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19602, + "fields": { + "user": null, + "account_number": "42501671", + "user_type": "student", + "full_name": "Torres Vazquez Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19603, + "fields": { + "user": null, + "account_number": "42501619", + "user_type": "student", + "full_name": "Lopez Hernandez Rommel Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19604, + "fields": { + "user": null, + "account_number": "42501577", + "user_type": "student", + "full_name": "De La Cruz Serrano Annette Xochiquetzal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19605, + "fields": { + "user": null, + "account_number": "42501509", + "user_type": "student", + "full_name": "Cruz Perez Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19606, + "fields": { + "user": null, + "account_number": "42501500", + "user_type": "student", + "full_name": "Rojas Mondragon Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19607, + "fields": { + "user": null, + "account_number": "42501395", + "user_type": "student", + "full_name": "Bermejo Garcia Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19608, + "fields": { + "user": null, + "account_number": "42501216", + "user_type": "student", + "full_name": "Cruz Villarreal Geovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19609, + "fields": { + "user": null, + "account_number": "42501045", + "user_type": "student", + "full_name": "Martinez Orduña Carlos Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19610, + "fields": { + "user": null, + "account_number": "42501022", + "user_type": "student", + "full_name": "Martinez Gonzalez Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19611, + "fields": { + "user": null, + "account_number": "42500964", + "user_type": "student", + "full_name": "Perez Perez Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19612, + "fields": { + "user": null, + "account_number": "42500791", + "user_type": "student", + "full_name": "Trejo Mandujano Diego Ezequiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19613, + "fields": { + "user": null, + "account_number": "42500672", + "user_type": "student", + "full_name": "Resendiz Flores Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19614, + "fields": { + "user": null, + "account_number": "42500612", + "user_type": "student", + "full_name": "Sanchez Pantoja Agustin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19615, + "fields": { + "user": null, + "account_number": "42500578", + "user_type": "student", + "full_name": "Pedraza Torres Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19616, + "fields": { + "user": null, + "account_number": "42500513", + "user_type": "student", + "full_name": "Lopez Suarez Irvin Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19617, + "fields": { + "user": null, + "account_number": "42500509", + "user_type": "student", + "full_name": "Fabris Verduzco Maria De Lourdes" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19618, + "fields": { + "user": null, + "account_number": "42500221", + "user_type": "student", + "full_name": "Rosas Palomo Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19619, + "fields": { + "user": null, + "account_number": "42500175", + "user_type": "student", + "full_name": "Gonzalez Marin Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19620, + "fields": { + "user": null, + "account_number": "42500037", + "user_type": "student", + "full_name": "Martinez Rubio Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19621, + "fields": { + "user": null, + "account_number": "42413389", + "user_type": "student", + "full_name": "Vargas Cordero Gabino Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19622, + "fields": { + "user": null, + "account_number": "42413104", + "user_type": "student", + "full_name": "Leon Maya Armando Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19623, + "fields": { + "user": null, + "account_number": "42211664", + "user_type": "student", + "full_name": "Garcia Hernandez Tania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19624, + "fields": { + "user": null, + "account_number": "42203115", + "user_type": "student", + "full_name": "Valdez Garcia Axel Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19625, + "fields": { + "user": null, + "account_number": "42200398", + "user_type": "student", + "full_name": "Gonzalez Beltran Brandon Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19626, + "fields": { + "user": null, + "account_number": "42112493", + "user_type": "student", + "full_name": "Barcenas Moreno Reyna Brenda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19627, + "fields": { + "user": null, + "account_number": "32264336", + "user_type": "student", + "full_name": "Molina Zavala Ian Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19628, + "fields": { + "user": null, + "account_number": "32264024", + "user_type": "student", + "full_name": "Servin Rivera Derek" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19629, + "fields": { + "user": null, + "account_number": "32260746", + "user_type": "student", + "full_name": "Ontiveros Martinez Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19630, + "fields": { + "user": null, + "account_number": "32254985", + "user_type": "student", + "full_name": "Galindo Altamira Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19631, + "fields": { + "user": null, + "account_number": "32250518", + "user_type": "student", + "full_name": "Diaz Gomez Yael Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19632, + "fields": { + "user": null, + "account_number": "32231279", + "user_type": "student", + "full_name": "Carranco Ramirez German Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19633, + "fields": { + "user": null, + "account_number": "32231262", + "user_type": "student", + "full_name": "Cornejo Alvarez Zahid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19634, + "fields": { + "user": null, + "account_number": "32230209", + "user_type": "student", + "full_name": "Uscanga Hubert Lashmi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19635, + "fields": { + "user": null, + "account_number": "32230102", + "user_type": "student", + "full_name": "Galindo Castillo Sayid Amir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19636, + "fields": { + "user": null, + "account_number": "32230060", + "user_type": "student", + "full_name": "Uribe Fabela Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19637, + "fields": { + "user": null, + "account_number": "32229923", + "user_type": "student", + "full_name": "Salazar Santiago Erick Naim" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19638, + "fields": { + "user": null, + "account_number": "32229513", + "user_type": "student", + "full_name": "Reyes Luna Eduardo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19639, + "fields": { + "user": null, + "account_number": "32228168", + "user_type": "student", + "full_name": "Guerrero Sanchez Cristopher Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19640, + "fields": { + "user": null, + "account_number": "32227567", + "user_type": "student", + "full_name": "Romo Martinez Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19641, + "fields": { + "user": null, + "account_number": "32227148", + "user_type": "student", + "full_name": "Valencia Diaz Abraham Javet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19642, + "fields": { + "user": null, + "account_number": "32227072", + "user_type": "student", + "full_name": "Garcia Marron Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19643, + "fields": { + "user": null, + "account_number": "32224901", + "user_type": "student", + "full_name": "Garnica Sandoval Jose Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19644, + "fields": { + "user": null, + "account_number": "32223548", + "user_type": "student", + "full_name": "Cruz Becerra Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19645, + "fields": { + "user": null, + "account_number": "32223294", + "user_type": "student", + "full_name": "Barranco Flores Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19646, + "fields": { + "user": null, + "account_number": "32222190", + "user_type": "student", + "full_name": "Lopez Zamora Ingrid Yarani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19647, + "fields": { + "user": null, + "account_number": "32220098", + "user_type": "student", + "full_name": "Carrera Perez Brenda Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19648, + "fields": { + "user": null, + "account_number": "32219914", + "user_type": "student", + "full_name": "Hernandez Lopez Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19649, + "fields": { + "user": null, + "account_number": "32219448", + "user_type": "student", + "full_name": "Garrido Zapata Obed Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19650, + "fields": { + "user": null, + "account_number": "32219254", + "user_type": "student", + "full_name": "Sampayo Aguirre Daniela Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19651, + "fields": { + "user": null, + "account_number": "32219131", + "user_type": "student", + "full_name": "Miranda Solis Barbara Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19652, + "fields": { + "user": null, + "account_number": "32217183", + "user_type": "student", + "full_name": "Rojas San Martin Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19653, + "fields": { + "user": null, + "account_number": "32216927", + "user_type": "student", + "full_name": "Reyes Garcia Regina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19654, + "fields": { + "user": null, + "account_number": "32214484", + "user_type": "student", + "full_name": "Noya Sanchez Yoliztli Quetzalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19655, + "fields": { + "user": null, + "account_number": "32214173", + "user_type": "student", + "full_name": "Martinez Villavicencio Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19656, + "fields": { + "user": null, + "account_number": "32214103", + "user_type": "student", + "full_name": "Magadan Rodriguez Ana Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19657, + "fields": { + "user": null, + "account_number": "32213799", + "user_type": "student", + "full_name": "Jasso Juarez Alan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19658, + "fields": { + "user": null, + "account_number": "32213471", + "user_type": "student", + "full_name": "Solis Garcia Wendy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19659, + "fields": { + "user": null, + "account_number": "32211288", + "user_type": "student", + "full_name": "Ruiz Estrada Josselyn Judith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19660, + "fields": { + "user": null, + "account_number": "32211123", + "user_type": "student", + "full_name": "Fajardo De La O Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19661, + "fields": { + "user": null, + "account_number": "32210982", + "user_type": "student", + "full_name": "Trinidad Potrero David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19662, + "fields": { + "user": null, + "account_number": "32210677", + "user_type": "student", + "full_name": "Medina Sanchez Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19663, + "fields": { + "user": null, + "account_number": "32210347", + "user_type": "student", + "full_name": "Perez Mora Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19664, + "fields": { + "user": null, + "account_number": "32210119", + "user_type": "student", + "full_name": "Rodriguez Medina Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19665, + "fields": { + "user": null, + "account_number": "32208503", + "user_type": "student", + "full_name": "Flores Tenorio Miguel Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19666, + "fields": { + "user": null, + "account_number": "32207809", + "user_type": "student", + "full_name": "Velazco Montoya Enya Bibani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19667, + "fields": { + "user": null, + "account_number": "32207473", + "user_type": "student", + "full_name": "Olvera Garcia Nadia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19668, + "fields": { + "user": null, + "account_number": "32206947", + "user_type": "student", + "full_name": "Aguila Gonzalez Jonathan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19669, + "fields": { + "user": null, + "account_number": "32206940", + "user_type": "student", + "full_name": "Reyes Dardon Mateo Imanol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19670, + "fields": { + "user": null, + "account_number": "32206933", + "user_type": "student", + "full_name": "Mendo Estrada Diego Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19671, + "fields": { + "user": null, + "account_number": "32205949", + "user_type": "student", + "full_name": "Robledo Perez Sergio Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19672, + "fields": { + "user": null, + "account_number": "32204608", + "user_type": "student", + "full_name": "Pigeon Cantellan Luis Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19673, + "fields": { + "user": null, + "account_number": "32203724", + "user_type": "student", + "full_name": "Mendoza Ramirez Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19674, + "fields": { + "user": null, + "account_number": "32203455", + "user_type": "student", + "full_name": "Gomez Perez Vader Ali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19675, + "fields": { + "user": null, + "account_number": "32202627", + "user_type": "student", + "full_name": "Leon Ramirez Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19676, + "fields": { + "user": null, + "account_number": "32202615", + "user_type": "student", + "full_name": "Becerril Ruiz Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19677, + "fields": { + "user": null, + "account_number": "32202096", + "user_type": "student", + "full_name": "Colores Hernandez Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19678, + "fields": { + "user": null, + "account_number": "32201971", + "user_type": "student", + "full_name": "Reyes Castañeda Karla Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19679, + "fields": { + "user": null, + "account_number": "32201747", + "user_type": "student", + "full_name": "Resendiz Hernandez Diego Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19680, + "fields": { + "user": null, + "account_number": "32200659", + "user_type": "student", + "full_name": "Lunar Escareño Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19681, + "fields": { + "user": null, + "account_number": "32167075", + "user_type": "student", + "full_name": "Rodriguez Valdovinos Aurora" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19682, + "fields": { + "user": null, + "account_number": "32165993", + "user_type": "student", + "full_name": "Resendiz Castillo Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19683, + "fields": { + "user": null, + "account_number": "32132895", + "user_type": "student", + "full_name": "Lugo Ramirez Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19684, + "fields": { + "user": null, + "account_number": "32132630", + "user_type": "student", + "full_name": "Martinez Celis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19685, + "fields": { + "user": null, + "account_number": "32130933", + "user_type": "student", + "full_name": "Antonio Vazquez Fatima" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19686, + "fields": { + "user": null, + "account_number": "32130220", + "user_type": "student", + "full_name": "Ramirez Lugo Edgar Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19687, + "fields": { + "user": null, + "account_number": "32130187", + "user_type": "student", + "full_name": "Beltran Villalobos Eli Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19688, + "fields": { + "user": null, + "account_number": "32129272", + "user_type": "student", + "full_name": "Sanchez Trigueros Bruno Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19689, + "fields": { + "user": null, + "account_number": "32129155", + "user_type": "student", + "full_name": "Flores Pastor Jonathan Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19690, + "fields": { + "user": null, + "account_number": "32129055", + "user_type": "student", + "full_name": "Romero Arzate Jose Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19691, + "fields": { + "user": null, + "account_number": "32128491", + "user_type": "student", + "full_name": "Cruz Ortega Yahir Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19692, + "fields": { + "user": null, + "account_number": "32127416", + "user_type": "student", + "full_name": "Mejia Acosta Carlos Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19693, + "fields": { + "user": null, + "account_number": "32127414", + "user_type": "student", + "full_name": "Montoya Salinas Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19694, + "fields": { + "user": null, + "account_number": "32127358", + "user_type": "student", + "full_name": "Santillan Quiroz Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19695, + "fields": { + "user": null, + "account_number": "32127208", + "user_type": "student", + "full_name": "Sanchez Valdes Luis Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19696, + "fields": { + "user": null, + "account_number": "32126598", + "user_type": "student", + "full_name": "Hernandez Montaño Ulani Naomi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19697, + "fields": { + "user": null, + "account_number": "32126573", + "user_type": "student", + "full_name": "Guillen Maldonado Miguel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19698, + "fields": { + "user": null, + "account_number": "32126488", + "user_type": "student", + "full_name": "Nuñez Moreno Yael Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19699, + "fields": { + "user": null, + "account_number": "32125979", + "user_type": "student", + "full_name": "Hernandez Avila Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19700, + "fields": { + "user": null, + "account_number": "32125619", + "user_type": "student", + "full_name": "Danis Andrade Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19701, + "fields": { + "user": null, + "account_number": "32124362", + "user_type": "student", + "full_name": "Hurtado Cervantes Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19702, + "fields": { + "user": null, + "account_number": "32124348", + "user_type": "student", + "full_name": "Suarez Erreguin Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19703, + "fields": { + "user": null, + "account_number": "32124305", + "user_type": "student", + "full_name": "Nava Mendoza Ingrid Yohani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19704, + "fields": { + "user": null, + "account_number": "32123685", + "user_type": "student", + "full_name": "Castro Vera Kaled Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19705, + "fields": { + "user": null, + "account_number": "32123529", + "user_type": "student", + "full_name": "Cazarin Roldan Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19706, + "fields": { + "user": null, + "account_number": "32122996", + "user_type": "student", + "full_name": "Sanchez Trejo Dulce Itzel Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19707, + "fields": { + "user": null, + "account_number": "32122738", + "user_type": "student", + "full_name": "Valeriano Alvarado Jesus Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19708, + "fields": { + "user": null, + "account_number": "32122347", + "user_type": "student", + "full_name": "Rojas De Jesus Karla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19709, + "fields": { + "user": null, + "account_number": "32121964", + "user_type": "student", + "full_name": "Tapia Gutierrez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19710, + "fields": { + "user": null, + "account_number": "32121913", + "user_type": "student", + "full_name": "Vera Mothe Baraham Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19711, + "fields": { + "user": null, + "account_number": "32121325", + "user_type": "student", + "full_name": "Lopez Ramirez Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19712, + "fields": { + "user": null, + "account_number": "32121181", + "user_type": "student", + "full_name": "Lopez Cervantes Cristofer Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19713, + "fields": { + "user": null, + "account_number": "32120406", + "user_type": "student", + "full_name": "Perez Navarrete Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19714, + "fields": { + "user": null, + "account_number": "32120206", + "user_type": "student", + "full_name": "Avila Torres Alex Ferran" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19715, + "fields": { + "user": null, + "account_number": "32119932", + "user_type": "student", + "full_name": "Segura Ramirez Brayan Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19716, + "fields": { + "user": null, + "account_number": "32118678", + "user_type": "student", + "full_name": "Alva Vasquez Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19717, + "fields": { + "user": null, + "account_number": "32118614", + "user_type": "student", + "full_name": "Suarez Trejo Eric" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19718, + "fields": { + "user": null, + "account_number": "32118067", + "user_type": "student", + "full_name": "Galindo Juarez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19719, + "fields": { + "user": null, + "account_number": "32115945", + "user_type": "student", + "full_name": "Monjaras Gonzalez Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19720, + "fields": { + "user": null, + "account_number": "32115097", + "user_type": "student", + "full_name": "Licona Hernandez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19721, + "fields": { + "user": null, + "account_number": "32114432", + "user_type": "student", + "full_name": "Velez Neria Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19722, + "fields": { + "user": null, + "account_number": "32113749", + "user_type": "student", + "full_name": "Vallejo Leon Fabricio Jocabed" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19723, + "fields": { + "user": null, + "account_number": "32113463", + "user_type": "student", + "full_name": "Gonzalez Reyes Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19724, + "fields": { + "user": null, + "account_number": "32113261", + "user_type": "student", + "full_name": "Becerril Garcia Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19725, + "fields": { + "user": null, + "account_number": "32110816", + "user_type": "student", + "full_name": "Vargas Lozano Fernanda Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19726, + "fields": { + "user": null, + "account_number": "32110150", + "user_type": "student", + "full_name": "Garcia Perez Santiago Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19727, + "fields": { + "user": null, + "account_number": "32109335", + "user_type": "student", + "full_name": "Regalado Herrera Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19728, + "fields": { + "user": null, + "account_number": "32109213", + "user_type": "student", + "full_name": "Zamora Mora Leonardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19729, + "fields": { + "user": null, + "account_number": "32109077", + "user_type": "student", + "full_name": "Aguilar Sanchez Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19730, + "fields": { + "user": null, + "account_number": "32108035", + "user_type": "student", + "full_name": "Perez Garcia Eden Yohualli Tonatiuh" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19731, + "fields": { + "user": null, + "account_number": "32106341", + "user_type": "student", + "full_name": "Sanchez Romero Oscar Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19732, + "fields": { + "user": null, + "account_number": "32105770", + "user_type": "student", + "full_name": "Sanchez Rivas Hilario Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19733, + "fields": { + "user": null, + "account_number": "32105184", + "user_type": "student", + "full_name": "Flores Palomino Diego Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19734, + "fields": { + "user": null, + "account_number": "32104364", + "user_type": "student", + "full_name": "Amezcua Gonzalez Joselyn Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19735, + "fields": { + "user": null, + "account_number": "32103932", + "user_type": "student", + "full_name": "Teofilo Linares Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19736, + "fields": { + "user": null, + "account_number": "32103201", + "user_type": "student", + "full_name": "Caldelas Hernandez Jose Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19737, + "fields": { + "user": null, + "account_number": "32102314", + "user_type": "student", + "full_name": "Rodriguez Bautista Jorge Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19738, + "fields": { + "user": null, + "account_number": "32101949", + "user_type": "student", + "full_name": "Lopez Navarro Karol Noeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19739, + "fields": { + "user": null, + "account_number": "32101588", + "user_type": "student", + "full_name": "Ramirez Navarro Manuel Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19740, + "fields": { + "user": null, + "account_number": "32101183", + "user_type": "student", + "full_name": "Fragoso Bautista Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19741, + "fields": { + "user": null, + "account_number": "32100958", + "user_type": "student", + "full_name": "Gonzalez Martinez Erick Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19742, + "fields": { + "user": null, + "account_number": "32054613", + "user_type": "student", + "full_name": "Gomez Hernandez Valeria Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19743, + "fields": { + "user": null, + "account_number": "32049367", + "user_type": "student", + "full_name": "Casas Garcia Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19744, + "fields": { + "user": null, + "account_number": "32025980", + "user_type": "student", + "full_name": "Mora Martinez Angel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19745, + "fields": { + "user": null, + "account_number": "32025595", + "user_type": "student", + "full_name": "Garcia Diaz Ernesto Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19746, + "fields": { + "user": null, + "account_number": "32024641", + "user_type": "student", + "full_name": "Cruz Ortiz Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19747, + "fields": { + "user": null, + "account_number": "32024590", + "user_type": "student", + "full_name": "Silva Becerril Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19748, + "fields": { + "user": null, + "account_number": "32021801", + "user_type": "student", + "full_name": "Ramirez Galeana Ariel Ian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19749, + "fields": { + "user": null, + "account_number": "32017592", + "user_type": "student", + "full_name": "Lopez Garcia Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19750, + "fields": { + "user": null, + "account_number": "32015984", + "user_type": "student", + "full_name": "Vazquez Garcia Ulises Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19751, + "fields": { + "user": null, + "account_number": "32015339", + "user_type": "student", + "full_name": "Contreras Rojas Emanuel Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19752, + "fields": { + "user": null, + "account_number": "32014300", + "user_type": "student", + "full_name": "Aguirre Valdes Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19753, + "fields": { + "user": null, + "account_number": "32013541", + "user_type": "student", + "full_name": "Sanchez Armas Diaz Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19754, + "fields": { + "user": null, + "account_number": "32011420", + "user_type": "student", + "full_name": "Villa Rosas Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19755, + "fields": { + "user": null, + "account_number": "32005054", + "user_type": "student", + "full_name": "Ramirez Gamallo Oscar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19756, + "fields": { + "user": null, + "account_number": "32004690", + "user_type": "student", + "full_name": "Osorio Pineda Rodrigo Said" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19757, + "fields": { + "user": null, + "account_number": "32002931", + "user_type": "student", + "full_name": "Martinez Arteaga Ines Rosalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19758, + "fields": { + "user": null, + "account_number": "32002920", + "user_type": "student", + "full_name": "Rodriguez Reyes Yadel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19759, + "fields": { + "user": null, + "account_number": "32001922", + "user_type": "student", + "full_name": "Garcia Martinez Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19760, + "fields": { + "user": null, + "account_number": "32001338", + "user_type": "student", + "full_name": "Martinez Escamilla Braulio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19761, + "fields": { + "user": null, + "account_number": "32001205", + "user_type": "student", + "full_name": "Adame Lara Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19762, + "fields": { + "user": null, + "account_number": "31931643", + "user_type": "student", + "full_name": "Angeles Santiaguillo Karen Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19763, + "fields": { + "user": null, + "account_number": "31928602", + "user_type": "student", + "full_name": "Trujillo Mata Cesar David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19764, + "fields": { + "user": null, + "account_number": "31927559", + "user_type": "student", + "full_name": "Perez Gonzalez Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19765, + "fields": { + "user": null, + "account_number": "31915873", + "user_type": "student", + "full_name": "Ramirez Martinez Oscar Owen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19766, + "fields": { + "user": null, + "account_number": "31913367", + "user_type": "student", + "full_name": "Ortiz Carmona Sara Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19767, + "fields": { + "user": null, + "account_number": "31907818", + "user_type": "student", + "full_name": "Chavez Jaramillo Nathali Evelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19768, + "fields": { + "user": null, + "account_number": "31904427", + "user_type": "student", + "full_name": "Salinas Victorino Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19769, + "fields": { + "user": null, + "account_number": "31904405", + "user_type": "student", + "full_name": "Lopez Martinez Angel Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19770, + "fields": { + "user": null, + "account_number": "31901029", + "user_type": "student", + "full_name": "Becerril Martinez Angel Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19771, + "fields": { + "user": null, + "account_number": "31835115", + "user_type": "student", + "full_name": "Miranda Mateo Hector Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19772, + "fields": { + "user": null, + "account_number": "31831186", + "user_type": "student", + "full_name": "Cordoba Cortes Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19773, + "fields": { + "user": null, + "account_number": "31823605", + "user_type": "student", + "full_name": "Martinez Lopez Edgar Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19774, + "fields": { + "user": null, + "account_number": "31822573", + "user_type": "student", + "full_name": "Calderon Gonzalez Rodrigo Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19775, + "fields": { + "user": null, + "account_number": "31816721", + "user_type": "student", + "full_name": "Lopez Martinez Jhovan Tonali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19776, + "fields": { + "user": null, + "account_number": "31801313", + "user_type": "student", + "full_name": "Carmona Maldonado Gibran Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19777, + "fields": { + "user": null, + "account_number": "31732062", + "user_type": "student", + "full_name": "Villanueva Rubio Brandon Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19778, + "fields": { + "user": null, + "account_number": "31731326", + "user_type": "student", + "full_name": "Jacobo Santos Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19779, + "fields": { + "user": null, + "account_number": "31721683", + "user_type": "student", + "full_name": "Becerril Altamirano Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19780, + "fields": { + "user": null, + "account_number": "31716395", + "user_type": "student", + "full_name": "Razo Bermudez Sebastian Abdeel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19781, + "fields": { + "user": null, + "account_number": "31702973", + "user_type": "student", + "full_name": "Sanchez Ortega Tsugui" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19782, + "fields": { + "user": null, + "account_number": "31701754", + "user_type": "student", + "full_name": "Buendia Estrada Edgar Azael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19783, + "fields": { + "user": null, + "account_number": "31635312", + "user_type": "student", + "full_name": "De La Cruz Rodriguez Sergio Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19784, + "fields": { + "user": null, + "account_number": "31616201", + "user_type": "student", + "full_name": "Lopez Martin Del Campo Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19785, + "fields": { + "user": null, + "account_number": "31608988", + "user_type": "student", + "full_name": "Marquez Garcia Nestor Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19786, + "fields": { + "user": null, + "account_number": "31601723", + "user_type": "student", + "full_name": "Garcia Melgarejo Diana Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19787, + "fields": { + "user": null, + "account_number": "31531752", + "user_type": "student", + "full_name": "Ibañez Alvarez Osvaldo David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19788, + "fields": { + "user": null, + "account_number": "31517183", + "user_type": "student", + "full_name": "Godinez Rojas Saul Isaias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19789, + "fields": { + "user": null, + "account_number": "31411888", + "user_type": "student", + "full_name": "Hernandez Angeles Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19790, + "fields": { + "user": null, + "account_number": "31311430", + "user_type": "student", + "full_name": "Loyola Rosales Joshua Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19791, + "fields": { + "user": null, + "account_number": "31105067", + "user_type": "student", + "full_name": "Lopez Basilio Oscar Aswin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19792, + "fields": { + "user": null, + "account_number": "30811629", + "user_type": "student", + "full_name": "Lopez Sanchez Uriel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19793, + "fields": { + "user": null, + "account_number": "30420375", + "user_type": "student", + "full_name": "Salazar Hernandez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19794, + "fields": { + "user": null, + "account_number": "11900624", + "user_type": "student", + "full_name": "Gonzalez Eslava Nestor Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19795, + "fields": { + "user": null, + "account_number": "11700702", + "user_type": "student", + "full_name": "Rojas Sanchez Marco Adair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19796, + "fields": { + "user": null, + "account_number": "11700135", + "user_type": "student", + "full_name": "Montiel Dueñas Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19797, + "fields": { + "user": null, + "account_number": "42449034", + "user_type": "student", + "full_name": "Granados Medina Nancy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19798, + "fields": { + "user": null, + "account_number": "42415628", + "user_type": "student", + "full_name": "Monter Ortega Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19799, + "fields": { + "user": null, + "account_number": "42415491", + "user_type": "student", + "full_name": "Velazquez Najera Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19800, + "fields": { + "user": null, + "account_number": "42415477", + "user_type": "student", + "full_name": "Gonzalez Lopez Alan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19801, + "fields": { + "user": null, + "account_number": "42415337", + "user_type": "student", + "full_name": "Badillo Rodriguez Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19802, + "fields": { + "user": null, + "account_number": "42415206", + "user_type": "student", + "full_name": "Cruz Olivares Jesus Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19803, + "fields": { + "user": null, + "account_number": "42415102", + "user_type": "student", + "full_name": "Garcia Rodriguez Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19804, + "fields": { + "user": null, + "account_number": "42415082", + "user_type": "student", + "full_name": "Elizalde Andrade Jonathan Olaf" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19805, + "fields": { + "user": null, + "account_number": "42414907", + "user_type": "student", + "full_name": "Cantero Garcia Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19806, + "fields": { + "user": null, + "account_number": "42414833", + "user_type": "student", + "full_name": "Soto Barrios Karla Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19807, + "fields": { + "user": null, + "account_number": "42414794", + "user_type": "student", + "full_name": "Diaz Gonzalez Ivan Hassel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19808, + "fields": { + "user": null, + "account_number": "42414755", + "user_type": "student", + "full_name": "Lopez Alfaro Francisco Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19809, + "fields": { + "user": null, + "account_number": "42414700", + "user_type": "student", + "full_name": "Castaã‘eda Castro Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19810, + "fields": { + "user": null, + "account_number": "42414652", + "user_type": "student", + "full_name": "Dominguez Lira Ian Said" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19811, + "fields": { + "user": null, + "account_number": "42414530", + "user_type": "student", + "full_name": "Molinar Martinez Sergio Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19812, + "fields": { + "user": null, + "account_number": "42414504", + "user_type": "student", + "full_name": "Fierro Ibaã‘ez Andrea Estephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19813, + "fields": { + "user": null, + "account_number": "42414440", + "user_type": "student", + "full_name": "Jimenez Castillo Maria Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19814, + "fields": { + "user": null, + "account_number": "42414255", + "user_type": "student", + "full_name": "De La Cruz Berver Esteban Elias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19815, + "fields": { + "user": null, + "account_number": "42414211", + "user_type": "student", + "full_name": "Gerardo Gonzalez Karla Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19816, + "fields": { + "user": null, + "account_number": "42414119", + "user_type": "student", + "full_name": "Siles Bazaldua Humberto Tomas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19817, + "fields": { + "user": null, + "account_number": "42414118", + "user_type": "student", + "full_name": "Miranda Elizalde Melanie Abril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19818, + "fields": { + "user": null, + "account_number": "42413900", + "user_type": "student", + "full_name": "Sanchez Casas Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19819, + "fields": { + "user": null, + "account_number": "42413869", + "user_type": "student", + "full_name": "Gonzalez Medel Luis Jussef" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19820, + "fields": { + "user": null, + "account_number": "42413806", + "user_type": "student", + "full_name": "Rechy Martinez Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19821, + "fields": { + "user": null, + "account_number": "42413755", + "user_type": "student", + "full_name": "Fuentes Salazar Daniela Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19822, + "fields": { + "user": null, + "account_number": "42413617", + "user_type": "student", + "full_name": "Dalman Ibarra Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19823, + "fields": { + "user": null, + "account_number": "42413571", + "user_type": "student", + "full_name": "Roque Torres Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19824, + "fields": { + "user": null, + "account_number": "42413533", + "user_type": "student", + "full_name": "Reyes Gonzalez Diego De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19825, + "fields": { + "user": null, + "account_number": "42413509", + "user_type": "student", + "full_name": "Landaverde Mora Pedro Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19826, + "fields": { + "user": null, + "account_number": "42413435", + "user_type": "student", + "full_name": "Ortega Alvarado Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19827, + "fields": { + "user": null, + "account_number": "42413326", + "user_type": "student", + "full_name": "Sanchez Lopez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19828, + "fields": { + "user": null, + "account_number": "42413321", + "user_type": "student", + "full_name": "Lopez Rivera Isael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19829, + "fields": { + "user": null, + "account_number": "42413297", + "user_type": "student", + "full_name": "Resendiz Rodriguez Joaquin Raciel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19830, + "fields": { + "user": null, + "account_number": "42413248", + "user_type": "student", + "full_name": "Tellez Uribe Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19831, + "fields": { + "user": null, + "account_number": "42413102", + "user_type": "student", + "full_name": "Ochoa Rangel Vania Renata" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19832, + "fields": { + "user": null, + "account_number": "42413049", + "user_type": "student", + "full_name": "Ayala Carreã‘o Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19833, + "fields": { + "user": null, + "account_number": "42412969", + "user_type": "student", + "full_name": "Hernandez Noguez Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19834, + "fields": { + "user": null, + "account_number": "42412915", + "user_type": "student", + "full_name": "Urban Rodriguez Edith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19835, + "fields": { + "user": null, + "account_number": "42412906", + "user_type": "student", + "full_name": "Cid Hernandez Pedro Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19836, + "fields": { + "user": null, + "account_number": "42412863", + "user_type": "student", + "full_name": "Caballero Salcedo Angelina Suleima" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19837, + "fields": { + "user": null, + "account_number": "42412609", + "user_type": "student", + "full_name": "Ruiz Cruz Jose Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19838, + "fields": { + "user": null, + "account_number": "42412549", + "user_type": "student", + "full_name": "Romero De La Vega Nathalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19839, + "fields": { + "user": null, + "account_number": "42412492", + "user_type": "student", + "full_name": "Ballesteros Arroyo Jeshua Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19840, + "fields": { + "user": null, + "account_number": "42412354", + "user_type": "student", + "full_name": "Lopez Anguiano Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19841, + "fields": { + "user": null, + "account_number": "42412282", + "user_type": "student", + "full_name": "Hernandez Ledesma Itzel Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19842, + "fields": { + "user": null, + "account_number": "42412248", + "user_type": "student", + "full_name": "Martinez Tierrablanca Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19843, + "fields": { + "user": null, + "account_number": "42412222", + "user_type": "student", + "full_name": "Casas Balderas Daniel Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19844, + "fields": { + "user": null, + "account_number": "42412219", + "user_type": "student", + "full_name": "Guzman Bautista Miguel Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19845, + "fields": { + "user": null, + "account_number": "42412149", + "user_type": "student", + "full_name": "Monroy Lagunas Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19846, + "fields": { + "user": null, + "account_number": "42412075", + "user_type": "student", + "full_name": "Garcia Galicia Leticia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19847, + "fields": { + "user": null, + "account_number": "42412074", + "user_type": "student", + "full_name": "Villeda De La Cruz Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19848, + "fields": { + "user": null, + "account_number": "42412012", + "user_type": "student", + "full_name": "Ramirez Morado Annete Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19849, + "fields": { + "user": null, + "account_number": "42411984", + "user_type": "student", + "full_name": "De La Cruz Lopez Angel Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19850, + "fields": { + "user": null, + "account_number": "42411922", + "user_type": "student", + "full_name": "Hernandez Martinez Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19851, + "fields": { + "user": null, + "account_number": "42411876", + "user_type": "student", + "full_name": "Guzman Mendez Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19852, + "fields": { + "user": null, + "account_number": "42411721", + "user_type": "student", + "full_name": "Lopez Chavez Fabian Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19853, + "fields": { + "user": null, + "account_number": "42411243", + "user_type": "student", + "full_name": "Juarez Reyes Cesar Augusto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19854, + "fields": { + "user": null, + "account_number": "42411219", + "user_type": "student", + "full_name": "Cohetero Andrade Carlos Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19855, + "fields": { + "user": null, + "account_number": "42411192", + "user_type": "student", + "full_name": "Talavera Osorio Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19856, + "fields": { + "user": null, + "account_number": "42411075", + "user_type": "student", + "full_name": "Gonzalez Herrera Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19857, + "fields": { + "user": null, + "account_number": "42410953", + "user_type": "student", + "full_name": "Beltran Galeana Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19858, + "fields": { + "user": null, + "account_number": "42410929", + "user_type": "student", + "full_name": "Cayetano Cordova Yulisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19859, + "fields": { + "user": null, + "account_number": "42410768", + "user_type": "student", + "full_name": "Deciga Torres Melanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19860, + "fields": { + "user": null, + "account_number": "42410460", + "user_type": "student", + "full_name": "Rivas Castelar Donaldo Roman" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19861, + "fields": { + "user": null, + "account_number": "42410396", + "user_type": "student", + "full_name": "Villafuerte Aguilar Christian Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19862, + "fields": { + "user": null, + "account_number": "42410366", + "user_type": "student", + "full_name": "Santos Sanchez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19863, + "fields": { + "user": null, + "account_number": "42410364", + "user_type": "student", + "full_name": "Jimenez Hernandez Pablo Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19864, + "fields": { + "user": null, + "account_number": "42410250", + "user_type": "student", + "full_name": "Ocaã‘a Falcon Dulce Yesenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19865, + "fields": { + "user": null, + "account_number": "42410141", + "user_type": "student", + "full_name": "Galan Hernandez Frida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19866, + "fields": { + "user": null, + "account_number": "42409944", + "user_type": "student", + "full_name": "Zecua Lopez Ximena Lorena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19867, + "fields": { + "user": null, + "account_number": "42409917", + "user_type": "student", + "full_name": "Piã‘a Hernandez Jesus Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19868, + "fields": { + "user": null, + "account_number": "42409636", + "user_type": "student", + "full_name": "Gonzalez Chavez Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19869, + "fields": { + "user": null, + "account_number": "42409563", + "user_type": "student", + "full_name": "Olvera Galeana Aline Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19870, + "fields": { + "user": null, + "account_number": "42409447", + "user_type": "student", + "full_name": "Torres Barron Jonathan Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19871, + "fields": { + "user": null, + "account_number": "42409433", + "user_type": "student", + "full_name": "Acevedo Ortiz Maria Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19872, + "fields": { + "user": null, + "account_number": "42409415", + "user_type": "student", + "full_name": "Flores Mendoza Diego Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19873, + "fields": { + "user": null, + "account_number": "42409313", + "user_type": "student", + "full_name": "Duarte Padilla Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19874, + "fields": { + "user": null, + "account_number": "42409228", + "user_type": "student", + "full_name": "Gonzalez Hernandez Leslie Danae" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19875, + "fields": { + "user": null, + "account_number": "42409225", + "user_type": "student", + "full_name": "Moreno Vigueras Arturo Tadeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19876, + "fields": { + "user": null, + "account_number": "42409128", + "user_type": "student", + "full_name": "Hernandez Lora Oscar Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19877, + "fields": { + "user": null, + "account_number": "42409125", + "user_type": "student", + "full_name": "Cervantes Candido Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19878, + "fields": { + "user": null, + "account_number": "42409065", + "user_type": "student", + "full_name": "Mondragon Reza Johanna Jacqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19879, + "fields": { + "user": null, + "account_number": "42409034", + "user_type": "student", + "full_name": "Hernandez Montes Victoria Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19880, + "fields": { + "user": null, + "account_number": "42409033", + "user_type": "student", + "full_name": "Gonzalez Garcia Isis Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19881, + "fields": { + "user": null, + "account_number": "42409003", + "user_type": "student", + "full_name": "Jaramillo Salmeron Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19882, + "fields": { + "user": null, + "account_number": "42408939", + "user_type": "student", + "full_name": "Guevara Herrera Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19883, + "fields": { + "user": null, + "account_number": "42408904", + "user_type": "student", + "full_name": "Aldama Palomares Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19884, + "fields": { + "user": null, + "account_number": "42408741", + "user_type": "student", + "full_name": "Vazquez Hernandez Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19885, + "fields": { + "user": null, + "account_number": "42408721", + "user_type": "student", + "full_name": "Ramirez Rodriguez Alan Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19886, + "fields": { + "user": null, + "account_number": "42408066", + "user_type": "student", + "full_name": "Perez Leyte Jafet Adonai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19887, + "fields": { + "user": null, + "account_number": "42407924", + "user_type": "student", + "full_name": "Villeda Lopez Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19888, + "fields": { + "user": null, + "account_number": "42407885", + "user_type": "student", + "full_name": "Garcia Fuentes Samuel Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19889, + "fields": { + "user": null, + "account_number": "42407866", + "user_type": "student", + "full_name": "Castellanos Flores Elias Juda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19890, + "fields": { + "user": null, + "account_number": "42407864", + "user_type": "student", + "full_name": "Hernandez Santos Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19891, + "fields": { + "user": null, + "account_number": "42407838", + "user_type": "student", + "full_name": "Martinez Robles Andres Jacobo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19892, + "fields": { + "user": null, + "account_number": "42407776", + "user_type": "student", + "full_name": "Cervantes Gonzalez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19893, + "fields": { + "user": null, + "account_number": "42407759", + "user_type": "student", + "full_name": "Landa Chavarria Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19894, + "fields": { + "user": null, + "account_number": "42407726", + "user_type": "student", + "full_name": "Lopez Garcia Zoran" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19895, + "fields": { + "user": null, + "account_number": "42407632", + "user_type": "student", + "full_name": "Strickland Lucio Arhat Sajik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19896, + "fields": { + "user": null, + "account_number": "42407580", + "user_type": "student", + "full_name": "Gutierrez Cruz Alberto Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19897, + "fields": { + "user": null, + "account_number": "42407568", + "user_type": "student", + "full_name": "Ramos Lopez Leonardo Hazel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19898, + "fields": { + "user": null, + "account_number": "42407449", + "user_type": "student", + "full_name": "Vazquez Maldonado Zaid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19899, + "fields": { + "user": null, + "account_number": "42407418", + "user_type": "student", + "full_name": "Alonso Rojas Edgar Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19900, + "fields": { + "user": null, + "account_number": "42407314", + "user_type": "student", + "full_name": "Rodriguez Rodriguez Erick Tadeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19901, + "fields": { + "user": null, + "account_number": "42406966", + "user_type": "student", + "full_name": "Martinez Chavez Jonathan Yoel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19902, + "fields": { + "user": null, + "account_number": "42406794", + "user_type": "student", + "full_name": "Romero Martinez Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19903, + "fields": { + "user": null, + "account_number": "42406739", + "user_type": "student", + "full_name": "Lorenzo Esteban Fatima Danae" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19904, + "fields": { + "user": null, + "account_number": "42406637", + "user_type": "student", + "full_name": "Valdovinos Sedano Daniela Ariday" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19905, + "fields": { + "user": null, + "account_number": "42406629", + "user_type": "student", + "full_name": "Cante Chan Diego Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19906, + "fields": { + "user": null, + "account_number": "42406441", + "user_type": "student", + "full_name": "Martinez Antonio Mariela Julieta" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19907, + "fields": { + "user": null, + "account_number": "42406431", + "user_type": "student", + "full_name": "Ramirez Obando Jose Jossimar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19908, + "fields": { + "user": null, + "account_number": "42406381", + "user_type": "student", + "full_name": "Morales Vazquez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19909, + "fields": { + "user": null, + "account_number": "42406348", + "user_type": "student", + "full_name": "Morales Garduã‘o Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19910, + "fields": { + "user": null, + "account_number": "42405959", + "user_type": "student", + "full_name": "Mayen Rios Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19911, + "fields": { + "user": null, + "account_number": "42405957", + "user_type": "student", + "full_name": "Sosa Alvarez Cesar Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19912, + "fields": { + "user": null, + "account_number": "42405893", + "user_type": "student", + "full_name": "Manzo Medina Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19913, + "fields": { + "user": null, + "account_number": "42405863", + "user_type": "student", + "full_name": "Rubio Espiridion Paloma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19914, + "fields": { + "user": null, + "account_number": "42405772", + "user_type": "student", + "full_name": "Santos Martinez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19915, + "fields": { + "user": null, + "account_number": "42405755", + "user_type": "student", + "full_name": "Quirino Muã‘oz Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19916, + "fields": { + "user": null, + "account_number": "42405679", + "user_type": "student", + "full_name": "Huerta De Jesus Lady Josselin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19917, + "fields": { + "user": null, + "account_number": "42405537", + "user_type": "student", + "full_name": "Hernandez Almazan Tania Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19918, + "fields": { + "user": null, + "account_number": "42405532", + "user_type": "student", + "full_name": "Silva Alvarez Jesus Jaen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19919, + "fields": { + "user": null, + "account_number": "42405389", + "user_type": "student", + "full_name": "Castro De La Cruz Juan Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19920, + "fields": { + "user": null, + "account_number": "42405353", + "user_type": "student", + "full_name": "Piã‘a Morales Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19921, + "fields": { + "user": null, + "account_number": "42405289", + "user_type": "student", + "full_name": "Gonzalez Juarez Ian Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19922, + "fields": { + "user": null, + "account_number": "42405221", + "user_type": "student", + "full_name": "Mayen Aceves Mayte" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19923, + "fields": { + "user": null, + "account_number": "42405132", + "user_type": "student", + "full_name": "Palmillas Rivera Sheerley Djorkaeff" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19924, + "fields": { + "user": null, + "account_number": "42404969", + "user_type": "student", + "full_name": "Lorenzo Garcia Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19925, + "fields": { + "user": null, + "account_number": "42404763", + "user_type": "student", + "full_name": "Chavez Ramirez Iker David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19926, + "fields": { + "user": null, + "account_number": "42404476", + "user_type": "student", + "full_name": "Martinez Hipolito Axel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19927, + "fields": { + "user": null, + "account_number": "42404369", + "user_type": "student", + "full_name": "Rodriguez Correa Obed Eliud" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19928, + "fields": { + "user": null, + "account_number": "42404251", + "user_type": "student", + "full_name": "Ramirez Flores Erick Elian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19929, + "fields": { + "user": null, + "account_number": "42404227", + "user_type": "student", + "full_name": "Cea Villadeo Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19930, + "fields": { + "user": null, + "account_number": "42404121", + "user_type": "student", + "full_name": "Baã‘os Bohorquez Jimena Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19931, + "fields": { + "user": null, + "account_number": "42403927", + "user_type": "student", + "full_name": "Alarcon Godinez Angel Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19932, + "fields": { + "user": null, + "account_number": "42403919", + "user_type": "student", + "full_name": "Gonzalez Lopez Eduardo Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19933, + "fields": { + "user": null, + "account_number": "42403891", + "user_type": "student", + "full_name": "Ibaã‘ez Padilla Alan Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19934, + "fields": { + "user": null, + "account_number": "42403824", + "user_type": "student", + "full_name": "Velazquez Martinez Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19935, + "fields": { + "user": null, + "account_number": "42403801", + "user_type": "student", + "full_name": "Franco Mitzi Natalie Gabrielle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19936, + "fields": { + "user": null, + "account_number": "42403731", + "user_type": "student", + "full_name": "Santiago Becerra Cesar Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19937, + "fields": { + "user": null, + "account_number": "42403330", + "user_type": "student", + "full_name": "Alva De La Cruz Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19938, + "fields": { + "user": null, + "account_number": "42403263", + "user_type": "student", + "full_name": "Mares Marroquin David Denilson" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19939, + "fields": { + "user": null, + "account_number": "42403249", + "user_type": "student", + "full_name": "Alvarez Casas Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19940, + "fields": { + "user": null, + "account_number": "42403187", + "user_type": "student", + "full_name": "Perez Soto Valeria Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19941, + "fields": { + "user": null, + "account_number": "42403132", + "user_type": "student", + "full_name": "Sabino Saucedo Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19942, + "fields": { + "user": null, + "account_number": "42403127", + "user_type": "student", + "full_name": "Cansino Sanchez Cesar Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19943, + "fields": { + "user": null, + "account_number": "42402993", + "user_type": "student", + "full_name": "Baez Canales Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19944, + "fields": { + "user": null, + "account_number": "42402955", + "user_type": "student", + "full_name": "Arias Calderon Kimberly Nataly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19945, + "fields": { + "user": null, + "account_number": "42402844", + "user_type": "student", + "full_name": "Oaxaca Sanchez Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19946, + "fields": { + "user": null, + "account_number": "42402625", + "user_type": "student", + "full_name": "Dominguez Marquez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19947, + "fields": { + "user": null, + "account_number": "42402370", + "user_type": "student", + "full_name": "Cordero Rico Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19948, + "fields": { + "user": null, + "account_number": "42402259", + "user_type": "student", + "full_name": "Cruz Chavez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19949, + "fields": { + "user": null, + "account_number": "42402235", + "user_type": "student", + "full_name": "Gutierrez Gonzalez Michelle Estefania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19950, + "fields": { + "user": null, + "account_number": "42401999", + "user_type": "student", + "full_name": "Flores Garcia Christopher Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19951, + "fields": { + "user": null, + "account_number": "42401874", + "user_type": "student", + "full_name": "Ramirez Gomez Pedro Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19952, + "fields": { + "user": null, + "account_number": "42401873", + "user_type": "student", + "full_name": "Gonzalez Horta Christopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19953, + "fields": { + "user": null, + "account_number": "42401868", + "user_type": "student", + "full_name": "Elias Garcia Luis David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19954, + "fields": { + "user": null, + "account_number": "42401828", + "user_type": "student", + "full_name": "Moreno Lozano Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19955, + "fields": { + "user": null, + "account_number": "42401742", + "user_type": "student", + "full_name": "Olivares Arizmendi Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19956, + "fields": { + "user": null, + "account_number": "42401708", + "user_type": "student", + "full_name": "Quirino Muã‘oz Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19957, + "fields": { + "user": null, + "account_number": "42401521", + "user_type": "student", + "full_name": "Arreaga Becerril Jose Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19958, + "fields": { + "user": null, + "account_number": "42401408", + "user_type": "student", + "full_name": "Soto Garcia Enrique Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19959, + "fields": { + "user": null, + "account_number": "42401375", + "user_type": "student", + "full_name": "Gandara Garcia Lineth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19960, + "fields": { + "user": null, + "account_number": "42401253", + "user_type": "student", + "full_name": "Trejo Gomez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19961, + "fields": { + "user": null, + "account_number": "42400949", + "user_type": "student", + "full_name": "Silva Rangel Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19962, + "fields": { + "user": null, + "account_number": "42400756", + "user_type": "student", + "full_name": "Perez Lanas Ricardo Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19963, + "fields": { + "user": null, + "account_number": "42400695", + "user_type": "student", + "full_name": "Rodriguez Moreno Edgar Jafhet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19964, + "fields": { + "user": null, + "account_number": "42400668", + "user_type": "student", + "full_name": "Chavez Cruz Heriberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19965, + "fields": { + "user": null, + "account_number": "42400347", + "user_type": "student", + "full_name": "Navarro Martinez Osbaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19966, + "fields": { + "user": null, + "account_number": "42400289", + "user_type": "student", + "full_name": "Martinez Alfaro Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19967, + "fields": { + "user": null, + "account_number": "42400229", + "user_type": "student", + "full_name": "Trejo Ambriz Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19968, + "fields": { + "user": null, + "account_number": "42400057", + "user_type": "student", + "full_name": "Calderon Sanchez Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19969, + "fields": { + "user": null, + "account_number": "42400045", + "user_type": "student", + "full_name": "Ramirez Hernandez Nehiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19970, + "fields": { + "user": null, + "account_number": "42302842", + "user_type": "student", + "full_name": "Silva Rangel Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19971, + "fields": { + "user": null, + "account_number": "42301654", + "user_type": "student", + "full_name": "Tellez Diaz Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19972, + "fields": { + "user": null, + "account_number": "42216495", + "user_type": "student", + "full_name": "Martinez Guerrero Carlos Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19973, + "fields": { + "user": null, + "account_number": "42009031", + "user_type": "student", + "full_name": "Delgado Beltran Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19974, + "fields": { + "user": null, + "account_number": "42003628", + "user_type": "student", + "full_name": "Islas Romero Jose Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19975, + "fields": { + "user": null, + "account_number": "32160352", + "user_type": "student", + "full_name": "Martinez Ramirez Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19976, + "fields": { + "user": null, + "account_number": "32157357", + "user_type": "student", + "full_name": "Chavez Gonzalez Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19977, + "fields": { + "user": null, + "account_number": "32133996", + "user_type": "student", + "full_name": "Dominguez Lira Estefani Michalle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19978, + "fields": { + "user": null, + "account_number": "32133525", + "user_type": "student", + "full_name": "Lara Gonzalez Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19979, + "fields": { + "user": null, + "account_number": "32133154", + "user_type": "student", + "full_name": "Herrera Hernandez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19980, + "fields": { + "user": null, + "account_number": "32132143", + "user_type": "student", + "full_name": "Campos Carreras Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19981, + "fields": { + "user": null, + "account_number": "32131068", + "user_type": "student", + "full_name": "Ortiz Martinez Diego Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19982, + "fields": { + "user": null, + "account_number": "32130951", + "user_type": "student", + "full_name": "Hernandez Olayo Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19983, + "fields": { + "user": null, + "account_number": "32130351", + "user_type": "student", + "full_name": "Lopez Chee Ninive Jocabeb" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19984, + "fields": { + "user": null, + "account_number": "32130292", + "user_type": "student", + "full_name": "Lopez Ramirez Mariana Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19985, + "fields": { + "user": null, + "account_number": "32129979", + "user_type": "student", + "full_name": "Jaimes Molina Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19986, + "fields": { + "user": null, + "account_number": "32129681", + "user_type": "student", + "full_name": "Javier Solorio Regina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19987, + "fields": { + "user": null, + "account_number": "32129479", + "user_type": "student", + "full_name": "Andrade Rivadeneyra German" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19988, + "fields": { + "user": null, + "account_number": "32128753", + "user_type": "student", + "full_name": "Reyes Trujillo Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19989, + "fields": { + "user": null, + "account_number": "32128583", + "user_type": "student", + "full_name": "Martinez Martinez Andres Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19990, + "fields": { + "user": null, + "account_number": "32126646", + "user_type": "student", + "full_name": "Pichu Tellez Diego Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19991, + "fields": { + "user": null, + "account_number": "32126530", + "user_type": "student", + "full_name": "Gonzalez Sanchez Raul Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19992, + "fields": { + "user": null, + "account_number": "32125786", + "user_type": "student", + "full_name": "Lopez Palma Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19993, + "fields": { + "user": null, + "account_number": "32125768", + "user_type": "student", + "full_name": "Bautista Reyes Isabella" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19994, + "fields": { + "user": null, + "account_number": "32125561", + "user_type": "student", + "full_name": "Madrid Garcia Pedro Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19995, + "fields": { + "user": null, + "account_number": "32125056", + "user_type": "student", + "full_name": "Rojas Hernandez Diego Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19996, + "fields": { + "user": null, + "account_number": "32124909", + "user_type": "student", + "full_name": "Marquez Espinoza Alyn Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19997, + "fields": { + "user": null, + "account_number": "32123894", + "user_type": "student", + "full_name": "Camacho Flores Alitzel Sophia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19998, + "fields": { + "user": null, + "account_number": "32123414", + "user_type": "student", + "full_name": "Velazquez Mora Ian Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 19999, + "fields": { + "user": null, + "account_number": "32123342", + "user_type": "student", + "full_name": "Martinez Quiroz Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20000, + "fields": { + "user": null, + "account_number": "32121957", + "user_type": "student", + "full_name": "Rosales Mariano Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20001, + "fields": { + "user": null, + "account_number": "32121822", + "user_type": "student", + "full_name": "Sanchez Ramos Diana Rosa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20002, + "fields": { + "user": null, + "account_number": "32120944", + "user_type": "student", + "full_name": "Gonzalez Reyes Arturo Esteban Candelario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20003, + "fields": { + "user": null, + "account_number": "32120684", + "user_type": "student", + "full_name": "Laureano Sanchez Yoshua Barush" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20004, + "fields": { + "user": null, + "account_number": "32119139", + "user_type": "student", + "full_name": "Avalos Villalobos Luis Gilberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20005, + "fields": { + "user": null, + "account_number": "32119016", + "user_type": "student", + "full_name": "Moreno Ramirez Diego Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20006, + "fields": { + "user": null, + "account_number": "32118806", + "user_type": "student", + "full_name": "Hernandez Peã‘a Angel Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20007, + "fields": { + "user": null, + "account_number": "32117402", + "user_type": "student", + "full_name": "Buenrostro Cruces Sarai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20008, + "fields": { + "user": null, + "account_number": "32115693", + "user_type": "student", + "full_name": "Meneses Gutierrez Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20009, + "fields": { + "user": null, + "account_number": "32115588", + "user_type": "student", + "full_name": "Ureã‘a Baltazar Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20010, + "fields": { + "user": null, + "account_number": "32114471", + "user_type": "student", + "full_name": "Lopez Martinez Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20011, + "fields": { + "user": null, + "account_number": "32112018", + "user_type": "student", + "full_name": "Venegas Reyes Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20012, + "fields": { + "user": null, + "account_number": "32110790", + "user_type": "student", + "full_name": "Hernandez Reyes Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20013, + "fields": { + "user": null, + "account_number": "32110309", + "user_type": "student", + "full_name": "Rios Barrera Arantza Ilian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20014, + "fields": { + "user": null, + "account_number": "32110049", + "user_type": "student", + "full_name": "Escobar Sanchez Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20015, + "fields": { + "user": null, + "account_number": "32108609", + "user_type": "student", + "full_name": "Rangel Sosa Oscar Yardel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20016, + "fields": { + "user": null, + "account_number": "32108573", + "user_type": "student", + "full_name": "Umaã‘a Alfaro Raul Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20017, + "fields": { + "user": null, + "account_number": "32106880", + "user_type": "student", + "full_name": "Gonzalez Atilano David Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20018, + "fields": { + "user": null, + "account_number": "32105676", + "user_type": "student", + "full_name": "Martinez De La Cruz Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20019, + "fields": { + "user": null, + "account_number": "32104455", + "user_type": "student", + "full_name": "Oropeza Baca Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20020, + "fields": { + "user": null, + "account_number": "32102679", + "user_type": "student", + "full_name": "Garcia Cruz Eduardo Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20021, + "fields": { + "user": null, + "account_number": "32102482", + "user_type": "student", + "full_name": "Guzman Escobar Daniela Iran" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20022, + "fields": { + "user": null, + "account_number": "32101689", + "user_type": "student", + "full_name": "Gil De Gaona Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20023, + "fields": { + "user": null, + "account_number": "32101420", + "user_type": "student", + "full_name": "Zaras Rodriguez Jorge Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20024, + "fields": { + "user": null, + "account_number": "32101188", + "user_type": "student", + "full_name": "Alonso Lopez Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20025, + "fields": { + "user": null, + "account_number": "32100447", + "user_type": "student", + "full_name": "Segura Loera Carlos Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20026, + "fields": { + "user": null, + "account_number": "32031395", + "user_type": "student", + "full_name": "Yaocalli Herrera Yeshua Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20027, + "fields": { + "user": null, + "account_number": "32030729", + "user_type": "student", + "full_name": "Nava De La Cruz Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20028, + "fields": { + "user": null, + "account_number": "32028180", + "user_type": "student", + "full_name": "Barragan Villanueva Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20029, + "fields": { + "user": null, + "account_number": "32025452", + "user_type": "student", + "full_name": "Rubio Quintero Donovan Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20030, + "fields": { + "user": null, + "account_number": "32025338", + "user_type": "student", + "full_name": "Lopez Amigon Fabian Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20031, + "fields": { + "user": null, + "account_number": "32024659", + "user_type": "student", + "full_name": "Cayetano Moreno Jose Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20032, + "fields": { + "user": null, + "account_number": "32024450", + "user_type": "student", + "full_name": "Viloria Saucedo Gustavo Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20033, + "fields": { + "user": null, + "account_number": "32024356", + "user_type": "student", + "full_name": "Flores Jaimes Angel Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20034, + "fields": { + "user": null, + "account_number": "32024001", + "user_type": "student", + "full_name": "Jimenez Ruiz Joshua Charbel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20035, + "fields": { + "user": null, + "account_number": "32021282", + "user_type": "student", + "full_name": "Gutierrez Estevez Jesus Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20036, + "fields": { + "user": null, + "account_number": "32020326", + "user_type": "student", + "full_name": "Horiuchi Jurado Kenji" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20037, + "fields": { + "user": null, + "account_number": "32020238", + "user_type": "student", + "full_name": "Salazar Barreiro Nur Jibrahan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20038, + "fields": { + "user": null, + "account_number": "32020075", + "user_type": "student", + "full_name": "Perez Calderon Abraham Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20039, + "fields": { + "user": null, + "account_number": "32019225", + "user_type": "student", + "full_name": "Aceves Alvarado Angel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20040, + "fields": { + "user": null, + "account_number": "32018072", + "user_type": "student", + "full_name": "Poseros Chilapa Alfredo Acalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20041, + "fields": { + "user": null, + "account_number": "32013769", + "user_type": "student", + "full_name": "Casas Lorenzo Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20042, + "fields": { + "user": null, + "account_number": "32012928", + "user_type": "student", + "full_name": "Herrera Franco Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20043, + "fields": { + "user": null, + "account_number": "32012363", + "user_type": "student", + "full_name": "Valencia Morales Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20044, + "fields": { + "user": null, + "account_number": "32008903", + "user_type": "student", + "full_name": "Torres Anaya Diego Randu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20045, + "fields": { + "user": null, + "account_number": "32008859", + "user_type": "student", + "full_name": "Ramirez Leon Alexis Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20046, + "fields": { + "user": null, + "account_number": "32008702", + "user_type": "student", + "full_name": "Del Valle Navarrete Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20047, + "fields": { + "user": null, + "account_number": "32008465", + "user_type": "student", + "full_name": "Sanchez Gonzalez Jesus Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20048, + "fields": { + "user": null, + "account_number": "32007224", + "user_type": "student", + "full_name": "Aguilar Buendia Bruno" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20049, + "fields": { + "user": null, + "account_number": "32002967", + "user_type": "student", + "full_name": "Albarran Galindo Luis Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20050, + "fields": { + "user": null, + "account_number": "32002017", + "user_type": "student", + "full_name": "Libonatti Valdivia Sadrach Neftali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20051, + "fields": { + "user": null, + "account_number": "31972060", + "user_type": "student", + "full_name": "Bernal Sotero Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20052, + "fields": { + "user": null, + "account_number": "31928535", + "user_type": "student", + "full_name": "Santes Valencia Omar Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20053, + "fields": { + "user": null, + "account_number": "31927545", + "user_type": "student", + "full_name": "Jimenez Pulido Rodolfo Natanael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20054, + "fields": { + "user": null, + "account_number": "31925996", + "user_type": "student", + "full_name": "Ramirez Cruz Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20055, + "fields": { + "user": null, + "account_number": "31924314", + "user_type": "student", + "full_name": "Villegas Tovar Barbara Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20056, + "fields": { + "user": null, + "account_number": "31924093", + "user_type": "student", + "full_name": "Castro Solano Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20057, + "fields": { + "user": null, + "account_number": "31923660", + "user_type": "student", + "full_name": "Benavides Garcia Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20058, + "fields": { + "user": null, + "account_number": "31922061", + "user_type": "student", + "full_name": "Moctezuma Ramirez Diego Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20059, + "fields": { + "user": null, + "account_number": "31915801", + "user_type": "student", + "full_name": "Barrios Cruz Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20060, + "fields": { + "user": null, + "account_number": "31914880", + "user_type": "student", + "full_name": "Flores Guerrero Osiris Naref" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20061, + "fields": { + "user": null, + "account_number": "31914053", + "user_type": "student", + "full_name": "Ayala Carrizales Jesus Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20062, + "fields": { + "user": null, + "account_number": "31912021", + "user_type": "student", + "full_name": "Aguilar Olivares Arturo Patricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20063, + "fields": { + "user": null, + "account_number": "31907338", + "user_type": "student", + "full_name": "Hernandez Bermeo Diederik Bayani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20064, + "fields": { + "user": null, + "account_number": "31905756", + "user_type": "student", + "full_name": "Garcia Vazquez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20065, + "fields": { + "user": null, + "account_number": "31905396", + "user_type": "student", + "full_name": "Gonzalez Monroy Jorge Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20066, + "fields": { + "user": null, + "account_number": "31903714", + "user_type": "student", + "full_name": "Curiel Olvera Ernesto Andre" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20067, + "fields": { + "user": null, + "account_number": "31873773", + "user_type": "student", + "full_name": "Montero Hernandez Arath Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20068, + "fields": { + "user": null, + "account_number": "31869059", + "user_type": "student", + "full_name": "Moctezuma Isidro Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20069, + "fields": { + "user": null, + "account_number": "31835431", + "user_type": "student", + "full_name": "Vazquez Jaimes Josue Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20070, + "fields": { + "user": null, + "account_number": "31825779", + "user_type": "student", + "full_name": "Santiago Abundis Irving Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20071, + "fields": { + "user": null, + "account_number": "31809093", + "user_type": "student", + "full_name": "Hernandez Nuã‘ez Claudio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20072, + "fields": { + "user": null, + "account_number": "31803200", + "user_type": "student", + "full_name": "Heredia Tamayo Oliver De Yahve" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20073, + "fields": { + "user": null, + "account_number": "31801606", + "user_type": "student", + "full_name": "Suarez Ibarra Jose Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20074, + "fields": { + "user": null, + "account_number": "31801225", + "user_type": "student", + "full_name": "Murillo Morales Adair Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20075, + "fields": { + "user": null, + "account_number": "31732935", + "user_type": "student", + "full_name": "Zamudio Cano Brandon Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20076, + "fields": { + "user": null, + "account_number": "31731112", + "user_type": "student", + "full_name": "Valerio Castillo Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20077, + "fields": { + "user": null, + "account_number": "31731102", + "user_type": "student", + "full_name": "Resendiz Rosales Jesus Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20078, + "fields": { + "user": null, + "account_number": "31720256", + "user_type": "student", + "full_name": "Arenas Juarez Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20079, + "fields": { + "user": null, + "account_number": "31718940", + "user_type": "student", + "full_name": "Cossio Placencia Grecia Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20080, + "fields": { + "user": null, + "account_number": "31710758", + "user_type": "student", + "full_name": "Mayahua Velazquez Joel Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20081, + "fields": { + "user": null, + "account_number": "31706989", + "user_type": "student", + "full_name": "Navarro Sanchez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20082, + "fields": { + "user": null, + "account_number": "31705689", + "user_type": "student", + "full_name": "Herrera Rodriguez Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20083, + "fields": { + "user": null, + "account_number": "31704856", + "user_type": "student", + "full_name": "Gonzalez Gutierrez Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20084, + "fields": { + "user": null, + "account_number": "31704480", + "user_type": "student", + "full_name": "Cruz Piã‘a Brenda Hessai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20085, + "fields": { + "user": null, + "account_number": "31634470", + "user_type": "student", + "full_name": "Martinez Magos Elric Alexis Raumstier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20086, + "fields": { + "user": null, + "account_number": "31603983", + "user_type": "student", + "full_name": "Cruz Rodriguez Eliel Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20087, + "fields": { + "user": null, + "account_number": "31553751", + "user_type": "student", + "full_name": "Ruiz Palafox Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20088, + "fields": { + "user": null, + "account_number": "31521775", + "user_type": "student", + "full_name": "Puente Chavarria Luis Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20089, + "fields": { + "user": null, + "account_number": "31503845", + "user_type": "student", + "full_name": "Bustos Martinez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20090, + "fields": { + "user": null, + "account_number": "31028402", + "user_type": "student", + "full_name": "Islas Hernandez Williams" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20091, + "fields": { + "user": null, + "account_number": "30916460", + "user_type": "student", + "full_name": "Luna Limon Cesar Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20092, + "fields": { + "user": null, + "account_number": "11700565", + "user_type": "student", + "full_name": "Romero Perez Pablo Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20093, + "fields": { + "user": null, + "account_number": "11600814", + "user_type": "student", + "full_name": "Campos Ortiz Jorge Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20094, + "fields": { + "user": null, + "account_number": "06600089", + "user_type": "student", + "full_name": "Peã‘a Herrera Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20095, + "fields": { + "user": null, + "account_number": "42349067", + "user_type": "student", + "full_name": "Rodriguez Claro Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20096, + "fields": { + "user": null, + "account_number": "42349044", + "user_type": "student", + "full_name": "Pinto Veizaga Frida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20097, + "fields": { + "user": null, + "account_number": "42349032", + "user_type": "student", + "full_name": "Haochen Liu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20098, + "fields": { + "user": null, + "account_number": "42349013", + "user_type": "student", + "full_name": "Aguilar Renderos Walter Steve" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20099, + "fields": { + "user": null, + "account_number": "42312947", + "user_type": "student", + "full_name": "Sebastian Cervantes Vanesa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20100, + "fields": { + "user": null, + "account_number": "42312877", + "user_type": "student", + "full_name": "Tapia Avila Alan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20101, + "fields": { + "user": null, + "account_number": "42312833", + "user_type": "student", + "full_name": "Huerta Salazar Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20102, + "fields": { + "user": null, + "account_number": "42312799", + "user_type": "student", + "full_name": "Aburto Lopez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20103, + "fields": { + "user": null, + "account_number": "42312797", + "user_type": "student", + "full_name": "Sanchez Gomez Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20104, + "fields": { + "user": null, + "account_number": "42312704", + "user_type": "student", + "full_name": "Beltran Isidro Carlos Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20105, + "fields": { + "user": null, + "account_number": "42312676", + "user_type": "student", + "full_name": "Paniagua Rosas Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20106, + "fields": { + "user": null, + "account_number": "42312643", + "user_type": "student", + "full_name": "Espinosa Torrijos Vladimir Abisai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20107, + "fields": { + "user": null, + "account_number": "42312578", + "user_type": "student", + "full_name": "Arias Ferrer Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20108, + "fields": { + "user": null, + "account_number": "42312320", + "user_type": "student", + "full_name": "Trujillo Garcia Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20109, + "fields": { + "user": null, + "account_number": "42312234", + "user_type": "student", + "full_name": "Ruiz Sanchez Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20110, + "fields": { + "user": null, + "account_number": "42312221", + "user_type": "student", + "full_name": "Flores Gomez Javier Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20111, + "fields": { + "user": null, + "account_number": "42312206", + "user_type": "student", + "full_name": "Alcantar Hernandez Jessica Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20112, + "fields": { + "user": null, + "account_number": "42312140", + "user_type": "student", + "full_name": "Perez Miranda Irving" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20113, + "fields": { + "user": null, + "account_number": "42312006", + "user_type": "student", + "full_name": "Gomez Mestiza Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20114, + "fields": { + "user": null, + "account_number": "42311784", + "user_type": "student", + "full_name": "Ordoñez Gomez Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20115, + "fields": { + "user": null, + "account_number": "42311721", + "user_type": "student", + "full_name": "Gonzalez Arauz David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20116, + "fields": { + "user": null, + "account_number": "42311384", + "user_type": "student", + "full_name": "Mercado Alejandre Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20117, + "fields": { + "user": null, + "account_number": "42311356", + "user_type": "student", + "full_name": "Lopez Lopez Jenifer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20118, + "fields": { + "user": null, + "account_number": "42311334", + "user_type": "student", + "full_name": "Rodriguez Garcia Elvia Giselle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20119, + "fields": { + "user": null, + "account_number": "42311241", + "user_type": "student", + "full_name": "Ramirez Muñoz Gloria Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20120, + "fields": { + "user": null, + "account_number": "42311187", + "user_type": "student", + "full_name": "Corona Jaramillo Isaias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20121, + "fields": { + "user": null, + "account_number": "42311156", + "user_type": "student", + "full_name": "Aguilar Vazquez Yahir Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20122, + "fields": { + "user": null, + "account_number": "42311009", + "user_type": "student", + "full_name": "Garcia Mejia Ana Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20123, + "fields": { + "user": null, + "account_number": "42310923", + "user_type": "student", + "full_name": "Valdes Vera Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20124, + "fields": { + "user": null, + "account_number": "42310813", + "user_type": "student", + "full_name": "Sanchez Franco Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20125, + "fields": { + "user": null, + "account_number": "42310745", + "user_type": "student", + "full_name": "Mora Velasco Julio David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20126, + "fields": { + "user": null, + "account_number": "42310743", + "user_type": "student", + "full_name": "Vega Rivera Octavio Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20127, + "fields": { + "user": null, + "account_number": "42310534", + "user_type": "student", + "full_name": "Mercado Casasola Osiris" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20128, + "fields": { + "user": null, + "account_number": "42310481", + "user_type": "student", + "full_name": "Hernandez Pacheco Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20129, + "fields": { + "user": null, + "account_number": "42310423", + "user_type": "student", + "full_name": "Gabriel Cruz Alondra Paloma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20130, + "fields": { + "user": null, + "account_number": "42310413", + "user_type": "student", + "full_name": "Marcelino Policarpo David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20131, + "fields": { + "user": null, + "account_number": "42310321", + "user_type": "student", + "full_name": "Lopez Blancas Tania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20132, + "fields": { + "user": null, + "account_number": "42310294", + "user_type": "student", + "full_name": "Pineda Ortega Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20133, + "fields": { + "user": null, + "account_number": "42310213", + "user_type": "student", + "full_name": "Vargas Cisneros Abdiel Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20134, + "fields": { + "user": null, + "account_number": "42310170", + "user_type": "student", + "full_name": "Chenge Yduñate Antonio Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20135, + "fields": { + "user": null, + "account_number": "42310084", + "user_type": "student", + "full_name": "Echeverria Castillo Jorge Aurelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20136, + "fields": { + "user": null, + "account_number": "42310026", + "user_type": "student", + "full_name": "Zarazua Castañeda Cristian Michel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20137, + "fields": { + "user": null, + "account_number": "42310004", + "user_type": "student", + "full_name": "Bonilla Perez Sergio Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20138, + "fields": { + "user": null, + "account_number": "42309902", + "user_type": "student", + "full_name": "Anaya Martinez Jesus Raymundo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20139, + "fields": { + "user": null, + "account_number": "42309856", + "user_type": "student", + "full_name": "Ramirez Serrano Edwin Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20140, + "fields": { + "user": null, + "account_number": "42309796", + "user_type": "student", + "full_name": "Rivera Rodas Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20141, + "fields": { + "user": null, + "account_number": "42309694", + "user_type": "student", + "full_name": "Espinosa Hernandez Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20142, + "fields": { + "user": null, + "account_number": "42309693", + "user_type": "student", + "full_name": "Enriquez Sanchez Joshua Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20143, + "fields": { + "user": null, + "account_number": "42309630", + "user_type": "student", + "full_name": "Perez Estrada Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20144, + "fields": { + "user": null, + "account_number": "42309487", + "user_type": "student", + "full_name": "Dominguez Garcia Juan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20145, + "fields": { + "user": null, + "account_number": "42309432", + "user_type": "student", + "full_name": "Rodriguez Lopez Hugo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20146, + "fields": { + "user": null, + "account_number": "42309381", + "user_type": "student", + "full_name": "Rosas Gonzalez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20147, + "fields": { + "user": null, + "account_number": "42309365", + "user_type": "student", + "full_name": "Fajardo Herrera Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20148, + "fields": { + "user": null, + "account_number": "42309351", + "user_type": "student", + "full_name": "Lara Lara Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20149, + "fields": { + "user": null, + "account_number": "42309274", + "user_type": "student", + "full_name": "Pioquinto Flores Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20150, + "fields": { + "user": null, + "account_number": "42309255", + "user_type": "student", + "full_name": "Lopez Ramirez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20151, + "fields": { + "user": null, + "account_number": "42309057", + "user_type": "student", + "full_name": "Sanchez Santos Denisse Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20152, + "fields": { + "user": null, + "account_number": "42309010", + "user_type": "student", + "full_name": "Gonzalez Alvarado Edson" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20153, + "fields": { + "user": null, + "account_number": "42308988", + "user_type": "student", + "full_name": "Narvaez Guerrero Sunny Karlo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20154, + "fields": { + "user": null, + "account_number": "42308972", + "user_type": "student", + "full_name": "De Los Rios Santillan Marco Polo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20155, + "fields": { + "user": null, + "account_number": "42308966", + "user_type": "student", + "full_name": "Tapia Becerril Pablo Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20156, + "fields": { + "user": null, + "account_number": "42308934", + "user_type": "student", + "full_name": "Hernandez Monarrez Anette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20157, + "fields": { + "user": null, + "account_number": "42308933", + "user_type": "student", + "full_name": "Murguia Cazares Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20158, + "fields": { + "user": null, + "account_number": "42308890", + "user_type": "student", + "full_name": "Cabrera Trejo Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20159, + "fields": { + "user": null, + "account_number": "42308821", + "user_type": "student", + "full_name": "Cordero Servin Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20160, + "fields": { + "user": null, + "account_number": "42308805", + "user_type": "student", + "full_name": "De Alba Rios Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20161, + "fields": { + "user": null, + "account_number": "42308690", + "user_type": "student", + "full_name": "Valdez Rodriguez Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20162, + "fields": { + "user": null, + "account_number": "42308681", + "user_type": "student", + "full_name": "Romero Minchaca Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20163, + "fields": { + "user": null, + "account_number": "42308663", + "user_type": "student", + "full_name": "Juarez Martinez Gabriel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20164, + "fields": { + "user": null, + "account_number": "42308627", + "user_type": "student", + "full_name": "Perez Fernandez Alan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20165, + "fields": { + "user": null, + "account_number": "42308614", + "user_type": "student", + "full_name": "Suazo Garcia Naomi Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20166, + "fields": { + "user": null, + "account_number": "42308582", + "user_type": "student", + "full_name": "Raymundo Perez Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20167, + "fields": { + "user": null, + "account_number": "42308574", + "user_type": "student", + "full_name": "Chavelas Hernandez Ana Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20168, + "fields": { + "user": null, + "account_number": "42308567", + "user_type": "student", + "full_name": "Santana Martinez Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20169, + "fields": { + "user": null, + "account_number": "42308526", + "user_type": "student", + "full_name": "Del Valle Cruz David Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20170, + "fields": { + "user": null, + "account_number": "42308489", + "user_type": "student", + "full_name": "Madrigal Gonzalez Cynthia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20171, + "fields": { + "user": null, + "account_number": "42308456", + "user_type": "student", + "full_name": "Sedas Hernandez Carlos Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20172, + "fields": { + "user": null, + "account_number": "42308262", + "user_type": "student", + "full_name": "Gonzalez Ordaz Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20173, + "fields": { + "user": null, + "account_number": "42308260", + "user_type": "student", + "full_name": "Revelo Lima Rodrigo Josep" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20174, + "fields": { + "user": null, + "account_number": "42308258", + "user_type": "student", + "full_name": "Maya Mendez Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20175, + "fields": { + "user": null, + "account_number": "42308063", + "user_type": "student", + "full_name": "Ochoa Rodriguez Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20176, + "fields": { + "user": null, + "account_number": "42307723", + "user_type": "student", + "full_name": "Gonzalez Cruz Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20177, + "fields": { + "user": null, + "account_number": "42307696", + "user_type": "student", + "full_name": "Ramirez Castillo Karen Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20178, + "fields": { + "user": null, + "account_number": "42307692", + "user_type": "student", + "full_name": "Huerta Lozano David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20179, + "fields": { + "user": null, + "account_number": "42307666", + "user_type": "student", + "full_name": "Cruz Rosagel Richy Carvl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20180, + "fields": { + "user": null, + "account_number": "42307627", + "user_type": "student", + "full_name": "Martinez Martinez Andrea Joselin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20181, + "fields": { + "user": null, + "account_number": "42307564", + "user_type": "student", + "full_name": "Amezcua Castro Angel Jack" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20182, + "fields": { + "user": null, + "account_number": "42307532", + "user_type": "student", + "full_name": "Casanova Balam Jesus Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20183, + "fields": { + "user": null, + "account_number": "42307333", + "user_type": "student", + "full_name": "San Pedro Avila Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20184, + "fields": { + "user": null, + "account_number": "42307321", + "user_type": "student", + "full_name": "Trinidad Potrero Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20185, + "fields": { + "user": null, + "account_number": "42307227", + "user_type": "student", + "full_name": "De La Paz Perez Jocelyne Arizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20186, + "fields": { + "user": null, + "account_number": "42307224", + "user_type": "student", + "full_name": "Villafuerte Castillo Axel Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20187, + "fields": { + "user": null, + "account_number": "42307106", + "user_type": "student", + "full_name": "Gutierrez Reyes Yazmin Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20188, + "fields": { + "user": null, + "account_number": "42307103", + "user_type": "student", + "full_name": "Dominguez Bastida Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20189, + "fields": { + "user": null, + "account_number": "42307100", + "user_type": "student", + "full_name": "Hernandez Medina Missael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20190, + "fields": { + "user": null, + "account_number": "42307081", + "user_type": "student", + "full_name": "Garcia Tajonar Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20191, + "fields": { + "user": null, + "account_number": "42307052", + "user_type": "student", + "full_name": "Diaz Diaz Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20192, + "fields": { + "user": null, + "account_number": "42306961", + "user_type": "student", + "full_name": "Martinez Martinez Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20193, + "fields": { + "user": null, + "account_number": "42306923", + "user_type": "student", + "full_name": "Alvarado Sanchez Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20194, + "fields": { + "user": null, + "account_number": "42306853", + "user_type": "student", + "full_name": "Hernandez Diaz Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20195, + "fields": { + "user": null, + "account_number": "42306513", + "user_type": "student", + "full_name": "Nava Tristan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20196, + "fields": { + "user": null, + "account_number": "42306499", + "user_type": "student", + "full_name": "Velasco Reyes Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20197, + "fields": { + "user": null, + "account_number": "42306350", + "user_type": "student", + "full_name": "Avalos Albino Aldair Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20198, + "fields": { + "user": null, + "account_number": "42306282", + "user_type": "student", + "full_name": "Regalado Ibarra Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20199, + "fields": { + "user": null, + "account_number": "42306223", + "user_type": "student", + "full_name": "Hernandez Hernandez Melannin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20200, + "fields": { + "user": null, + "account_number": "42306220", + "user_type": "student", + "full_name": "Gutierrez Tapia Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20201, + "fields": { + "user": null, + "account_number": "42306152", + "user_type": "student", + "full_name": "Torrecillas Morales Brian Danyael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20202, + "fields": { + "user": null, + "account_number": "42306125", + "user_type": "student", + "full_name": "Villegas Ortega Angel Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20203, + "fields": { + "user": null, + "account_number": "42306115", + "user_type": "student", + "full_name": "Garcia Sanchez Ricardo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20204, + "fields": { + "user": null, + "account_number": "42306037", + "user_type": "student", + "full_name": "Cadena Martinez Nikte Ha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20205, + "fields": { + "user": null, + "account_number": "42306013", + "user_type": "student", + "full_name": "Ramos Navarro Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20206, + "fields": { + "user": null, + "account_number": "42305944", + "user_type": "student", + "full_name": "Vilchis Cruz Edgar Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20207, + "fields": { + "user": null, + "account_number": "42305943", + "user_type": "student", + "full_name": "Munive Rosas Arturo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20208, + "fields": { + "user": null, + "account_number": "42305898", + "user_type": "student", + "full_name": "Torres Machorro Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20209, + "fields": { + "user": null, + "account_number": "42305883", + "user_type": "student", + "full_name": "Deita Rosario Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20210, + "fields": { + "user": null, + "account_number": "42305856", + "user_type": "student", + "full_name": "Fonseca Ramirez Jorge Jayr" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20211, + "fields": { + "user": null, + "account_number": "42305787", + "user_type": "student", + "full_name": "Perez Alvarado Mauricio Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20212, + "fields": { + "user": null, + "account_number": "42305586", + "user_type": "student", + "full_name": "Marceliano Cruz Hugo Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20213, + "fields": { + "user": null, + "account_number": "42305450", + "user_type": "student", + "full_name": "Trejo Resendiz Alan Giovanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20214, + "fields": { + "user": null, + "account_number": "42305330", + "user_type": "student", + "full_name": "Najera Arriaga Ahmed Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20215, + "fields": { + "user": null, + "account_number": "42305311", + "user_type": "student", + "full_name": "Huerta Cruz Eric Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20216, + "fields": { + "user": null, + "account_number": "42305230", + "user_type": "student", + "full_name": "Torres Perez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20217, + "fields": { + "user": null, + "account_number": "42305081", + "user_type": "student", + "full_name": "Ortiz Rodriguez Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20218, + "fields": { + "user": null, + "account_number": "42304996", + "user_type": "student", + "full_name": "Mosqueda Rojas Ivette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20219, + "fields": { + "user": null, + "account_number": "42304920", + "user_type": "student", + "full_name": "Luna Martinez Escobar Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20220, + "fields": { + "user": null, + "account_number": "42304768", + "user_type": "student", + "full_name": "Velazquez Moreno Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20221, + "fields": { + "user": null, + "account_number": "42304607", + "user_type": "student", + "full_name": "Flores Medina Ariel Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20222, + "fields": { + "user": null, + "account_number": "42304486", + "user_type": "student", + "full_name": "Hernandez Cortes Zared" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20223, + "fields": { + "user": null, + "account_number": "42304474", + "user_type": "student", + "full_name": "Hernandez Perez Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20224, + "fields": { + "user": null, + "account_number": "42304452", + "user_type": "student", + "full_name": "Arteaga Reyes Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20225, + "fields": { + "user": null, + "account_number": "42304427", + "user_type": "student", + "full_name": "Gomez Herrera Cristian Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20226, + "fields": { + "user": null, + "account_number": "42304263", + "user_type": "student", + "full_name": "Gonzalez De La Cruz Tatiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20227, + "fields": { + "user": null, + "account_number": "42304217", + "user_type": "student", + "full_name": "Camacho Yañez Jose Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20228, + "fields": { + "user": null, + "account_number": "42304167", + "user_type": "student", + "full_name": "Sandoval Madrigal Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20229, + "fields": { + "user": null, + "account_number": "42304149", + "user_type": "student", + "full_name": "Martinez Martinez Johan Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20230, + "fields": { + "user": null, + "account_number": "42303844", + "user_type": "student", + "full_name": "Montero Torres Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20231, + "fields": { + "user": null, + "account_number": "42303744", + "user_type": "student", + "full_name": "Rodriguez Rodriguez Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20232, + "fields": { + "user": null, + "account_number": "42303558", + "user_type": "student", + "full_name": "Cruz Islas Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20233, + "fields": { + "user": null, + "account_number": "42303481", + "user_type": "student", + "full_name": "Rodriguez Acevedo Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20234, + "fields": { + "user": null, + "account_number": "42303416", + "user_type": "student", + "full_name": "Gonzalez Ayala Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20235, + "fields": { + "user": null, + "account_number": "42303337", + "user_type": "student", + "full_name": "Sandoval Chiw Renata" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20236, + "fields": { + "user": null, + "account_number": "42303125", + "user_type": "student", + "full_name": "Moreno Lugo Hava Josette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20237, + "fields": { + "user": null, + "account_number": "42303116", + "user_type": "student", + "full_name": "Martinez Rodriguez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20238, + "fields": { + "user": null, + "account_number": "42303106", + "user_type": "student", + "full_name": "Angel Flores Jessica Thonaly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20239, + "fields": { + "user": null, + "account_number": "42303084", + "user_type": "student", + "full_name": "Machorro Ortega Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20240, + "fields": { + "user": null, + "account_number": "42302960", + "user_type": "student", + "full_name": "Himmelstein Chaparro Hans Nicholas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20241, + "fields": { + "user": null, + "account_number": "42302864", + "user_type": "student", + "full_name": "Martinez Vazquez Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20242, + "fields": { + "user": null, + "account_number": "42302795", + "user_type": "student", + "full_name": "Rojas Rios Krystian Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20243, + "fields": { + "user": null, + "account_number": "42302736", + "user_type": "student", + "full_name": "Rangel Blancas Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20244, + "fields": { + "user": null, + "account_number": "42302637", + "user_type": "student", + "full_name": "Aranda Fajardo Elvis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20245, + "fields": { + "user": null, + "account_number": "42302616", + "user_type": "student", + "full_name": "Herrera Flores Emiliano Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20246, + "fields": { + "user": null, + "account_number": "42302599", + "user_type": "student", + "full_name": "Mancilla Martinez Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20247, + "fields": { + "user": null, + "account_number": "42302586", + "user_type": "student", + "full_name": "Cruz Escobar Nadia Jocelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20248, + "fields": { + "user": null, + "account_number": "42302292", + "user_type": "student", + "full_name": "Rangel Medina Alan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20249, + "fields": { + "user": null, + "account_number": "42302236", + "user_type": "student", + "full_name": "Guzman Rodriguez Arleth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20250, + "fields": { + "user": null, + "account_number": "42302222", + "user_type": "student", + "full_name": "Nonato Bazan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20251, + "fields": { + "user": null, + "account_number": "42302094", + "user_type": "student", + "full_name": "Rodriguez Buenrostro Grecia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20252, + "fields": { + "user": null, + "account_number": "42302026", + "user_type": "student", + "full_name": "Bolaños De La O Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20253, + "fields": { + "user": null, + "account_number": "42301939", + "user_type": "student", + "full_name": "Gallegos Bedolla Juan Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20254, + "fields": { + "user": null, + "account_number": "42301730", + "user_type": "student", + "full_name": "Godinez Escareño Leonardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20255, + "fields": { + "user": null, + "account_number": "42301635", + "user_type": "student", + "full_name": "Donjuan Arroyo Carlos Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20256, + "fields": { + "user": null, + "account_number": "42301402", + "user_type": "student", + "full_name": "Millan Sanchez Jesus Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20257, + "fields": { + "user": null, + "account_number": "42301138", + "user_type": "student", + "full_name": "Serrano Espinosa Andres Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20258, + "fields": { + "user": null, + "account_number": "42301104", + "user_type": "student", + "full_name": "Gomez Ramirez Alma Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20259, + "fields": { + "user": null, + "account_number": "42301093", + "user_type": "student", + "full_name": "Salgado Garcia Jorge Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20260, + "fields": { + "user": null, + "account_number": "42300862", + "user_type": "student", + "full_name": "Gomez Cabrera Rey Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20261, + "fields": { + "user": null, + "account_number": "42300538", + "user_type": "student", + "full_name": "Martinez Flores Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20262, + "fields": { + "user": null, + "account_number": "42300502", + "user_type": "student", + "full_name": "Lara Vera Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20263, + "fields": { + "user": null, + "account_number": "42300489", + "user_type": "student", + "full_name": "Mera Montiel Gonzalo Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20264, + "fields": { + "user": null, + "account_number": "42300281", + "user_type": "student", + "full_name": "Sanchez Florentino Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20265, + "fields": { + "user": null, + "account_number": "42300261", + "user_type": "student", + "full_name": "De La Luz Valencia Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20266, + "fields": { + "user": null, + "account_number": "42300237", + "user_type": "student", + "full_name": "Martinez Cortes Camila Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20267, + "fields": { + "user": null, + "account_number": "42300119", + "user_type": "student", + "full_name": "Angeles Gomez Jessica Judith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20268, + "fields": { + "user": null, + "account_number": "42116142", + "user_type": "student", + "full_name": "Contreras Nuñez Roberto Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20269, + "fields": { + "user": null, + "account_number": "42110142", + "user_type": "student", + "full_name": "Ramirez Martinez Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20270, + "fields": { + "user": null, + "account_number": "42106503", + "user_type": "student", + "full_name": "Sanchez Garcia Sergio Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20271, + "fields": { + "user": null, + "account_number": "42015565", + "user_type": "student", + "full_name": "Nolasco Olivares Jonathan Edwin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20272, + "fields": { + "user": null, + "account_number": "41909213", + "user_type": "student", + "full_name": "Lopez Gaspar Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20273, + "fields": { + "user": null, + "account_number": "41906801", + "user_type": "student", + "full_name": "Romero Ayala Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20274, + "fields": { + "user": null, + "account_number": "41800555", + "user_type": "student", + "full_name": "Zenteno Espinosa Joseph Michael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20275, + "fields": { + "user": null, + "account_number": "41101563", + "user_type": "student", + "full_name": "Hernandez Espinoza Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20276, + "fields": { + "user": null, + "account_number": "32069101", + "user_type": "student", + "full_name": "Garcia Tafoya Bruno Itzal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20277, + "fields": { + "user": null, + "account_number": "32067153", + "user_type": "student", + "full_name": "Nuño Ramirez Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20278, + "fields": { + "user": null, + "account_number": "32067094", + "user_type": "student", + "full_name": "Trejo Santamaria Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20279, + "fields": { + "user": null, + "account_number": "32066920", + "user_type": "student", + "full_name": "Castillo Perez Angel Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20280, + "fields": { + "user": null, + "account_number": "32063512", + "user_type": "student", + "full_name": "Vergara Martinez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20281, + "fields": { + "user": null, + "account_number": "32060979", + "user_type": "student", + "full_name": "Muñoz Marquez Ortiz Arturo Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20282, + "fields": { + "user": null, + "account_number": "32058462", + "user_type": "student", + "full_name": "Romero Velazquez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20283, + "fields": { + "user": null, + "account_number": "32056252", + "user_type": "student", + "full_name": "Caballero Orozco Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20284, + "fields": { + "user": null, + "account_number": "32049108", + "user_type": "student", + "full_name": "Cortes Hernandez Samuel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20285, + "fields": { + "user": null, + "account_number": "32049105", + "user_type": "student", + "full_name": "Flores Roa Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20286, + "fields": { + "user": null, + "account_number": "32034107", + "user_type": "student", + "full_name": "Mota Soto Jesus Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20287, + "fields": { + "user": null, + "account_number": "32034061", + "user_type": "student", + "full_name": "Perez Garcia Salvador Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20288, + "fields": { + "user": null, + "account_number": "32033768", + "user_type": "student", + "full_name": "Desales Rojas Marcel Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20289, + "fields": { + "user": null, + "account_number": "32033528", + "user_type": "student", + "full_name": "Baltazar Hernandez Gabriela Yatziri" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20290, + "fields": { + "user": null, + "account_number": "32033179", + "user_type": "student", + "full_name": "Peña Galvan Juan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20291, + "fields": { + "user": null, + "account_number": "32033004", + "user_type": "student", + "full_name": "Zarate Dominguez Jorge Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20292, + "fields": { + "user": null, + "account_number": "32032909", + "user_type": "student", + "full_name": "Abad Romero Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20293, + "fields": { + "user": null, + "account_number": "32032837", + "user_type": "student", + "full_name": "Sanchez Lopez Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20294, + "fields": { + "user": null, + "account_number": "32032428", + "user_type": "student", + "full_name": "Diaz Valdez Fidel Gilberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20295, + "fields": { + "user": null, + "account_number": "32031870", + "user_type": "student", + "full_name": "Soria Zepeda Valeria Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20296, + "fields": { + "user": null, + "account_number": "32031844", + "user_type": "student", + "full_name": "Martinez Rosales Itzel Selene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20297, + "fields": { + "user": null, + "account_number": "32031641", + "user_type": "student", + "full_name": "Morales Estrada Ignacio Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20298, + "fields": { + "user": null, + "account_number": "32030091", + "user_type": "student", + "full_name": "Velez Cruz Ademir Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20299, + "fields": { + "user": null, + "account_number": "32030059", + "user_type": "student", + "full_name": "Sanchez Perez Jessica Maylin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20300, + "fields": { + "user": null, + "account_number": "32029727", + "user_type": "student", + "full_name": "Camarena Cortez Jorge Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20301, + "fields": { + "user": null, + "account_number": "32029481", + "user_type": "student", + "full_name": "Cruz Sanchez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20302, + "fields": { + "user": null, + "account_number": "32029093", + "user_type": "student", + "full_name": "Yescas Barrera Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20303, + "fields": { + "user": null, + "account_number": "32028855", + "user_type": "student", + "full_name": "Cano Gonzalez Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20304, + "fields": { + "user": null, + "account_number": "32028310", + "user_type": "student", + "full_name": "Melo Campos Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20305, + "fields": { + "user": null, + "account_number": "32027933", + "user_type": "student", + "full_name": "Diaz Valencia Daniel Ali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20306, + "fields": { + "user": null, + "account_number": "32027814", + "user_type": "student", + "full_name": "Santiago Hernandez Dania Areli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20307, + "fields": { + "user": null, + "account_number": "32027547", + "user_type": "student", + "full_name": "De La Vega Reyes Arleth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20308, + "fields": { + "user": null, + "account_number": "32026978", + "user_type": "student", + "full_name": "Francisco Aguilar Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20309, + "fields": { + "user": null, + "account_number": "32026774", + "user_type": "student", + "full_name": "Mendoza Tejeda Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20310, + "fields": { + "user": null, + "account_number": "32026449", + "user_type": "student", + "full_name": "Soria Zapata Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20311, + "fields": { + "user": null, + "account_number": "32025814", + "user_type": "student", + "full_name": "Miranda Luna Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20312, + "fields": { + "user": null, + "account_number": "32025252", + "user_type": "student", + "full_name": "Perez Giron Daniel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20313, + "fields": { + "user": null, + "account_number": "32025046", + "user_type": "student", + "full_name": "Juarez Rodriguez Erik Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20314, + "fields": { + "user": null, + "account_number": "32024632", + "user_type": "student", + "full_name": "Santos Reyes Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20315, + "fields": { + "user": null, + "account_number": "32024364", + "user_type": "student", + "full_name": "Gonzalez Ratz Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20316, + "fields": { + "user": null, + "account_number": "32024169", + "user_type": "student", + "full_name": "Navarrete Tepozan Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20317, + "fields": { + "user": null, + "account_number": "32023999", + "user_type": "student", + "full_name": "Herrera Vidal Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20318, + "fields": { + "user": null, + "account_number": "32023964", + "user_type": "student", + "full_name": "Cortes Fernandez Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20319, + "fields": { + "user": null, + "account_number": "32023171", + "user_type": "student", + "full_name": "Martinez Rodriguez Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20320, + "fields": { + "user": null, + "account_number": "32022163", + "user_type": "student", + "full_name": "Estrada Ruano Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20321, + "fields": { + "user": null, + "account_number": "32021961", + "user_type": "student", + "full_name": "Mendoza Aguilar Valeria Catalina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20322, + "fields": { + "user": null, + "account_number": "32021958", + "user_type": "student", + "full_name": "Roldan Nuñez Yoshio Andany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20323, + "fields": { + "user": null, + "account_number": "32021261", + "user_type": "student", + "full_name": "Martinez Gutierrez Josue De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20324, + "fields": { + "user": null, + "account_number": "32020644", + "user_type": "student", + "full_name": "Morales Jimenez Rodrigo Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20325, + "fields": { + "user": null, + "account_number": "32020209", + "user_type": "student", + "full_name": "Gomez Soto Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20326, + "fields": { + "user": null, + "account_number": "32020111", + "user_type": "student", + "full_name": "Villegas Contreras Alexis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20327, + "fields": { + "user": null, + "account_number": "32020099", + "user_type": "student", + "full_name": "Correa Garcia Dante Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20328, + "fields": { + "user": null, + "account_number": "32020072", + "user_type": "student", + "full_name": "Islas Lopez Diego Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20329, + "fields": { + "user": null, + "account_number": "32020032", + "user_type": "student", + "full_name": "Hernandez Castillo Fernanda Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20330, + "fields": { + "user": null, + "account_number": "32019972", + "user_type": "student", + "full_name": "Uribe Soldevilla Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20331, + "fields": { + "user": null, + "account_number": "32017825", + "user_type": "student", + "full_name": "Lopez Cortes Carla Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20332, + "fields": { + "user": null, + "account_number": "32017635", + "user_type": "student", + "full_name": "Hernandez Mendoza Johan Triztan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20333, + "fields": { + "user": null, + "account_number": "32015793", + "user_type": "student", + "full_name": "Aguilar Lopez Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20334, + "fields": { + "user": null, + "account_number": "32015682", + "user_type": "student", + "full_name": "Cordero Campos Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20335, + "fields": { + "user": null, + "account_number": "32015404", + "user_type": "student", + "full_name": "Aviles Hernandez Lino Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20336, + "fields": { + "user": null, + "account_number": "32015021", + "user_type": "student", + "full_name": "Reyes Serrano Kevin Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20337, + "fields": { + "user": null, + "account_number": "32014979", + "user_type": "student", + "full_name": "Del Valle Navarrete Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20338, + "fields": { + "user": null, + "account_number": "32013783", + "user_type": "student", + "full_name": "Martinez Hernandez Irvin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20339, + "fields": { + "user": null, + "account_number": "32012471", + "user_type": "student", + "full_name": "Guzman Carreon Kevin Elihu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20340, + "fields": { + "user": null, + "account_number": "32012389", + "user_type": "student", + "full_name": "Pucheta Lopez Alejandro Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20341, + "fields": { + "user": null, + "account_number": "32010915", + "user_type": "student", + "full_name": "Oviedo Patiño Martin Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20342, + "fields": { + "user": null, + "account_number": "32010113", + "user_type": "student", + "full_name": "Trejo Camacho Nicolas Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20343, + "fields": { + "user": null, + "account_number": "32010047", + "user_type": "student", + "full_name": "Hurtado Vences Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20344, + "fields": { + "user": null, + "account_number": "32009085", + "user_type": "student", + "full_name": "Vilchis Lopez Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20345, + "fields": { + "user": null, + "account_number": "32008849", + "user_type": "student", + "full_name": "Salgado Urtes Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20346, + "fields": { + "user": null, + "account_number": "32008374", + "user_type": "student", + "full_name": "Aleman Arenas Edgar Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20347, + "fields": { + "user": null, + "account_number": "32006662", + "user_type": "student", + "full_name": "Rios Santana Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20348, + "fields": { + "user": null, + "account_number": "32006031", + "user_type": "student", + "full_name": "Rodriguez Blanco Julio Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20349, + "fields": { + "user": null, + "account_number": "32005518", + "user_type": "student", + "full_name": "Cuevas Velazquez Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20350, + "fields": { + "user": null, + "account_number": "32005148", + "user_type": "student", + "full_name": "Escobar Martinez Cesar Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20351, + "fields": { + "user": null, + "account_number": "32004503", + "user_type": "student", + "full_name": "Aguilar Martinez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20352, + "fields": { + "user": null, + "account_number": "32004011", + "user_type": "student", + "full_name": "Chavez Vazquez Ivan Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20353, + "fields": { + "user": null, + "account_number": "32003025", + "user_type": "student", + "full_name": "Fernandez Hernandez Jesus Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20354, + "fields": { + "user": null, + "account_number": "32002925", + "user_type": "student", + "full_name": "Mejia Galindo Carlos Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20355, + "fields": { + "user": null, + "account_number": "32002562", + "user_type": "student", + "full_name": "Castro Gonzalez Angel Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20356, + "fields": { + "user": null, + "account_number": "32002461", + "user_type": "student", + "full_name": "Hernandez Nava Rodrigo Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20357, + "fields": { + "user": null, + "account_number": "32001440", + "user_type": "student", + "full_name": "Bustos Antonio Jose Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20358, + "fields": { + "user": null, + "account_number": "32001282", + "user_type": "student", + "full_name": "Ortega Guzman Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20359, + "fields": { + "user": null, + "account_number": "32001042", + "user_type": "student", + "full_name": "Ramirez Rosales Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20360, + "fields": { + "user": null, + "account_number": "31968853", + "user_type": "student", + "full_name": "Rodriguez Flores Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20361, + "fields": { + "user": null, + "account_number": "31962194", + "user_type": "student", + "full_name": "Aviles Ulloa Ricardo Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20362, + "fields": { + "user": null, + "account_number": "31955265", + "user_type": "student", + "full_name": "Veytia Salgado Marco Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20363, + "fields": { + "user": null, + "account_number": "31929278", + "user_type": "student", + "full_name": "Vazquez Luna Ricardo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20364, + "fields": { + "user": null, + "account_number": "31929265", + "user_type": "student", + "full_name": "Flores Perez Leslie Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20365, + "fields": { + "user": null, + "account_number": "31929171", + "user_type": "student", + "full_name": "Malpica Ayala Misael Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20366, + "fields": { + "user": null, + "account_number": "31929071", + "user_type": "student", + "full_name": "Garcia Yunhuen Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20367, + "fields": { + "user": null, + "account_number": "31927280", + "user_type": "student", + "full_name": "Sanchez Sanchez Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20368, + "fields": { + "user": null, + "account_number": "31926455", + "user_type": "student", + "full_name": "Rodarte Rosales Jesus Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20369, + "fields": { + "user": null, + "account_number": "31925889", + "user_type": "student", + "full_name": "Lopez Rodriguez Jose Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20370, + "fields": { + "user": null, + "account_number": "31924947", + "user_type": "student", + "full_name": "Rodriguez Reyes Frida Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20371, + "fields": { + "user": null, + "account_number": "31919344", + "user_type": "student", + "full_name": "Garrido Vazquez Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20372, + "fields": { + "user": null, + "account_number": "31917765", + "user_type": "student", + "full_name": "Hernandez Morales Diego Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20373, + "fields": { + "user": null, + "account_number": "31917466", + "user_type": "student", + "full_name": "Ruelas Aguilar Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20374, + "fields": { + "user": null, + "account_number": "31915860", + "user_type": "student", + "full_name": "Martinez Garcia Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20375, + "fields": { + "user": null, + "account_number": "31915827", + "user_type": "student", + "full_name": "Chavero Garcia Angel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20376, + "fields": { + "user": null, + "account_number": "31914587", + "user_type": "student", + "full_name": "Garza Cossio Adair Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20377, + "fields": { + "user": null, + "account_number": "31911868", + "user_type": "student", + "full_name": "Ramirez Gabriel Aeneas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20378, + "fields": { + "user": null, + "account_number": "31911584", + "user_type": "student", + "full_name": "Lecona Iglesias Iker Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20379, + "fields": { + "user": null, + "account_number": "31911489", + "user_type": "student", + "full_name": "Bernal Barajas Angel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20380, + "fields": { + "user": null, + "account_number": "31910811", + "user_type": "student", + "full_name": "Rangel Lagunes Luis Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20381, + "fields": { + "user": null, + "account_number": "31910778", + "user_type": "student", + "full_name": "Jimenez Garcia Fabiola Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20382, + "fields": { + "user": null, + "account_number": "31910526", + "user_type": "student", + "full_name": "Ibarra Garcia Jesus Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20383, + "fields": { + "user": null, + "account_number": "31910184", + "user_type": "student", + "full_name": "Salazar Garcia Cesar David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20384, + "fields": { + "user": null, + "account_number": "31910058", + "user_type": "student", + "full_name": "Alvarez De Anda Francisco Nemi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20385, + "fields": { + "user": null, + "account_number": "31909579", + "user_type": "student", + "full_name": "Salinas Salinas Josue Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20386, + "fields": { + "user": null, + "account_number": "31909427", + "user_type": "student", + "full_name": "Guadarrama Gutierrez Elias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20387, + "fields": { + "user": null, + "account_number": "31909295", + "user_type": "student", + "full_name": "Arrieta Trejo Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20388, + "fields": { + "user": null, + "account_number": "31908673", + "user_type": "student", + "full_name": "Moreno Aragon Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20389, + "fields": { + "user": null, + "account_number": "31906778", + "user_type": "student", + "full_name": "Carpio Angeles Leo Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20390, + "fields": { + "user": null, + "account_number": "31906181", + "user_type": "student", + "full_name": "Barcena Hernandez Juan Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20391, + "fields": { + "user": null, + "account_number": "31905483", + "user_type": "student", + "full_name": "Perez Navarro Iran Patricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20392, + "fields": { + "user": null, + "account_number": "31905469", + "user_type": "student", + "full_name": "Juarez Hernandez Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20393, + "fields": { + "user": null, + "account_number": "31905015", + "user_type": "student", + "full_name": "Galicia Villafañe Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20394, + "fields": { + "user": null, + "account_number": "31904557", + "user_type": "student", + "full_name": "Reyes Guzman David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20395, + "fields": { + "user": null, + "account_number": "31904106", + "user_type": "student", + "full_name": "Vega Gaytan Carolina De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20396, + "fields": { + "user": null, + "account_number": "31903514", + "user_type": "student", + "full_name": "Escutia Pascacio Eduardo Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20397, + "fields": { + "user": null, + "account_number": "31902755", + "user_type": "student", + "full_name": "Pacheco Garcia David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20398, + "fields": { + "user": null, + "account_number": "31901707", + "user_type": "student", + "full_name": "Pompa Duran Victor Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20399, + "fields": { + "user": null, + "account_number": "31873525", + "user_type": "student", + "full_name": "Perez Morales Omar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20400, + "fields": { + "user": null, + "account_number": "31868058", + "user_type": "student", + "full_name": "Zurita Morales Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20401, + "fields": { + "user": null, + "account_number": "31836210", + "user_type": "student", + "full_name": "Zepeda Salazar Alan Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20402, + "fields": { + "user": null, + "account_number": "31832343", + "user_type": "student", + "full_name": "Lopez Herrera Aitzel Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20403, + "fields": { + "user": null, + "account_number": "31831240", + "user_type": "student", + "full_name": "Sandoval Coronel Guadalupe Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20404, + "fields": { + "user": null, + "account_number": "31828816", + "user_type": "student", + "full_name": "Mejia Ruiz Juan Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20405, + "fields": { + "user": null, + "account_number": "31823674", + "user_type": "student", + "full_name": "Toledo Hernandez Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20406, + "fields": { + "user": null, + "account_number": "31823116", + "user_type": "student", + "full_name": "Martinez Villegas Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20407, + "fields": { + "user": null, + "account_number": "31822981", + "user_type": "student", + "full_name": "Alcantar Tovar Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20408, + "fields": { + "user": null, + "account_number": "31817006", + "user_type": "student", + "full_name": "Rodriguez Meza Pablo Adair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20409, + "fields": { + "user": null, + "account_number": "31815445", + "user_type": "student", + "full_name": "Garduño Landeros Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20410, + "fields": { + "user": null, + "account_number": "31811096", + "user_type": "student", + "full_name": "Garcia Alvarado Jose Iyaquibalam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20411, + "fields": { + "user": null, + "account_number": "31803672", + "user_type": "student", + "full_name": "Lopez Cabello Mikel Iker" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20412, + "fields": { + "user": null, + "account_number": "31803178", + "user_type": "student", + "full_name": "Vera Balcazar Geovanni Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20413, + "fields": { + "user": null, + "account_number": "31800051", + "user_type": "student", + "full_name": "Velazco Cabrera Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20414, + "fields": { + "user": null, + "account_number": "31755600", + "user_type": "student", + "full_name": "Bryans Ibarra Patrick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20415, + "fields": { + "user": null, + "account_number": "31735602", + "user_type": "student", + "full_name": "Suazo Moreno Cristhian Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20416, + "fields": { + "user": null, + "account_number": "31723789", + "user_type": "student", + "full_name": "Estrada Romero Meliza Edith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20417, + "fields": { + "user": null, + "account_number": "31723394", + "user_type": "student", + "full_name": "Millan Bautista David Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20418, + "fields": { + "user": null, + "account_number": "31722225", + "user_type": "student", + "full_name": "Perez Moran Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20419, + "fields": { + "user": null, + "account_number": "31721251", + "user_type": "student", + "full_name": "Gomez Luna Paola Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20420, + "fields": { + "user": null, + "account_number": "31717106", + "user_type": "student", + "full_name": "Perez Palomo Oscar Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20421, + "fields": { + "user": null, + "account_number": "31713951", + "user_type": "student", + "full_name": "Barcenas Gonzalez Sebastian Amadeus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20422, + "fields": { + "user": null, + "account_number": "31704840", + "user_type": "student", + "full_name": "Solis Juarez Rosario Josebed" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20423, + "fields": { + "user": null, + "account_number": "31670199", + "user_type": "student", + "full_name": "Ramos Navarro Paulina Alethia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20424, + "fields": { + "user": null, + "account_number": "31635278", + "user_type": "student", + "full_name": "Flores Ramirez Carlos Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20425, + "fields": { + "user": null, + "account_number": "31631200", + "user_type": "student", + "full_name": "Ruiz Ocampo Daniel Julian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20426, + "fields": { + "user": null, + "account_number": "31614972", + "user_type": "student", + "full_name": "Bravo Perez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20427, + "fields": { + "user": null, + "account_number": "31609929", + "user_type": "student", + "full_name": "Montes Vazquez Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20428, + "fields": { + "user": null, + "account_number": "31604720", + "user_type": "student", + "full_name": "Chavez Gabriel Bryan Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20429, + "fields": { + "user": null, + "account_number": "31534117", + "user_type": "student", + "full_name": "Chaparro Blas Adrian Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20430, + "fields": { + "user": null, + "account_number": "31522542", + "user_type": "student", + "full_name": "Rodriguez Bautista Ollin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20431, + "fields": { + "user": null, + "account_number": "31521364", + "user_type": "student", + "full_name": "Avila Guerrero Johan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20432, + "fields": { + "user": null, + "account_number": "31520239", + "user_type": "student", + "full_name": "Mendez Amel Arturo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20433, + "fields": { + "user": null, + "account_number": "31509903", + "user_type": "student", + "full_name": "Duran Rodriguez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20434, + "fields": { + "user": null, + "account_number": "31507417", + "user_type": "student", + "full_name": "Alfonso Coyolt Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20435, + "fields": { + "user": null, + "account_number": "31500789", + "user_type": "student", + "full_name": "Cervantes Sanchez Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20436, + "fields": { + "user": null, + "account_number": "31453223", + "user_type": "student", + "full_name": "Bojorge Rodriguez Diana Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20437, + "fields": { + "user": null, + "account_number": "31303054", + "user_type": "student", + "full_name": "Perez Lopez Jose Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20438, + "fields": { + "user": null, + "account_number": "31257430", + "user_type": "student", + "full_name": "Peñalver Gonzalez Fernando Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20439, + "fields": { + "user": null, + "account_number": "30814904", + "user_type": "student", + "full_name": "Rodriguez Tolentino Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20440, + "fields": { + "user": null, + "account_number": "30614384", + "user_type": "student", + "full_name": "Perez Hernandez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20441, + "fields": { + "user": null, + "account_number": "11600390", + "user_type": "student", + "full_name": "Melo Alvarado Karolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20442, + "fields": { + "user": null, + "account_number": "11500432", + "user_type": "student", + "full_name": "Santamaria Rivera Zirat Varuni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20443, + "fields": { + "user": null, + "account_number": "42213899", + "user_type": "student", + "full_name": "Rodriguez Torres Jorge Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20444, + "fields": { + "user": null, + "account_number": "42213807", + "user_type": "student", + "full_name": "Luna Escamilla Daniel Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20445, + "fields": { + "user": null, + "account_number": "42213632", + "user_type": "student", + "full_name": "Soto Velazquez Claudio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20446, + "fields": { + "user": null, + "account_number": "42213392", + "user_type": "student", + "full_name": "Rodriguez Hernandez Gustavo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20447, + "fields": { + "user": null, + "account_number": "42213372", + "user_type": "student", + "full_name": "Aguirre Olguin Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20448, + "fields": { + "user": null, + "account_number": "42213258", + "user_type": "student", + "full_name": "Diaz Godinez Erick Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20449, + "fields": { + "user": null, + "account_number": "42213226", + "user_type": "student", + "full_name": "Hernandez Martinez Juan Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20450, + "fields": { + "user": null, + "account_number": "42213140", + "user_type": "student", + "full_name": "Velez Solano Israel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20451, + "fields": { + "user": null, + "account_number": "42213102", + "user_type": "student", + "full_name": "Hernandez Ramirez Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20452, + "fields": { + "user": null, + "account_number": "42212997", + "user_type": "student", + "full_name": "Castro Cruz Jairo Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20453, + "fields": { + "user": null, + "account_number": "42212868", + "user_type": "student", + "full_name": "Martinez Vega Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20454, + "fields": { + "user": null, + "account_number": "42212867", + "user_type": "student", + "full_name": "Albor Saucedo Dylan Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20455, + "fields": { + "user": null, + "account_number": "42212866", + "user_type": "student", + "full_name": "Gil Caballero Angel Jocsan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20456, + "fields": { + "user": null, + "account_number": "42212864", + "user_type": "student", + "full_name": "Mayo Alcaraz Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20457, + "fields": { + "user": null, + "account_number": "42212862", + "user_type": "student", + "full_name": "Velazquez Garcia Leonardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20458, + "fields": { + "user": null, + "account_number": "42212719", + "user_type": "student", + "full_name": "Leon Valdes Duhart Guillermo Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20459, + "fields": { + "user": null, + "account_number": "42212335", + "user_type": "student", + "full_name": "Reyes Martinez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20460, + "fields": { + "user": null, + "account_number": "42212289", + "user_type": "student", + "full_name": "Hernandez Esquivel Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20461, + "fields": { + "user": null, + "account_number": "42212238", + "user_type": "student", + "full_name": "Vega Bernal Maria Xochitl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20462, + "fields": { + "user": null, + "account_number": "42212201", + "user_type": "student", + "full_name": "Guerra Garcia Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20463, + "fields": { + "user": null, + "account_number": "42212148", + "user_type": "student", + "full_name": "Vazquez Perez Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20464, + "fields": { + "user": null, + "account_number": "42212094", + "user_type": "student", + "full_name": "Inclan Casas Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20465, + "fields": { + "user": null, + "account_number": "42211859", + "user_type": "student", + "full_name": "Oseguera Reyes Kevin Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20466, + "fields": { + "user": null, + "account_number": "42211807", + "user_type": "student", + "full_name": "Sampedro Cuevas Ivan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20467, + "fields": { + "user": null, + "account_number": "42211709", + "user_type": "student", + "full_name": "Aldama Silvestre Luis Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20468, + "fields": { + "user": null, + "account_number": "42211668", + "user_type": "student", + "full_name": "Enciso Luna Juan Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20469, + "fields": { + "user": null, + "account_number": "42211551", + "user_type": "student", + "full_name": "Farfan Enriquez Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20470, + "fields": { + "user": null, + "account_number": "42211409", + "user_type": "student", + "full_name": "Olvera Romero Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20471, + "fields": { + "user": null, + "account_number": "42211296", + "user_type": "student", + "full_name": "Garcia Nava Erick Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20472, + "fields": { + "user": null, + "account_number": "42211125", + "user_type": "student", + "full_name": "Aguilar Valencia Enrique Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20473, + "fields": { + "user": null, + "account_number": "42211071", + "user_type": "student", + "full_name": "Patiño Bermudez Allyson Jackeline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20474, + "fields": { + "user": null, + "account_number": "42210989", + "user_type": "student", + "full_name": "Alcaraz Lopez Bella Samara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20475, + "fields": { + "user": null, + "account_number": "42210850", + "user_type": "student", + "full_name": "Castillo Camet Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20476, + "fields": { + "user": null, + "account_number": "42210679", + "user_type": "student", + "full_name": "Contreras Hernandez Diana Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20477, + "fields": { + "user": null, + "account_number": "42210668", + "user_type": "student", + "full_name": "Martinez Sanchez Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20478, + "fields": { + "user": null, + "account_number": "42210597", + "user_type": "student", + "full_name": "Corona Martinez Abril Andromeda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20479, + "fields": { + "user": null, + "account_number": "42210559", + "user_type": "student", + "full_name": "Lopez Zubieta Diego Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20480, + "fields": { + "user": null, + "account_number": "42210514", + "user_type": "student", + "full_name": "Montero Muñoz Francisco Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20481, + "fields": { + "user": null, + "account_number": "42210458", + "user_type": "student", + "full_name": "Jimenez Luna Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20482, + "fields": { + "user": null, + "account_number": "42210325", + "user_type": "student", + "full_name": "Felix Hernandez Fatima" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20483, + "fields": { + "user": null, + "account_number": "42210230", + "user_type": "student", + "full_name": "Castillo Carrizal Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20484, + "fields": { + "user": null, + "account_number": "42210221", + "user_type": "student", + "full_name": "Villegas Saguilan Julian Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20485, + "fields": { + "user": null, + "account_number": "42210070", + "user_type": "student", + "full_name": "Rivas Frutero Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20486, + "fields": { + "user": null, + "account_number": "42210029", + "user_type": "student", + "full_name": "Castañeda Hernandez Hector Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20487, + "fields": { + "user": null, + "account_number": "42209979", + "user_type": "student", + "full_name": "Valencia Mota Jose Demetrio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20488, + "fields": { + "user": null, + "account_number": "42209900", + "user_type": "student", + "full_name": "Perez Piña Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20489, + "fields": { + "user": null, + "account_number": "42209856", + "user_type": "student", + "full_name": "Hernandez Hernandez Erika" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20490, + "fields": { + "user": null, + "account_number": "42209776", + "user_type": "student", + "full_name": "Juarez Hernandez Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20491, + "fields": { + "user": null, + "account_number": "42209731", + "user_type": "student", + "full_name": "Raya Ruiz Luis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20492, + "fields": { + "user": null, + "account_number": "42209684", + "user_type": "student", + "full_name": "Monroy Hernandez Patrick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20493, + "fields": { + "user": null, + "account_number": "42209666", + "user_type": "student", + "full_name": "Garcia Lizarraga Marco Vinicio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20494, + "fields": { + "user": null, + "account_number": "42209582", + "user_type": "student", + "full_name": "Belman Torres Karim Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20495, + "fields": { + "user": null, + "account_number": "42209572", + "user_type": "student", + "full_name": "Perez Rodriguez Hugo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20496, + "fields": { + "user": null, + "account_number": "42209478", + "user_type": "student", + "full_name": "Apolonio Aranzolo Brayan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20497, + "fields": { + "user": null, + "account_number": "42209369", + "user_type": "student", + "full_name": "Salas Allende Aranza" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20498, + "fields": { + "user": null, + "account_number": "42209208", + "user_type": "student", + "full_name": "Vargas Tlacotempa Jose David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20499, + "fields": { + "user": null, + "account_number": "42209150", + "user_type": "student", + "full_name": "Avila Marin Alan Elihu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20500, + "fields": { + "user": null, + "account_number": "42209064", + "user_type": "student", + "full_name": "Parra Santamaria Xocoyotzin Izcoatl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20501, + "fields": { + "user": null, + "account_number": "42208948", + "user_type": "student", + "full_name": "Camacho Guzman Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20502, + "fields": { + "user": null, + "account_number": "42208946", + "user_type": "student", + "full_name": "Magdaleno Rodela Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20503, + "fields": { + "user": null, + "account_number": "42208898", + "user_type": "student", + "full_name": "De La Cruz Galan Pavel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20504, + "fields": { + "user": null, + "account_number": "42208882", + "user_type": "student", + "full_name": "Moreno Robles Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20505, + "fields": { + "user": null, + "account_number": "42208735", + "user_type": "student", + "full_name": "Gudiño Romero Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20506, + "fields": { + "user": null, + "account_number": "42208729", + "user_type": "student", + "full_name": "Vega Cobos Simon Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20507, + "fields": { + "user": null, + "account_number": "42208576", + "user_type": "student", + "full_name": "Hernandez Sandoval Kevin Odin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20508, + "fields": { + "user": null, + "account_number": "42208574", + "user_type": "student", + "full_name": "Sanchez Martinez Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20509, + "fields": { + "user": null, + "account_number": "42208471", + "user_type": "student", + "full_name": "Barrera Elizalde Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20510, + "fields": { + "user": null, + "account_number": "42208394", + "user_type": "student", + "full_name": "Coraza Castañeda Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20511, + "fields": { + "user": null, + "account_number": "42208345", + "user_type": "student", + "full_name": "Velazquez Rodriguez Kenia Enid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20512, + "fields": { + "user": null, + "account_number": "42208280", + "user_type": "student", + "full_name": "Bautista Alba Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20513, + "fields": { + "user": null, + "account_number": "42208273", + "user_type": "student", + "full_name": "Cabrera Duran Angel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20514, + "fields": { + "user": null, + "account_number": "42208043", + "user_type": "student", + "full_name": "Cruz Cruz Josue Adonay" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20515, + "fields": { + "user": null, + "account_number": "42207986", + "user_type": "student", + "full_name": "Cano Suarez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20516, + "fields": { + "user": null, + "account_number": "42207936", + "user_type": "student", + "full_name": "Lara Ibarra Eduardo Federico" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20517, + "fields": { + "user": null, + "account_number": "42207931", + "user_type": "student", + "full_name": "Avendaño Pachuca Jeronimo Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20518, + "fields": { + "user": null, + "account_number": "42207863", + "user_type": "student", + "full_name": "Santos Mendoza Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20519, + "fields": { + "user": null, + "account_number": "42207788", + "user_type": "student", + "full_name": "Tolentino Martinez Eduardo Shepiero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20520, + "fields": { + "user": null, + "account_number": "42207722", + "user_type": "student", + "full_name": "Arenas Lobato Anna Juliet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20521, + "fields": { + "user": null, + "account_number": "42207534", + "user_type": "student", + "full_name": "Robles Yasumura Mauricio Azael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20522, + "fields": { + "user": null, + "account_number": "42207484", + "user_type": "student", + "full_name": "Ledezma Hernandez Zeltzin Odette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20523, + "fields": { + "user": null, + "account_number": "42207416", + "user_type": "student", + "full_name": "Tenorio Castelan Jatziri Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20524, + "fields": { + "user": null, + "account_number": "42207408", + "user_type": "student", + "full_name": "Martinez Rodea Arlet Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20525, + "fields": { + "user": null, + "account_number": "42207312", + "user_type": "student", + "full_name": "Raya Garcia Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20526, + "fields": { + "user": null, + "account_number": "42207297", + "user_type": "student", + "full_name": "Montoya Santiago Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20527, + "fields": { + "user": null, + "account_number": "42207179", + "user_type": "student", + "full_name": "Calderon Diaz Luis Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20528, + "fields": { + "user": null, + "account_number": "42207017", + "user_type": "student", + "full_name": "Cervantes Jimenez Luis Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20529, + "fields": { + "user": null, + "account_number": "42206964", + "user_type": "student", + "full_name": "Hernandez Gonzalez Dulce Aline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20530, + "fields": { + "user": null, + "account_number": "42206804", + "user_type": "student", + "full_name": "Fernandez Castañeda Alexia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20531, + "fields": { + "user": null, + "account_number": "42206716", + "user_type": "student", + "full_name": "Pedraza Martinez Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20532, + "fields": { + "user": null, + "account_number": "42206648", + "user_type": "student", + "full_name": "Flores Lopez Braulio Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20533, + "fields": { + "user": null, + "account_number": "42206644", + "user_type": "student", + "full_name": "Ramirez Gomez Fernando Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20534, + "fields": { + "user": null, + "account_number": "42206460", + "user_type": "student", + "full_name": "Vazquez Perez Xochitl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20535, + "fields": { + "user": null, + "account_number": "42206442", + "user_type": "student", + "full_name": "Landeros Salgado Gael Ian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20536, + "fields": { + "user": null, + "account_number": "42206394", + "user_type": "student", + "full_name": "Vargas Gonzalez Carlo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20537, + "fields": { + "user": null, + "account_number": "42206391", + "user_type": "student", + "full_name": "Solis Garcia Mauricio Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20538, + "fields": { + "user": null, + "account_number": "42206347", + "user_type": "student", + "full_name": "Bonilla Matus Diana Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20539, + "fields": { + "user": null, + "account_number": "42206332", + "user_type": "student", + "full_name": "Navejos Gonzalez Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20540, + "fields": { + "user": null, + "account_number": "42206287", + "user_type": "student", + "full_name": "Padilla Rodriguez Ethel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20541, + "fields": { + "user": null, + "account_number": "42206174", + "user_type": "student", + "full_name": "Aguilar Carlos Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20542, + "fields": { + "user": null, + "account_number": "42206163", + "user_type": "student", + "full_name": "Miranda Teran Alexis Bladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20543, + "fields": { + "user": null, + "account_number": "42206162", + "user_type": "student", + "full_name": "Roque Tellez Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20544, + "fields": { + "user": null, + "account_number": "42206117", + "user_type": "student", + "full_name": "Ayala Almaraz Jonathan Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20545, + "fields": { + "user": null, + "account_number": "42206109", + "user_type": "student", + "full_name": "Moreno Granados Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20546, + "fields": { + "user": null, + "account_number": "42206058", + "user_type": "student", + "full_name": "Rivera Ceron Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20547, + "fields": { + "user": null, + "account_number": "42206039", + "user_type": "student", + "full_name": "Cortes Sandoval Jose Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20548, + "fields": { + "user": null, + "account_number": "42205993", + "user_type": "student", + "full_name": "Avalos Castro Cesar Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20549, + "fields": { + "user": null, + "account_number": "42205924", + "user_type": "student", + "full_name": "Paz Morales Gloria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20550, + "fields": { + "user": null, + "account_number": "42205918", + "user_type": "student", + "full_name": "Mondragon Gutierrez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20551, + "fields": { + "user": null, + "account_number": "42205899", + "user_type": "student", + "full_name": "Noyola Garcia Jaaziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20552, + "fields": { + "user": null, + "account_number": "42205856", + "user_type": "student", + "full_name": "Juarez Clemente Karla Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20553, + "fields": { + "user": null, + "account_number": "42205728", + "user_type": "student", + "full_name": "Juan Lopez Iris Mabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20554, + "fields": { + "user": null, + "account_number": "42205678", + "user_type": "student", + "full_name": "Mendiola Cruz Hector Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20555, + "fields": { + "user": null, + "account_number": "42205677", + "user_type": "student", + "full_name": "Rodas Lozada Yael Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20556, + "fields": { + "user": null, + "account_number": "42205566", + "user_type": "student", + "full_name": "Baeza Guerrero Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20557, + "fields": { + "user": null, + "account_number": "42205558", + "user_type": "student", + "full_name": "Castillo Maldonado Brandom Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20558, + "fields": { + "user": null, + "account_number": "42205500", + "user_type": "student", + "full_name": "Cruz Vazquez Levi Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20559, + "fields": { + "user": null, + "account_number": "42205439", + "user_type": "student", + "full_name": "Hernandez Plaza Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20560, + "fields": { + "user": null, + "account_number": "42205331", + "user_type": "student", + "full_name": "Huerta Rodriguez Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20561, + "fields": { + "user": null, + "account_number": "42205255", + "user_type": "student", + "full_name": "Ortega Gonzalez Kevin Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20562, + "fields": { + "user": null, + "account_number": "42205228", + "user_type": "student", + "full_name": "Rinconcillo Gomez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20563, + "fields": { + "user": null, + "account_number": "42205188", + "user_type": "student", + "full_name": "Rubio Sanchez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20564, + "fields": { + "user": null, + "account_number": "42204907", + "user_type": "student", + "full_name": "Rojas Castellanos Ramiro Jehu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20565, + "fields": { + "user": null, + "account_number": "42204906", + "user_type": "student", + "full_name": "Valle Rivas Joan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20566, + "fields": { + "user": null, + "account_number": "42204834", + "user_type": "student", + "full_name": "Diaz Dorantes David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20567, + "fields": { + "user": null, + "account_number": "42204707", + "user_type": "student", + "full_name": "Carcamo Ahuacateco Jose Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20568, + "fields": { + "user": null, + "account_number": "42204642", + "user_type": "student", + "full_name": "Garcia Chavelas Bryan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20569, + "fields": { + "user": null, + "account_number": "42204607", + "user_type": "student", + "full_name": "Pantoja Galmiche Angel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20570, + "fields": { + "user": null, + "account_number": "42204445", + "user_type": "student", + "full_name": "Ramos Chavez Juan Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20571, + "fields": { + "user": null, + "account_number": "42204309", + "user_type": "student", + "full_name": "Echegaray Cruz Christian Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20572, + "fields": { + "user": null, + "account_number": "42204273", + "user_type": "student", + "full_name": "Sanchez Romero Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20573, + "fields": { + "user": null, + "account_number": "42204206", + "user_type": "student", + "full_name": "Millan Alanis Pablo Sabino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20574, + "fields": { + "user": null, + "account_number": "42204187", + "user_type": "student", + "full_name": "Gonzalez Mendez Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20575, + "fields": { + "user": null, + "account_number": "42204165", + "user_type": "student", + "full_name": "Fajardo Barraza Ana Paloma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20576, + "fields": { + "user": null, + "account_number": "42204145", + "user_type": "student", + "full_name": "Peña Olmos Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20577, + "fields": { + "user": null, + "account_number": "42204080", + "user_type": "student", + "full_name": "Ortiz Mendez Abril Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20578, + "fields": { + "user": null, + "account_number": "42203996", + "user_type": "student", + "full_name": "Mejia Juarez Isaac Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20579, + "fields": { + "user": null, + "account_number": "42203956", + "user_type": "student", + "full_name": "Gutierrez Monreal Maria Aurora" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20580, + "fields": { + "user": null, + "account_number": "42203703", + "user_type": "student", + "full_name": "Vazquez Reyes Erika" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20581, + "fields": { + "user": null, + "account_number": "42203649", + "user_type": "student", + "full_name": "Correa Ortiz Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20582, + "fields": { + "user": null, + "account_number": "42203478", + "user_type": "student", + "full_name": "Alvarez Gonzalez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20583, + "fields": { + "user": null, + "account_number": "42203476", + "user_type": "student", + "full_name": "Arriaga Colin Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20584, + "fields": { + "user": null, + "account_number": "42203427", + "user_type": "student", + "full_name": "Pulido Alcudia Dickson Brad" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20585, + "fields": { + "user": null, + "account_number": "42203286", + "user_type": "student", + "full_name": "Garcia Nazario Carlos Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20586, + "fields": { + "user": null, + "account_number": "42203279", + "user_type": "student", + "full_name": "De La Cruz Salome Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20587, + "fields": { + "user": null, + "account_number": "42203240", + "user_type": "student", + "full_name": "Otero Ortiz Monica Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20588, + "fields": { + "user": null, + "account_number": "42203099", + "user_type": "student", + "full_name": "Jimenez Carbajal Eduardo Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20589, + "fields": { + "user": null, + "account_number": "42202820", + "user_type": "student", + "full_name": "Orduña Esparza Gerardo Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20590, + "fields": { + "user": null, + "account_number": "42202638", + "user_type": "student", + "full_name": "Figueroa Gutierrez Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20591, + "fields": { + "user": null, + "account_number": "42202534", + "user_type": "student", + "full_name": "Rodriguez Chavez Iñaki" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20592, + "fields": { + "user": null, + "account_number": "42202411", + "user_type": "student", + "full_name": "Sosa Vargas Araceli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20593, + "fields": { + "user": null, + "account_number": "42202308", + "user_type": "student", + "full_name": "Nolasco Cruz Sheyla Magaly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20594, + "fields": { + "user": null, + "account_number": "42202082", + "user_type": "student", + "full_name": "Merida Arangure Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20595, + "fields": { + "user": null, + "account_number": "42202072", + "user_type": "student", + "full_name": "Martinez Garcia Octavio Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20596, + "fields": { + "user": null, + "account_number": "42201941", + "user_type": "student", + "full_name": "Ordiano Martinez Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20597, + "fields": { + "user": null, + "account_number": "42201864", + "user_type": "student", + "full_name": "Olivier Gonzalez Luis Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20598, + "fields": { + "user": null, + "account_number": "42201709", + "user_type": "student", + "full_name": "Sarabia Garcia Meredith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20599, + "fields": { + "user": null, + "account_number": "42201597", + "user_type": "student", + "full_name": "Quintanar Izaguirre Esdras Adoniram" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20600, + "fields": { + "user": null, + "account_number": "42201521", + "user_type": "student", + "full_name": "Castillo Godinez Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20601, + "fields": { + "user": null, + "account_number": "42201491", + "user_type": "student", + "full_name": "Barcenas Caballero Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20602, + "fields": { + "user": null, + "account_number": "42201471", + "user_type": "student", + "full_name": "Hernandez Centeno Hector Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20603, + "fields": { + "user": null, + "account_number": "42201455", + "user_type": "student", + "full_name": "Calderon Fuentes Neide Shany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20604, + "fields": { + "user": null, + "account_number": "42201395", + "user_type": "student", + "full_name": "Perez Juarez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20605, + "fields": { + "user": null, + "account_number": "42201256", + "user_type": "student", + "full_name": "Rafael Garcia Hassem" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20606, + "fields": { + "user": null, + "account_number": "42201071", + "user_type": "student", + "full_name": "Cruz Gonzalez Jair Joaquin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20607, + "fields": { + "user": null, + "account_number": "42201070", + "user_type": "student", + "full_name": "Rivero Lopez Jhoana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20608, + "fields": { + "user": null, + "account_number": "42200979", + "user_type": "student", + "full_name": "Isidro Luna Diego Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20609, + "fields": { + "user": null, + "account_number": "42200960", + "user_type": "student", + "full_name": "Mora Bonilla Alejandro Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20610, + "fields": { + "user": null, + "account_number": "42200958", + "user_type": "student", + "full_name": "Covarrubias Peña Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20611, + "fields": { + "user": null, + "account_number": "42200952", + "user_type": "student", + "full_name": "Aguilar Garcia Juliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20612, + "fields": { + "user": null, + "account_number": "42200948", + "user_type": "student", + "full_name": "Lopez Villarreal Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20613, + "fields": { + "user": null, + "account_number": "42200877", + "user_type": "student", + "full_name": "Grajeda Peregrino Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20614, + "fields": { + "user": null, + "account_number": "42200845", + "user_type": "student", + "full_name": "Alonso Lopez Carlos Arnulfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20615, + "fields": { + "user": null, + "account_number": "42200776", + "user_type": "student", + "full_name": "Toro Salgado Karla Yadhira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20616, + "fields": { + "user": null, + "account_number": "42200726", + "user_type": "student", + "full_name": "Hernandez Gonzalez Yanet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20617, + "fields": { + "user": null, + "account_number": "42200671", + "user_type": "student", + "full_name": "Sanchez Sanchez Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20618, + "fields": { + "user": null, + "account_number": "42200584", + "user_type": "student", + "full_name": "Vilchis Caceres Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20619, + "fields": { + "user": null, + "account_number": "42200541", + "user_type": "student", + "full_name": "Barrientos Martinez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20620, + "fields": { + "user": null, + "account_number": "42200449", + "user_type": "student", + "full_name": "Arcos Rojas Baruc Jael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20621, + "fields": { + "user": null, + "account_number": "42200097", + "user_type": "student", + "full_name": "Mejia Trejo Hazel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20622, + "fields": { + "user": null, + "account_number": "42200040", + "user_type": "student", + "full_name": "Garcia Retana Alba Sughey" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20623, + "fields": { + "user": null, + "account_number": "42113835", + "user_type": "student", + "full_name": "Jimenez Carrisoza Alejandro Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20624, + "fields": { + "user": null, + "account_number": "42014717", + "user_type": "student", + "full_name": "Tejeda Diaz Erick Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20625, + "fields": { + "user": null, + "account_number": "42009818", + "user_type": "student", + "full_name": "Gutierrez Flores Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20626, + "fields": { + "user": null, + "account_number": "42009776", + "user_type": "student", + "full_name": "Sindo Alberto Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20627, + "fields": { + "user": null, + "account_number": "42008817", + "user_type": "student", + "full_name": "Ortega Miranda Dulce Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20628, + "fields": { + "user": null, + "account_number": "41806844", + "user_type": "student", + "full_name": "De Jesus Perez Ulises Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20629, + "fields": { + "user": null, + "account_number": "40811285", + "user_type": "student", + "full_name": "Aviles Ramirez Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20630, + "fields": { + "user": null, + "account_number": "40507711", + "user_type": "student", + "full_name": "Canseco Olivera Alvaro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20631, + "fields": { + "user": null, + "account_number": "32069485", + "user_type": "student", + "full_name": "Garcia Prado Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20632, + "fields": { + "user": null, + "account_number": "31974778", + "user_type": "student", + "full_name": "Amador Espino Daniela Yosajandy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20633, + "fields": { + "user": null, + "account_number": "31963985", + "user_type": "student", + "full_name": "Diaz Fuentes Jorge Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20634, + "fields": { + "user": null, + "account_number": "31933469", + "user_type": "student", + "full_name": "Barrios Andrade Victor Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20635, + "fields": { + "user": null, + "account_number": "31933406", + "user_type": "student", + "full_name": "Contti Jacinto Susana Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20636, + "fields": { + "user": null, + "account_number": "31933141", + "user_type": "student", + "full_name": "Gutierrez Segura Jhonatan Lemuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20637, + "fields": { + "user": null, + "account_number": "31931171", + "user_type": "student", + "full_name": "Morales Castillo Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20638, + "fields": { + "user": null, + "account_number": "31931124", + "user_type": "student", + "full_name": "Acatitlan Sanjuan Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20639, + "fields": { + "user": null, + "account_number": "31929571", + "user_type": "student", + "full_name": "Hernandez Avila Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20640, + "fields": { + "user": null, + "account_number": "31929301", + "user_type": "student", + "full_name": "Rojas Ventura Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20641, + "fields": { + "user": null, + "account_number": "31929294", + "user_type": "student", + "full_name": "Ortiz Ponce Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20642, + "fields": { + "user": null, + "account_number": "31929168", + "user_type": "student", + "full_name": "Martinez Arvizu Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20643, + "fields": { + "user": null, + "account_number": "31928961", + "user_type": "student", + "full_name": "Zamano Campos Irving Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20644, + "fields": { + "user": null, + "account_number": "31928899", + "user_type": "student", + "full_name": "Hernandez Alvarado Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20645, + "fields": { + "user": null, + "account_number": "31928805", + "user_type": "student", + "full_name": "Aguilar Sanchez Diego Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20646, + "fields": { + "user": null, + "account_number": "31928418", + "user_type": "student", + "full_name": "Sanchez Hernandez Hector Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20647, + "fields": { + "user": null, + "account_number": "31927795", + "user_type": "student", + "full_name": "Landaverde Oropeza Rodrigo Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20648, + "fields": { + "user": null, + "account_number": "31927255", + "user_type": "student", + "full_name": "Lopez Diaz Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20649, + "fields": { + "user": null, + "account_number": "31926737", + "user_type": "student", + "full_name": "Mould Orozco Jon Paul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20650, + "fields": { + "user": null, + "account_number": "31926529", + "user_type": "student", + "full_name": "Martinez Cruz Yaek Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20651, + "fields": { + "user": null, + "account_number": "31926407", + "user_type": "student", + "full_name": "Vazquez Juarez Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20652, + "fields": { + "user": null, + "account_number": "31926305", + "user_type": "student", + "full_name": "Pinto Velazquez Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20653, + "fields": { + "user": null, + "account_number": "31925939", + "user_type": "student", + "full_name": "De Anda Delgado Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20654, + "fields": { + "user": null, + "account_number": "31924914", + "user_type": "student", + "full_name": "Vega Olvera Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20655, + "fields": { + "user": null, + "account_number": "31924250", + "user_type": "student", + "full_name": "Trujillo Reyes Eric" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20656, + "fields": { + "user": null, + "account_number": "31923353", + "user_type": "student", + "full_name": "Mata Reyes Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20657, + "fields": { + "user": null, + "account_number": "31922205", + "user_type": "student", + "full_name": "Santillan Martinez Danna Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20658, + "fields": { + "user": null, + "account_number": "31921684", + "user_type": "student", + "full_name": "Resendiz Campos Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20659, + "fields": { + "user": null, + "account_number": "31921016", + "user_type": "student", + "full_name": "Hernandez Ramirez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20660, + "fields": { + "user": null, + "account_number": "31920646", + "user_type": "student", + "full_name": "Van Steemberghe Lujan Kristoffer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20661, + "fields": { + "user": null, + "account_number": "31920475", + "user_type": "student", + "full_name": "Alvarez Delgado Joselin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20662, + "fields": { + "user": null, + "account_number": "31920238", + "user_type": "student", + "full_name": "Velazquez Cruz Jose Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20663, + "fields": { + "user": null, + "account_number": "31920223", + "user_type": "student", + "full_name": "Tapia Aguilar Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20664, + "fields": { + "user": null, + "account_number": "31920068", + "user_type": "student", + "full_name": "Duran Sanchez Pablo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20665, + "fields": { + "user": null, + "account_number": "31920058", + "user_type": "student", + "full_name": "Armas Hernandez Eduardo Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20666, + "fields": { + "user": null, + "account_number": "31918997", + "user_type": "student", + "full_name": "Vargas Nicolas Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20667, + "fields": { + "user": null, + "account_number": "31917923", + "user_type": "student", + "full_name": "Hernandez Hernandez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20668, + "fields": { + "user": null, + "account_number": "31917393", + "user_type": "student", + "full_name": "Burciaga Piña Erick Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20669, + "fields": { + "user": null, + "account_number": "31916636", + "user_type": "student", + "full_name": "Rodriguez Peña Atziri Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20670, + "fields": { + "user": null, + "account_number": "31915961", + "user_type": "student", + "full_name": "Campos Hernandez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20671, + "fields": { + "user": null, + "account_number": "31915547", + "user_type": "student", + "full_name": "Romero Galvez Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20672, + "fields": { + "user": null, + "account_number": "31914975", + "user_type": "student", + "full_name": "Saldaña Quiroz Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20673, + "fields": { + "user": null, + "account_number": "31914157", + "user_type": "student", + "full_name": "Islas Cruz Imatiuh" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20674, + "fields": { + "user": null, + "account_number": "31914143", + "user_type": "student", + "full_name": "Clemente Galicia Mario Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20675, + "fields": { + "user": null, + "account_number": "31913657", + "user_type": "student", + "full_name": "Duran Zamarripa Brenda Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20676, + "fields": { + "user": null, + "account_number": "31913554", + "user_type": "student", + "full_name": "Avila Moreno Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20677, + "fields": { + "user": null, + "account_number": "31913529", + "user_type": "student", + "full_name": "Almaraz Mavil Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20678, + "fields": { + "user": null, + "account_number": "31913446", + "user_type": "student", + "full_name": "Arvizu Hernandez Andre" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20679, + "fields": { + "user": null, + "account_number": "31913294", + "user_type": "student", + "full_name": "Pineda Cabrera Yatziri" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20680, + "fields": { + "user": null, + "account_number": "31913252", + "user_type": "student", + "full_name": "Bautista Gaytan Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20681, + "fields": { + "user": null, + "account_number": "31913187", + "user_type": "student", + "full_name": "Diaz Jacinto Aldo Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20682, + "fields": { + "user": null, + "account_number": "31912963", + "user_type": "student", + "full_name": "Torres Torres Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20683, + "fields": { + "user": null, + "account_number": "31912841", + "user_type": "student", + "full_name": "Argueta Avila Laila Akari" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20684, + "fields": { + "user": null, + "account_number": "31912460", + "user_type": "student", + "full_name": "Ruiz Juarez Bruno" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20685, + "fields": { + "user": null, + "account_number": "31912338", + "user_type": "student", + "full_name": "Oropeza Solano Victor Damaso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20686, + "fields": { + "user": null, + "account_number": "31912161", + "user_type": "student", + "full_name": "Lomeli Perez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20687, + "fields": { + "user": null, + "account_number": "31911271", + "user_type": "student", + "full_name": "Bolaños Rodriguez Lina Milagros" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20688, + "fields": { + "user": null, + "account_number": "31910418", + "user_type": "student", + "full_name": "Cortes Rosas Ximena Yamile" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20689, + "fields": { + "user": null, + "account_number": "31908499", + "user_type": "student", + "full_name": "Garcia Roque Andres Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20690, + "fields": { + "user": null, + "account_number": "31907929", + "user_type": "student", + "full_name": "Palmerin Guzman Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20691, + "fields": { + "user": null, + "account_number": "31906465", + "user_type": "student", + "full_name": "Gomez Rangel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20692, + "fields": { + "user": null, + "account_number": "31906337", + "user_type": "student", + "full_name": "Cortes Dieguez Octavio Hernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20693, + "fields": { + "user": null, + "account_number": "31905667", + "user_type": "student", + "full_name": "Ramirez Rodriguez Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20694, + "fields": { + "user": null, + "account_number": "31905556", + "user_type": "student", + "full_name": "Zuñiga Sanchez Adolfo Abelino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20695, + "fields": { + "user": null, + "account_number": "31904312", + "user_type": "student", + "full_name": "Ruiz Vidal Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20696, + "fields": { + "user": null, + "account_number": "31904214", + "user_type": "student", + "full_name": "Lopez Robles Jimena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20697, + "fields": { + "user": null, + "account_number": "31903700", + "user_type": "student", + "full_name": "Gutierrez Hernandez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20698, + "fields": { + "user": null, + "account_number": "31903186", + "user_type": "student", + "full_name": "Martinez Mendoza Jiovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20699, + "fields": { + "user": null, + "account_number": "31902541", + "user_type": "student", + "full_name": "Garcia Hernandez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20700, + "fields": { + "user": null, + "account_number": "31902479", + "user_type": "student", + "full_name": "Camargo Badillo Luis Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20701, + "fields": { + "user": null, + "account_number": "31901201", + "user_type": "student", + "full_name": "Bernal Martinez Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20702, + "fields": { + "user": null, + "account_number": "31901044", + "user_type": "student", + "full_name": "Estrada Ramirez España Camila Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20703, + "fields": { + "user": null, + "account_number": "31900976", + "user_type": "student", + "full_name": "Gonzalez Gonzalez Luis Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20704, + "fields": { + "user": null, + "account_number": "31900416", + "user_type": "student", + "full_name": "Garcia Quevedo Julianne Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20705, + "fields": { + "user": null, + "account_number": "31900351", + "user_type": "student", + "full_name": "Colin Ramirez Mariana Desire" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20706, + "fields": { + "user": null, + "account_number": "31900072", + "user_type": "student", + "full_name": "Canchola Gomez Cristian Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20707, + "fields": { + "user": null, + "account_number": "31865639", + "user_type": "student", + "full_name": "Moreno Martinez Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20708, + "fields": { + "user": null, + "account_number": "31861850", + "user_type": "student", + "full_name": "Diaz Fuentes Maricruz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20709, + "fields": { + "user": null, + "account_number": "31856527", + "user_type": "student", + "full_name": "Ramirez Maza Luis Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20710, + "fields": { + "user": null, + "account_number": "31855542", + "user_type": "student", + "full_name": "Rubio Carrera Rodrigo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20711, + "fields": { + "user": null, + "account_number": "31855057", + "user_type": "student", + "full_name": "Mejia Jacobo Ximena Juana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20712, + "fields": { + "user": null, + "account_number": "31836351", + "user_type": "student", + "full_name": "Cruz Abrajan Sergio Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20713, + "fields": { + "user": null, + "account_number": "31836302", + "user_type": "student", + "full_name": "German Vega Dana Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20714, + "fields": { + "user": null, + "account_number": "31835613", + "user_type": "student", + "full_name": "Ocampo Hernandez Abril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20715, + "fields": { + "user": null, + "account_number": "31835237", + "user_type": "student", + "full_name": "Mendoza Hernandez Daniela Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20716, + "fields": { + "user": null, + "account_number": "31835226", + "user_type": "student", + "full_name": "Gonzalez Perez Gael Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20717, + "fields": { + "user": null, + "account_number": "31833750", + "user_type": "student", + "full_name": "Rodriguez Murillo Carlos Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20718, + "fields": { + "user": null, + "account_number": "31833536", + "user_type": "student", + "full_name": "Palacios Bautista Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20719, + "fields": { + "user": null, + "account_number": "31833167", + "user_type": "student", + "full_name": "Perez Lopez Zaira Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20720, + "fields": { + "user": null, + "account_number": "31829138", + "user_type": "student", + "full_name": "Rodriguez Perez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20721, + "fields": { + "user": null, + "account_number": "31828981", + "user_type": "student", + "full_name": "Lopez Garcia Miguel Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20722, + "fields": { + "user": null, + "account_number": "31828538", + "user_type": "student", + "full_name": "Garcia Rodriguez Lazaro Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20723, + "fields": { + "user": null, + "account_number": "31827293", + "user_type": "student", + "full_name": "Garcia Montejo Andre Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20724, + "fields": { + "user": null, + "account_number": "31826272", + "user_type": "student", + "full_name": "Ledezma Lopez Victor Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20725, + "fields": { + "user": null, + "account_number": "31824269", + "user_type": "student", + "full_name": "Hernandez Espindola Amayrani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20726, + "fields": { + "user": null, + "account_number": "31821868", + "user_type": "student", + "full_name": "Mendoza Bautista Julio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20727, + "fields": { + "user": null, + "account_number": "31820155", + "user_type": "student", + "full_name": "Rodriguez Espinoza Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20728, + "fields": { + "user": null, + "account_number": "31819914", + "user_type": "student", + "full_name": "Rodriguez Ocampo Antonio De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20729, + "fields": { + "user": null, + "account_number": "31819775", + "user_type": "student", + "full_name": "Zavala Fandiño Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20730, + "fields": { + "user": null, + "account_number": "31819230", + "user_type": "student", + "full_name": "Hernandez Guerrero Kevin Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20731, + "fields": { + "user": null, + "account_number": "31818835", + "user_type": "student", + "full_name": "Perez Olivares Edgar Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20732, + "fields": { + "user": null, + "account_number": "31818177", + "user_type": "student", + "full_name": "Baez Villanueva Mauricio Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20733, + "fields": { + "user": null, + "account_number": "31818067", + "user_type": "student", + "full_name": "Contreras Segura Ricardo Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20734, + "fields": { + "user": null, + "account_number": "31816930", + "user_type": "student", + "full_name": "Estrada Hernandez Lloyd David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20735, + "fields": { + "user": null, + "account_number": "31815614", + "user_type": "student", + "full_name": "Barrita Ramirez Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20736, + "fields": { + "user": null, + "account_number": "31815432", + "user_type": "student", + "full_name": "Romero Olvera Angel Ezequiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20737, + "fields": { + "user": null, + "account_number": "31815206", + "user_type": "student", + "full_name": "Trevilla Guisa Marcos Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20738, + "fields": { + "user": null, + "account_number": "31814355", + "user_type": "student", + "full_name": "Flores Lopez Dante Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20739, + "fields": { + "user": null, + "account_number": "31813816", + "user_type": "student", + "full_name": "Fuentes Flores Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20740, + "fields": { + "user": null, + "account_number": "31811408", + "user_type": "student", + "full_name": "Vazquez Mora Kenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20741, + "fields": { + "user": null, + "account_number": "31810160", + "user_type": "student", + "full_name": "Ceron Chavez Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20742, + "fields": { + "user": null, + "account_number": "31809673", + "user_type": "student", + "full_name": "Ramirez Garcia David Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20743, + "fields": { + "user": null, + "account_number": "31807385", + "user_type": "student", + "full_name": "Cortes Rios Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20744, + "fields": { + "user": null, + "account_number": "31806853", + "user_type": "student", + "full_name": "Castillo Bazan Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20745, + "fields": { + "user": null, + "account_number": "31805486", + "user_type": "student", + "full_name": "Banda Ordoñez Camila" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20746, + "fields": { + "user": null, + "account_number": "31804421", + "user_type": "student", + "full_name": "Bernal Lazcano Jubal Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20747, + "fields": { + "user": null, + "account_number": "31801757", + "user_type": "student", + "full_name": "Munguia Acevedo Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20748, + "fields": { + "user": null, + "account_number": "31801613", + "user_type": "student", + "full_name": "Carranza Mendoza Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20749, + "fields": { + "user": null, + "account_number": "31801431", + "user_type": "student", + "full_name": "Patiño Bernal Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20750, + "fields": { + "user": null, + "account_number": "31800840", + "user_type": "student", + "full_name": "Martinez Escamilla Fernando Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20751, + "fields": { + "user": null, + "account_number": "31800532", + "user_type": "student", + "full_name": "Alva Morlan Juan Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20752, + "fields": { + "user": null, + "account_number": "31772843", + "user_type": "student", + "full_name": "Pastelin Cruz Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20753, + "fields": { + "user": null, + "account_number": "31762601", + "user_type": "student", + "full_name": "Garcia Aviles Mauricio David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20754, + "fields": { + "user": null, + "account_number": "31735960", + "user_type": "student", + "full_name": "Villa Nieto David Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20755, + "fields": { + "user": null, + "account_number": "31733279", + "user_type": "student", + "full_name": "Urban Galvan Denisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20756, + "fields": { + "user": null, + "account_number": "31731432", + "user_type": "student", + "full_name": "Deciga Medina Uriel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20757, + "fields": { + "user": null, + "account_number": "31728935", + "user_type": "student", + "full_name": "Trinidad Ascencio Jesus Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20758, + "fields": { + "user": null, + "account_number": "31723783", + "user_type": "student", + "full_name": "Leon Campos Maria Jimena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20759, + "fields": { + "user": null, + "account_number": "31722873", + "user_type": "student", + "full_name": "Bernal Cruz Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20760, + "fields": { + "user": null, + "account_number": "31720814", + "user_type": "student", + "full_name": "Felipe Martinez Victor Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20761, + "fields": { + "user": null, + "account_number": "31720127", + "user_type": "student", + "full_name": "Martinez Arana Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20762, + "fields": { + "user": null, + "account_number": "31713813", + "user_type": "student", + "full_name": "Bolaños Benitez Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20763, + "fields": { + "user": null, + "account_number": "31706085", + "user_type": "student", + "full_name": "Garcia Martinez Gustavo Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20764, + "fields": { + "user": null, + "account_number": "31703830", + "user_type": "student", + "full_name": "Escalante Leon Diego Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20765, + "fields": { + "user": null, + "account_number": "31701700", + "user_type": "student", + "full_name": "Flores Yanes Francisco Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20766, + "fields": { + "user": null, + "account_number": "31624410", + "user_type": "student", + "full_name": "Soto Gutierrez Alexis Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20767, + "fields": { + "user": null, + "account_number": "31621090", + "user_type": "student", + "full_name": "Hernandez Torres Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20768, + "fields": { + "user": null, + "account_number": "31619274", + "user_type": "student", + "full_name": "Wu Darong" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20769, + "fields": { + "user": null, + "account_number": "31618050", + "user_type": "student", + "full_name": "Juarez Cardenas Aldo Alejandro Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20770, + "fields": { + "user": null, + "account_number": "31615227", + "user_type": "student", + "full_name": "Martinez Barrales Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20771, + "fields": { + "user": null, + "account_number": "31609685", + "user_type": "student", + "full_name": "Navarro Perez Alison Abril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20772, + "fields": { + "user": null, + "account_number": "31606048", + "user_type": "student", + "full_name": "Hernandez Aparicio Hugo Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20773, + "fields": { + "user": null, + "account_number": "31603076", + "user_type": "student", + "full_name": "Carbajal Mejia Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20774, + "fields": { + "user": null, + "account_number": "31601965", + "user_type": "student", + "full_name": "Santiago Estrada Iacandi Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20775, + "fields": { + "user": null, + "account_number": "31601773", + "user_type": "student", + "full_name": "Avendaño Zarza Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20776, + "fields": { + "user": null, + "account_number": "31600062", + "user_type": "student", + "full_name": "Aparicio Saenz Alexis Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20777, + "fields": { + "user": null, + "account_number": "31533757", + "user_type": "student", + "full_name": "Molina Velasco Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20778, + "fields": { + "user": null, + "account_number": "31531336", + "user_type": "student", + "full_name": "Garcia Estrada Antonio Florencio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20779, + "fields": { + "user": null, + "account_number": "31528607", + "user_type": "student", + "full_name": "Benavides Uribe Irma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20780, + "fields": { + "user": null, + "account_number": "31528089", + "user_type": "student", + "full_name": "Morales Rodriguez Aldo Ali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20781, + "fields": { + "user": null, + "account_number": "31527060", + "user_type": "student", + "full_name": "Villegas Bravo Carlos Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20782, + "fields": { + "user": null, + "account_number": "31524725", + "user_type": "student", + "full_name": "Alcantara Mendez Victor De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20783, + "fields": { + "user": null, + "account_number": "31518184", + "user_type": "student", + "full_name": "Lepe Carcamo Christopher Einar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20784, + "fields": { + "user": null, + "account_number": "31517551", + "user_type": "student", + "full_name": "Gonzalez Uscanga Hector Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20785, + "fields": { + "user": null, + "account_number": "31517434", + "user_type": "student", + "full_name": "Garcia Hernandez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20786, + "fields": { + "user": null, + "account_number": "31511614", + "user_type": "student", + "full_name": "Aguilar Cabazo Carlos Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20787, + "fields": { + "user": null, + "account_number": "31504903", + "user_type": "student", + "full_name": "Muñoz Segura Victor Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20788, + "fields": { + "user": null, + "account_number": "31468714", + "user_type": "student", + "full_name": "Cruz Jasso Laura Odette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20789, + "fields": { + "user": null, + "account_number": "31455955", + "user_type": "student", + "full_name": "Pantoja Yescas Karla Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20790, + "fields": { + "user": null, + "account_number": "31430408", + "user_type": "student", + "full_name": "Goudge Moncada Marian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20791, + "fields": { + "user": null, + "account_number": "31427870", + "user_type": "student", + "full_name": "Giblas Rodriguez Eduardo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20792, + "fields": { + "user": null, + "account_number": "31423929", + "user_type": "student", + "full_name": "Medel Bravo Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20793, + "fields": { + "user": null, + "account_number": "31415898", + "user_type": "student", + "full_name": "Gonzalez Ramirez Gonzalo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20794, + "fields": { + "user": null, + "account_number": "31404770", + "user_type": "student", + "full_name": "Cruz Beltran Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20795, + "fields": { + "user": null, + "account_number": "31402741", + "user_type": "student", + "full_name": "Cuevas Rivera Dyter Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20796, + "fields": { + "user": null, + "account_number": "31328744", + "user_type": "student", + "full_name": "Salazar Barcenas Joseph Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20797, + "fields": { + "user": null, + "account_number": "31327774", + "user_type": "student", + "full_name": "Robledo Romero Hugo Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20798, + "fields": { + "user": null, + "account_number": "31324031", + "user_type": "student", + "full_name": "Chavez Castillo Brian Alain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20799, + "fields": { + "user": null, + "account_number": "31322774", + "user_type": "student", + "full_name": "Valdes Rodriguez Oscar Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20800, + "fields": { + "user": null, + "account_number": "31320006", + "user_type": "student", + "full_name": "Guevara Vazquez Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20801, + "fields": { + "user": null, + "account_number": "31309889", + "user_type": "student", + "full_name": "Sandoval Guerrero Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20802, + "fields": { + "user": null, + "account_number": "31306829", + "user_type": "student", + "full_name": "Santamaria Vallejo Yunuet Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20803, + "fields": { + "user": null, + "account_number": "31223909", + "user_type": "student", + "full_name": "Flores Galvan Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20804, + "fields": { + "user": null, + "account_number": "31214901", + "user_type": "student", + "full_name": "Villedas Melendez Esteban Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20805, + "fields": { + "user": null, + "account_number": "31130729", + "user_type": "student", + "full_name": "Ortega De Los Santos Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20806, + "fields": { + "user": null, + "account_number": "31104939", + "user_type": "student", + "full_name": "Rodriguez Tapia Raquel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20807, + "fields": { + "user": null, + "account_number": "31010423", + "user_type": "student", + "full_name": "Espinosa Ramirez Carlos Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20808, + "fields": { + "user": null, + "account_number": "30903178", + "user_type": "student", + "full_name": "Hernandez Velasco Yessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20809, + "fields": { + "user": null, + "account_number": "30816351", + "user_type": "student", + "full_name": "Gonzalez Hernandez Evelyn Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20810, + "fields": { + "user": null, + "account_number": "30627948", + "user_type": "student", + "full_name": "Grande Navarrete Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20811, + "fields": { + "user": null, + "account_number": "30312022", + "user_type": "student", + "full_name": "Martinez Basurto Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20812, + "fields": { + "user": null, + "account_number": "30087793", + "user_type": "student", + "full_name": "Hernandez Ramon Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20813, + "fields": { + "user": null, + "account_number": "07945262", + "user_type": "student", + "full_name": "Espinoza Tellez Magdalena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20814, + "fields": { + "user": null, + "account_number": "42149074", + "user_type": "student", + "full_name": "Fernandez Reyes Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20815, + "fields": { + "user": null, + "account_number": "42124054", + "user_type": "student", + "full_name": "Ceja Perez Hugo Gonzalo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20816, + "fields": { + "user": null, + "account_number": "42124031", + "user_type": "student", + "full_name": "Cortes Mejia Kaleb" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20817, + "fields": { + "user": null, + "account_number": "42112667", + "user_type": "student", + "full_name": "Jimenez Rosas Donovan Jhosete" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20818, + "fields": { + "user": null, + "account_number": "42112555", + "user_type": "student", + "full_name": "Maldonado Acuða Eduardo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20819, + "fields": { + "user": null, + "account_number": "42112540", + "user_type": "student", + "full_name": "Sanchez Salazar Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20820, + "fields": { + "user": null, + "account_number": "42112487", + "user_type": "student", + "full_name": "Miramontes Ordoðez Luis Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20821, + "fields": { + "user": null, + "account_number": "42112382", + "user_type": "student", + "full_name": "Pallares Hernandez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20822, + "fields": { + "user": null, + "account_number": "42112368", + "user_type": "student", + "full_name": "Garcia Guerrero Germain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20823, + "fields": { + "user": null, + "account_number": "42112320", + "user_type": "student", + "full_name": "Xalteno Aguilar Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20824, + "fields": { + "user": null, + "account_number": "42112264", + "user_type": "student", + "full_name": "Lopez Vargas Luis Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20825, + "fields": { + "user": null, + "account_number": "42112256", + "user_type": "student", + "full_name": "Jimenez Diaz Oscar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20826, + "fields": { + "user": null, + "account_number": "42112222", + "user_type": "student", + "full_name": "Bautista Velez Luis Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20827, + "fields": { + "user": null, + "account_number": "42112219", + "user_type": "student", + "full_name": "Gonzalez Rodriguez Beatriz Yunuen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20828, + "fields": { + "user": null, + "account_number": "42112207", + "user_type": "student", + "full_name": "Bautista Barajas Aura Judith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20829, + "fields": { + "user": null, + "account_number": "42112201", + "user_type": "student", + "full_name": "Zetina Martinez Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20830, + "fields": { + "user": null, + "account_number": "42112139", + "user_type": "student", + "full_name": "Perez Gonzalez Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20831, + "fields": { + "user": null, + "account_number": "42112118", + "user_type": "student", + "full_name": "Cruz Cruz Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20832, + "fields": { + "user": null, + "account_number": "42112112", + "user_type": "student", + "full_name": "Juarez Sanchez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20833, + "fields": { + "user": null, + "account_number": "42112048", + "user_type": "student", + "full_name": "Esquivel Murillo Susana Jahsari" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20834, + "fields": { + "user": null, + "account_number": "42111957", + "user_type": "student", + "full_name": "Flores Gomez Laura Carelly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20835, + "fields": { + "user": null, + "account_number": "42111914", + "user_type": "student", + "full_name": "Rodriguez Garcia Edson Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20836, + "fields": { + "user": null, + "account_number": "42111895", + "user_type": "student", + "full_name": "Perez Avila Martha Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20837, + "fields": { + "user": null, + "account_number": "42111876", + "user_type": "student", + "full_name": "Rivera Galvez Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20838, + "fields": { + "user": null, + "account_number": "42111797", + "user_type": "student", + "full_name": "Rodriguez Barrios Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20839, + "fields": { + "user": null, + "account_number": "42111779", + "user_type": "student", + "full_name": "Amador Acosta Luis Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20840, + "fields": { + "user": null, + "account_number": "42111729", + "user_type": "student", + "full_name": "Figueroa Baldit Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20841, + "fields": { + "user": null, + "account_number": "42111552", + "user_type": "student", + "full_name": "Jimenez Roman Jahaziel Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20842, + "fields": { + "user": null, + "account_number": "42111456", + "user_type": "student", + "full_name": "Toledo Mendez Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20843, + "fields": { + "user": null, + "account_number": "42111440", + "user_type": "student", + "full_name": "Soria Cabrera Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20844, + "fields": { + "user": null, + "account_number": "42111434", + "user_type": "student", + "full_name": "Avila Diaz David Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20845, + "fields": { + "user": null, + "account_number": "42111305", + "user_type": "student", + "full_name": "Gomez Hernandez Omar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20846, + "fields": { + "user": null, + "account_number": "42111233", + "user_type": "student", + "full_name": "Luna Mora Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20847, + "fields": { + "user": null, + "account_number": "42111228", + "user_type": "student", + "full_name": "Guerrero Sanchez Brenda Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20848, + "fields": { + "user": null, + "account_number": "42111189", + "user_type": "student", + "full_name": "Carrasco Manjarrez Sebastian Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20849, + "fields": { + "user": null, + "account_number": "42111025", + "user_type": "student", + "full_name": "Vazquez Vazquez Henry Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20850, + "fields": { + "user": null, + "account_number": "42111001", + "user_type": "student", + "full_name": "Cipres Flores Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20851, + "fields": { + "user": null, + "account_number": "42110841", + "user_type": "student", + "full_name": "Gutierrez Baðos Martha Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20852, + "fields": { + "user": null, + "account_number": "42110835", + "user_type": "student", + "full_name": "Castillo Venegas David Cuauhtemoc" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20853, + "fields": { + "user": null, + "account_number": "42110771", + "user_type": "student", + "full_name": "Hernandez Ortiz Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20854, + "fields": { + "user": null, + "account_number": "42110699", + "user_type": "student", + "full_name": "Florean Oropeza Jose Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20855, + "fields": { + "user": null, + "account_number": "42110685", + "user_type": "student", + "full_name": "Rodriguez Merida Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20856, + "fields": { + "user": null, + "account_number": "42110637", + "user_type": "student", + "full_name": "Cabrera Montero Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20857, + "fields": { + "user": null, + "account_number": "42110426", + "user_type": "student", + "full_name": "Medina Pineda Odin Issay" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20858, + "fields": { + "user": null, + "account_number": "42110360", + "user_type": "student", + "full_name": "Raygoza Islas Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20859, + "fields": { + "user": null, + "account_number": "42110325", + "user_type": "student", + "full_name": "Olvera Lucio Jovany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20860, + "fields": { + "user": null, + "account_number": "42110253", + "user_type": "student", + "full_name": "Quiðones Valles Pamela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20861, + "fields": { + "user": null, + "account_number": "42110251", + "user_type": "student", + "full_name": "Ceron Ramos Angel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20862, + "fields": { + "user": null, + "account_number": "42110225", + "user_type": "student", + "full_name": "Solis Xicale Jesus Eliuth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20863, + "fields": { + "user": null, + "account_number": "42110223", + "user_type": "student", + "full_name": "Ortega Lopez Isaac Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20864, + "fields": { + "user": null, + "account_number": "42110184", + "user_type": "student", + "full_name": "Bustillo Garcia David Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20865, + "fields": { + "user": null, + "account_number": "42110116", + "user_type": "student", + "full_name": "Najera Balderas Jorge Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20866, + "fields": { + "user": null, + "account_number": "42109923", + "user_type": "student", + "full_name": "Gutierrez Cordero Giordano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20867, + "fields": { + "user": null, + "account_number": "42109845", + "user_type": "student", + "full_name": "Arreola Aviða Heathcliff" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20868, + "fields": { + "user": null, + "account_number": "42109842", + "user_type": "student", + "full_name": "Galindo Reza Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20869, + "fields": { + "user": null, + "account_number": "42109827", + "user_type": "student", + "full_name": "Monroy Alarcon Omar Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20870, + "fields": { + "user": null, + "account_number": "42109817", + "user_type": "student", + "full_name": "Garcia Ramirez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20871, + "fields": { + "user": null, + "account_number": "42109797", + "user_type": "student", + "full_name": "Mendoza Solis Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20872, + "fields": { + "user": null, + "account_number": "42109737", + "user_type": "student", + "full_name": "Tirado Luna Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20873, + "fields": { + "user": null, + "account_number": "42109627", + "user_type": "student", + "full_name": "Pallares Hernandez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20874, + "fields": { + "user": null, + "account_number": "42109424", + "user_type": "student", + "full_name": "Campos Brandt Julian De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20875, + "fields": { + "user": null, + "account_number": "42109398", + "user_type": "student", + "full_name": "Beltran Urban Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20876, + "fields": { + "user": null, + "account_number": "42109387", + "user_type": "student", + "full_name": "Arreola Calderon Jesus Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20877, + "fields": { + "user": null, + "account_number": "42109317", + "user_type": "student", + "full_name": "Pelaez Martinez Pablo Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20878, + "fields": { + "user": null, + "account_number": "42109292", + "user_type": "student", + "full_name": "Barron Ramirez Fernando Isahit" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20879, + "fields": { + "user": null, + "account_number": "42109215", + "user_type": "student", + "full_name": "Rosas Camacho Gerson Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20880, + "fields": { + "user": null, + "account_number": "42109214", + "user_type": "student", + "full_name": "Marquez Delgado Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20881, + "fields": { + "user": null, + "account_number": "42109169", + "user_type": "student", + "full_name": "Montes Martinez Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20882, + "fields": { + "user": null, + "account_number": "42109077", + "user_type": "student", + "full_name": "Paniagua Gonzalez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20883, + "fields": { + "user": null, + "account_number": "42108952", + "user_type": "student", + "full_name": "Ramos Flores Angel Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20884, + "fields": { + "user": null, + "account_number": "42108903", + "user_type": "student", + "full_name": "Jimenez Pineda Leydi Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20885, + "fields": { + "user": null, + "account_number": "42108886", + "user_type": "student", + "full_name": "Olalde Mosqueda Vanesa Abril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20886, + "fields": { + "user": null, + "account_number": "42108864", + "user_type": "student", + "full_name": "Escalona Guzman Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20887, + "fields": { + "user": null, + "account_number": "42108860", + "user_type": "student", + "full_name": "Lizarraga Pelayo Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20888, + "fields": { + "user": null, + "account_number": "42108851", + "user_type": "student", + "full_name": "Lopez Camacho Jorge Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20889, + "fields": { + "user": null, + "account_number": "42108736", + "user_type": "student", + "full_name": "Mojica Tapia Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20890, + "fields": { + "user": null, + "account_number": "42108735", + "user_type": "student", + "full_name": "Venegas Sanchez Bryan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20891, + "fields": { + "user": null, + "account_number": "42108716", + "user_type": "student", + "full_name": "Gonzalez Ruelas Leon Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20892, + "fields": { + "user": null, + "account_number": "42108710", + "user_type": "student", + "full_name": "Enriquez Perez Sthefany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20893, + "fields": { + "user": null, + "account_number": "42108557", + "user_type": "student", + "full_name": "Guajardo Zepeda Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20894, + "fields": { + "user": null, + "account_number": "42108556", + "user_type": "student", + "full_name": "Gonzalez Romero Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20895, + "fields": { + "user": null, + "account_number": "42108519", + "user_type": "student", + "full_name": "Rubio Celis Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20896, + "fields": { + "user": null, + "account_number": "42108367", + "user_type": "student", + "full_name": "Amador Navarro Dana Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20897, + "fields": { + "user": null, + "account_number": "42108318", + "user_type": "student", + "full_name": "Guazo Buitron Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20898, + "fields": { + "user": null, + "account_number": "42108256", + "user_type": "student", + "full_name": "Martinez Ramirez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20899, + "fields": { + "user": null, + "account_number": "42108238", + "user_type": "student", + "full_name": "Campos Garcia Gustavo Satoshi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20900, + "fields": { + "user": null, + "account_number": "42108174", + "user_type": "student", + "full_name": "Roque Carvajal Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20901, + "fields": { + "user": null, + "account_number": "42108161", + "user_type": "student", + "full_name": "Garcia Martinez Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20902, + "fields": { + "user": null, + "account_number": "42108070", + "user_type": "student", + "full_name": "Ochoa Avila Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20903, + "fields": { + "user": null, + "account_number": "42108069", + "user_type": "student", + "full_name": "Sanchez Sanchez Luis Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20904, + "fields": { + "user": null, + "account_number": "42108031", + "user_type": "student", + "full_name": "Alarcon Becerril Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20905, + "fields": { + "user": null, + "account_number": "42107996", + "user_type": "student", + "full_name": "Nicio Nicolas Yaritzi Itzayana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20906, + "fields": { + "user": null, + "account_number": "42107962", + "user_type": "student", + "full_name": "Aldana Chimal Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20907, + "fields": { + "user": null, + "account_number": "42107916", + "user_type": "student", + "full_name": "Flores Maria Aridaid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20908, + "fields": { + "user": null, + "account_number": "42107892", + "user_type": "student", + "full_name": "Damian Galan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20909, + "fields": { + "user": null, + "account_number": "42107847", + "user_type": "student", + "full_name": "Ayala Medina Anya Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20910, + "fields": { + "user": null, + "account_number": "42107829", + "user_type": "student", + "full_name": "Lopez Nuðez Gustavo Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20911, + "fields": { + "user": null, + "account_number": "42107794", + "user_type": "student", + "full_name": "Roldan Lopez Rocio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20912, + "fields": { + "user": null, + "account_number": "42107774", + "user_type": "student", + "full_name": "Ruiz Cortes Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20913, + "fields": { + "user": null, + "account_number": "42107720", + "user_type": "student", + "full_name": "Falcon Diaz Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20914, + "fields": { + "user": null, + "account_number": "42107717", + "user_type": "student", + "full_name": "Sobrino Ramirez Emilia Xilonen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20915, + "fields": { + "user": null, + "account_number": "42107674", + "user_type": "student", + "full_name": "Trujillo Barrios Paulette Alexandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20916, + "fields": { + "user": null, + "account_number": "42107626", + "user_type": "student", + "full_name": "Barajas Gomora Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20917, + "fields": { + "user": null, + "account_number": "42107506", + "user_type": "student", + "full_name": "Espinosa De Los Monteros Alfaro Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20918, + "fields": { + "user": null, + "account_number": "42107403", + "user_type": "student", + "full_name": "Cano Verduzco Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20919, + "fields": { + "user": null, + "account_number": "42107340", + "user_type": "student", + "full_name": "Nava Martinez Moises Eugenio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20920, + "fields": { + "user": null, + "account_number": "42107263", + "user_type": "student", + "full_name": "Marcial Castro Lizeth Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20921, + "fields": { + "user": null, + "account_number": "42107222", + "user_type": "student", + "full_name": "Martinez Perez Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20922, + "fields": { + "user": null, + "account_number": "42107184", + "user_type": "student", + "full_name": "Obal Garcia Eduardo Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20923, + "fields": { + "user": null, + "account_number": "42107168", + "user_type": "student", + "full_name": "Piða Juarez Demian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20924, + "fields": { + "user": null, + "account_number": "42107130", + "user_type": "student", + "full_name": "Mondragon Rojas Jessica Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20925, + "fields": { + "user": null, + "account_number": "42107097", + "user_type": "student", + "full_name": "Cruz Compean Jose Elias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20926, + "fields": { + "user": null, + "account_number": "42107086", + "user_type": "student", + "full_name": "Vera Galindo Antonio Vicente" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20927, + "fields": { + "user": null, + "account_number": "42107007", + "user_type": "student", + "full_name": "Lozano Machado Marielle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20928, + "fields": { + "user": null, + "account_number": "42106915", + "user_type": "student", + "full_name": "Gutierrez Alvarez Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20929, + "fields": { + "user": null, + "account_number": "42106898", + "user_type": "student", + "full_name": "Gutierrez Cortes Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20930, + "fields": { + "user": null, + "account_number": "42106897", + "user_type": "student", + "full_name": "Velazquez Williams Luis Noel Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20931, + "fields": { + "user": null, + "account_number": "42106767", + "user_type": "student", + "full_name": "Alcantara Segura Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20932, + "fields": { + "user": null, + "account_number": "42106573", + "user_type": "student", + "full_name": "Barco Teran Frida Deyanira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20933, + "fields": { + "user": null, + "account_number": "42106468", + "user_type": "student", + "full_name": "Bustos Garcia Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20934, + "fields": { + "user": null, + "account_number": "42106419", + "user_type": "student", + "full_name": "Ambriz Contla Aldo Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20935, + "fields": { + "user": null, + "account_number": "42106293", + "user_type": "student", + "full_name": "Morales Medina Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20936, + "fields": { + "user": null, + "account_number": "42106282", + "user_type": "student", + "full_name": "Gonzalez Perez Angela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20937, + "fields": { + "user": null, + "account_number": "42106267", + "user_type": "student", + "full_name": "Bali Leon Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20938, + "fields": { + "user": null, + "account_number": "42106209", + "user_type": "student", + "full_name": "Garcia Vega Luis Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20939, + "fields": { + "user": null, + "account_number": "42106120", + "user_type": "student", + "full_name": "Herrera Cruz Diana Ebhling" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20940, + "fields": { + "user": null, + "account_number": "42106119", + "user_type": "student", + "full_name": "Gudiðo Romero Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20941, + "fields": { + "user": null, + "account_number": "42105995", + "user_type": "student", + "full_name": "Gutierrez Cortez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20942, + "fields": { + "user": null, + "account_number": "42105975", + "user_type": "student", + "full_name": "Landero Herrera Vanessa Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20943, + "fields": { + "user": null, + "account_number": "42105935", + "user_type": "student", + "full_name": "Ramirez Gonzalez Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20944, + "fields": { + "user": null, + "account_number": "42105927", + "user_type": "student", + "full_name": "Bolaðos Ayala Agustin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20945, + "fields": { + "user": null, + "account_number": "42105895", + "user_type": "student", + "full_name": "Martinez Muðoz Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20946, + "fields": { + "user": null, + "account_number": "42105875", + "user_type": "student", + "full_name": "Hernandez Ortega Enrique Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20947, + "fields": { + "user": null, + "account_number": "42105713", + "user_type": "student", + "full_name": "Jimenez Perez Jorge Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20948, + "fields": { + "user": null, + "account_number": "42105705", + "user_type": "student", + "full_name": "Mendez Hernandez Elias Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20949, + "fields": { + "user": null, + "account_number": "42105700", + "user_type": "student", + "full_name": "Rodriguez Correa Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20950, + "fields": { + "user": null, + "account_number": "42105633", + "user_type": "student", + "full_name": "Santiago Limon Aketzali Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20951, + "fields": { + "user": null, + "account_number": "42105475", + "user_type": "student", + "full_name": "Reyes Gonzalez Andrea Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20952, + "fields": { + "user": null, + "account_number": "42105319", + "user_type": "student", + "full_name": "Cisneros Perez Bryan Yamhir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20953, + "fields": { + "user": null, + "account_number": "42105022", + "user_type": "student", + "full_name": "Perez Gutierrez Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20954, + "fields": { + "user": null, + "account_number": "42104945", + "user_type": "student", + "full_name": "Solano Urban Elisa Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20955, + "fields": { + "user": null, + "account_number": "42104834", + "user_type": "student", + "full_name": "Licea Becerril Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20956, + "fields": { + "user": null, + "account_number": "42104832", + "user_type": "student", + "full_name": "Blancas Cano Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20957, + "fields": { + "user": null, + "account_number": "42104778", + "user_type": "student", + "full_name": "Olmos Vazquez Irving Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20958, + "fields": { + "user": null, + "account_number": "42104749", + "user_type": "student", + "full_name": "De La Torre Gomez Yared Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20959, + "fields": { + "user": null, + "account_number": "42104697", + "user_type": "student", + "full_name": "Zavala Minor Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20960, + "fields": { + "user": null, + "account_number": "42104602", + "user_type": "student", + "full_name": "Gutierrez Cortez Rosaura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20961, + "fields": { + "user": null, + "account_number": "42104516", + "user_type": "student", + "full_name": "Trejo Sanchez Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20962, + "fields": { + "user": null, + "account_number": "42104513", + "user_type": "student", + "full_name": "Morales Velasco Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20963, + "fields": { + "user": null, + "account_number": "42104339", + "user_type": "student", + "full_name": "Godinez Rojas Alexis Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20964, + "fields": { + "user": null, + "account_number": "42104115", + "user_type": "student", + "full_name": "Gomez Perez Mahetzi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20965, + "fields": { + "user": null, + "account_number": "42104114", + "user_type": "student", + "full_name": "Fernandez Torres Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20966, + "fields": { + "user": null, + "account_number": "42104104", + "user_type": "student", + "full_name": "Suarez Lopez Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20967, + "fields": { + "user": null, + "account_number": "42104087", + "user_type": "student", + "full_name": "Sanchez Alvarado Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20968, + "fields": { + "user": null, + "account_number": "42104066", + "user_type": "student", + "full_name": "Castillo Rivas Alvaro Abdiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20969, + "fields": { + "user": null, + "account_number": "42104033", + "user_type": "student", + "full_name": "Leyva Yaðez Alexis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20970, + "fields": { + "user": null, + "account_number": "42104001", + "user_type": "student", + "full_name": "Mondragon Lara Raymundo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20971, + "fields": { + "user": null, + "account_number": "42104000", + "user_type": "student", + "full_name": "Mariche Wajsfeld Samuel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20972, + "fields": { + "user": null, + "account_number": "42103969", + "user_type": "student", + "full_name": "Ramirez Almazan Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20973, + "fields": { + "user": null, + "account_number": "42103915", + "user_type": "student", + "full_name": "Celaya Guerrero Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20974, + "fields": { + "user": null, + "account_number": "42103869", + "user_type": "student", + "full_name": "Hernandez Almaraz Tonatiuh Quetzalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20975, + "fields": { + "user": null, + "account_number": "42103845", + "user_type": "student", + "full_name": "Vargas Gonzalez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20976, + "fields": { + "user": null, + "account_number": "42103827", + "user_type": "student", + "full_name": "Diaz Vallejo Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20977, + "fields": { + "user": null, + "account_number": "42103684", + "user_type": "student", + "full_name": "Saldaða Flores Rolando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20978, + "fields": { + "user": null, + "account_number": "42103570", + "user_type": "student", + "full_name": "Avila Leon Sarai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20979, + "fields": { + "user": null, + "account_number": "42103501", + "user_type": "student", + "full_name": "Jose Ramirez Eleazar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20980, + "fields": { + "user": null, + "account_number": "42103443", + "user_type": "student", + "full_name": "Gonzalez Martinez Marian Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20981, + "fields": { + "user": null, + "account_number": "42103427", + "user_type": "student", + "full_name": "Avila Arellano Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20982, + "fields": { + "user": null, + "account_number": "42103383", + "user_type": "student", + "full_name": "Quijano Pineda Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20983, + "fields": { + "user": null, + "account_number": "42103315", + "user_type": "student", + "full_name": "Cuellar Rodriguez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20984, + "fields": { + "user": null, + "account_number": "42103235", + "user_type": "student", + "full_name": "Ramos Navarrete Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20985, + "fields": { + "user": null, + "account_number": "42103191", + "user_type": "student", + "full_name": "Monroy Escamilla Luis Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20986, + "fields": { + "user": null, + "account_number": "42103157", + "user_type": "student", + "full_name": "Arcos Gallardo David Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20987, + "fields": { + "user": null, + "account_number": "42102869", + "user_type": "student", + "full_name": "Agaton Caballero De Carranza Azul Dominique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20988, + "fields": { + "user": null, + "account_number": "42102731", + "user_type": "student", + "full_name": "Lara Perdomo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20989, + "fields": { + "user": null, + "account_number": "42102598", + "user_type": "student", + "full_name": "Pedroza Corona Brenda Yesenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20990, + "fields": { + "user": null, + "account_number": "42102586", + "user_type": "student", + "full_name": "Arjona Villagomez Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20991, + "fields": { + "user": null, + "account_number": "42102441", + "user_type": "student", + "full_name": "Libreros Melendez Mishael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20992, + "fields": { + "user": null, + "account_number": "42102430", + "user_type": "student", + "full_name": "Francisco Cruz Eder" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20993, + "fields": { + "user": null, + "account_number": "42102421", + "user_type": "student", + "full_name": "Tellez Mares Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20994, + "fields": { + "user": null, + "account_number": "42102385", + "user_type": "student", + "full_name": "Silva Diaz Emma Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20995, + "fields": { + "user": null, + "account_number": "42102189", + "user_type": "student", + "full_name": "Aguilar Reyes Rosa Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20996, + "fields": { + "user": null, + "account_number": "42101915", + "user_type": "student", + "full_name": "Martinez Linares Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20997, + "fields": { + "user": null, + "account_number": "42101904", + "user_type": "student", + "full_name": "Landero Patoni Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20998, + "fields": { + "user": null, + "account_number": "42101792", + "user_type": "student", + "full_name": "Hernandez Moreno Carlos Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 20999, + "fields": { + "user": null, + "account_number": "42101705", + "user_type": "student", + "full_name": "Flores Munguia Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21000, + "fields": { + "user": null, + "account_number": "42101563", + "user_type": "student", + "full_name": "Perez Juarez Marycarmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21001, + "fields": { + "user": null, + "account_number": "42101488", + "user_type": "student", + "full_name": "Oliver Maldonado Mario Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21002, + "fields": { + "user": null, + "account_number": "42101358", + "user_type": "student", + "full_name": "Gomez Vazquez Eli Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21003, + "fields": { + "user": null, + "account_number": "42101225", + "user_type": "student", + "full_name": "Venansio Hurtado Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21004, + "fields": { + "user": null, + "account_number": "42101197", + "user_type": "student", + "full_name": "Olan Cruz Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21005, + "fields": { + "user": null, + "account_number": "42101147", + "user_type": "student", + "full_name": "Silva Ramirez Angelica Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21006, + "fields": { + "user": null, + "account_number": "42101030", + "user_type": "student", + "full_name": "Alvarado Reyes Jorge Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21007, + "fields": { + "user": null, + "account_number": "42100892", + "user_type": "student", + "full_name": "Martinez Vallejo Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21008, + "fields": { + "user": null, + "account_number": "42100878", + "user_type": "student", + "full_name": "Solis Villafuerte Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21009, + "fields": { + "user": null, + "account_number": "42100655", + "user_type": "student", + "full_name": "Hernandez Hernandez Jose Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21010, + "fields": { + "user": null, + "account_number": "42100539", + "user_type": "student", + "full_name": "Diaz Santiz Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21011, + "fields": { + "user": null, + "account_number": "42100516", + "user_type": "student", + "full_name": "Arias Martinez Ana Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21012, + "fields": { + "user": null, + "account_number": "42100500", + "user_type": "student", + "full_name": "Sanchez Ramirez Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21013, + "fields": { + "user": null, + "account_number": "42100395", + "user_type": "student", + "full_name": "Roldan Martinez Tamara Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21014, + "fields": { + "user": null, + "account_number": "42100366", + "user_type": "student", + "full_name": "Garcia Hernandez Kevin Imanol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21015, + "fields": { + "user": null, + "account_number": "42100257", + "user_type": "student", + "full_name": "Ocampo Jaimes Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21016, + "fields": { + "user": null, + "account_number": "42010856", + "user_type": "student", + "full_name": "Sosa Landeros Yolotl Betsabe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21017, + "fields": { + "user": null, + "account_number": "42009646", + "user_type": "student", + "full_name": "Barojas Gonzalez Janeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21018, + "fields": { + "user": null, + "account_number": "42008096", + "user_type": "student", + "full_name": "Cruz Sotelo Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21019, + "fields": { + "user": null, + "account_number": "42007922", + "user_type": "student", + "full_name": "Ferrer Flores Ximena Mailyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21020, + "fields": { + "user": null, + "account_number": "42007695", + "user_type": "student", + "full_name": "Fuentes Sanchez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21021, + "fields": { + "user": null, + "account_number": "42006972", + "user_type": "student", + "full_name": "Vargas Gonzalez Daniel Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21022, + "fields": { + "user": null, + "account_number": "42003596", + "user_type": "student", + "full_name": "Palomares Olegario Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21023, + "fields": { + "user": null, + "account_number": "41907564", + "user_type": "student", + "full_name": "Valdez Frias Azucena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21024, + "fields": { + "user": null, + "account_number": "41907284", + "user_type": "student", + "full_name": "Hernandez Salazar Cristopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21025, + "fields": { + "user": null, + "account_number": "41904757", + "user_type": "student", + "full_name": "Bejos Brito Jose Agustin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21026, + "fields": { + "user": null, + "account_number": "41809213", + "user_type": "student", + "full_name": "Alanis Garza Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21027, + "fields": { + "user": null, + "account_number": "41707506", + "user_type": "student", + "full_name": "Resendiz Contreras Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21028, + "fields": { + "user": null, + "account_number": "41704177", + "user_type": "student", + "full_name": "Galicia Vargas Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21029, + "fields": { + "user": null, + "account_number": "41700898", + "user_type": "student", + "full_name": "Lozano Fuentes Jorge Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21030, + "fields": { + "user": null, + "account_number": "31870973", + "user_type": "student", + "full_name": "Guilliem Uriostique Rebeca Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21031, + "fields": { + "user": null, + "account_number": "31870913", + "user_type": "student", + "full_name": "Castro Dessavre Arantza" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21032, + "fields": { + "user": null, + "account_number": "31867707", + "user_type": "student", + "full_name": "Morales Lopez Citlalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21033, + "fields": { + "user": null, + "account_number": "31865164", + "user_type": "student", + "full_name": "Rodriguez Pulido Jesus Raymundo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21034, + "fields": { + "user": null, + "account_number": "31864250", + "user_type": "student", + "full_name": "Viveros Martinez Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21035, + "fields": { + "user": null, + "account_number": "31863324", + "user_type": "student", + "full_name": "Martinez Macouzet Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21036, + "fields": { + "user": null, + "account_number": "31862648", + "user_type": "student", + "full_name": "Mendiola Hernandez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21037, + "fields": { + "user": null, + "account_number": "31861086", + "user_type": "student", + "full_name": "Huerta Villanueva Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21038, + "fields": { + "user": null, + "account_number": "31860106", + "user_type": "student", + "full_name": "Jimenez Garcia Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21039, + "fields": { + "user": null, + "account_number": "31859600", + "user_type": "student", + "full_name": "Valencia Rosas Vicente Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21040, + "fields": { + "user": null, + "account_number": "31856388", + "user_type": "student", + "full_name": "Landeros Austria Diego Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21041, + "fields": { + "user": null, + "account_number": "31852183", + "user_type": "student", + "full_name": "Flores Ibaðez Jocelyn Thamara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21042, + "fields": { + "user": null, + "account_number": "31835865", + "user_type": "student", + "full_name": "Garcia Lopez Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21043, + "fields": { + "user": null, + "account_number": "31835838", + "user_type": "student", + "full_name": "Sevilla Gallardo Saul Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21044, + "fields": { + "user": null, + "account_number": "31835580", + "user_type": "student", + "full_name": "Ramirez Morales Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21045, + "fields": { + "user": null, + "account_number": "31834777", + "user_type": "student", + "full_name": "Mendez Guerrero Jesus Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21046, + "fields": { + "user": null, + "account_number": "31834564", + "user_type": "student", + "full_name": "Soto Gallegos Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21047, + "fields": { + "user": null, + "account_number": "31834060", + "user_type": "student", + "full_name": "Macias Espinosa Frida Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21048, + "fields": { + "user": null, + "account_number": "31833445", + "user_type": "student", + "full_name": "Vera Flores Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21049, + "fields": { + "user": null, + "account_number": "31832941", + "user_type": "student", + "full_name": "Barron Manzano Jonathan Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21050, + "fields": { + "user": null, + "account_number": "31832716", + "user_type": "student", + "full_name": "Casas Toribio Ian Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21051, + "fields": { + "user": null, + "account_number": "31832039", + "user_type": "student", + "full_name": "Huerta Crescencio Areli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21052, + "fields": { + "user": null, + "account_number": "31830659", + "user_type": "student", + "full_name": "Villa Najera Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21053, + "fields": { + "user": null, + "account_number": "31830608", + "user_type": "student", + "full_name": "Bueno Jimenez Laura Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21054, + "fields": { + "user": null, + "account_number": "31830480", + "user_type": "student", + "full_name": "Martinez Hernandez Elias Helaman" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21055, + "fields": { + "user": null, + "account_number": "31830027", + "user_type": "student", + "full_name": "Cruz Abrego Misael Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21056, + "fields": { + "user": null, + "account_number": "31829799", + "user_type": "student", + "full_name": "Medrano Brigada Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21057, + "fields": { + "user": null, + "account_number": "31828449", + "user_type": "student", + "full_name": "Lopez Zamora Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21058, + "fields": { + "user": null, + "account_number": "31828102", + "user_type": "student", + "full_name": "Bernardino Herrera Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21059, + "fields": { + "user": null, + "account_number": "31827529", + "user_type": "student", + "full_name": "Arzate Ocaðas David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21060, + "fields": { + "user": null, + "account_number": "31827507", + "user_type": "student", + "full_name": "Rojas Almeida Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21061, + "fields": { + "user": null, + "account_number": "31827361", + "user_type": "student", + "full_name": "Jimenez Flores Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21062, + "fields": { + "user": null, + "account_number": "31826783", + "user_type": "student", + "full_name": "Martinez Venegas Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21063, + "fields": { + "user": null, + "account_number": "31826746", + "user_type": "student", + "full_name": "Pazaran Yaðez Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21064, + "fields": { + "user": null, + "account_number": "31826712", + "user_type": "student", + "full_name": "Rodriguez Torres Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21065, + "fields": { + "user": null, + "account_number": "31826452", + "user_type": "student", + "full_name": "Cuellar Oropeza Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21066, + "fields": { + "user": null, + "account_number": "31826313", + "user_type": "student", + "full_name": "Cirilo Huerta Noe Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21067, + "fields": { + "user": null, + "account_number": "31825753", + "user_type": "student", + "full_name": "Chi Aranda Kam Nie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21068, + "fields": { + "user": null, + "account_number": "31825418", + "user_type": "student", + "full_name": "Santos Resendiz Ari Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21069, + "fields": { + "user": null, + "account_number": "31825294", + "user_type": "student", + "full_name": "Cano Gamero Omar Edrey" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21070, + "fields": { + "user": null, + "account_number": "31825260", + "user_type": "student", + "full_name": "Alvarez Gutierrez Jovanny Hazel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21071, + "fields": { + "user": null, + "account_number": "31824114", + "user_type": "student", + "full_name": "Sanchez Rodriguez Alexis Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21072, + "fields": { + "user": null, + "account_number": "31824080", + "user_type": "student", + "full_name": "Evaristo Urbina Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21073, + "fields": { + "user": null, + "account_number": "31823029", + "user_type": "student", + "full_name": "Ortiz Peða Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21074, + "fields": { + "user": null, + "account_number": "31822551", + "user_type": "student", + "full_name": "Casas Ibaðez Emanuel Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21075, + "fields": { + "user": null, + "account_number": "31821887", + "user_type": "student", + "full_name": "Flores Hidalgo Tomas Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21076, + "fields": { + "user": null, + "account_number": "31821876", + "user_type": "student", + "full_name": "Espinoza Vazquez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21077, + "fields": { + "user": null, + "account_number": "31821627", + "user_type": "student", + "full_name": "Cruz Mendez Yuliana Vianney" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21078, + "fields": { + "user": null, + "account_number": "31820729", + "user_type": "student", + "full_name": "Rodriguez Cienfuegos Jonathan Natael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21079, + "fields": { + "user": null, + "account_number": "31820117", + "user_type": "student", + "full_name": "Romero Hernandez Axel Yorshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21080, + "fields": { + "user": null, + "account_number": "31819721", + "user_type": "student", + "full_name": "Segura Velazquez Adrian Emir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21081, + "fields": { + "user": null, + "account_number": "31818936", + "user_type": "student", + "full_name": "Alcantara Alviso Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21082, + "fields": { + "user": null, + "account_number": "31817925", + "user_type": "student", + "full_name": "Vidal Romero Amando Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21083, + "fields": { + "user": null, + "account_number": "31816093", + "user_type": "student", + "full_name": "Patiðo Cipriano Paola Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21084, + "fields": { + "user": null, + "account_number": "31815736", + "user_type": "student", + "full_name": "Bautista Rodriguez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21085, + "fields": { + "user": null, + "account_number": "31815708", + "user_type": "student", + "full_name": "Hernandez Perez Saul David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21086, + "fields": { + "user": null, + "account_number": "31815520", + "user_type": "student", + "full_name": "Perez Ramirez Enrique Demetrio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21087, + "fields": { + "user": null, + "account_number": "31815327", + "user_type": "student", + "full_name": "Nolasco Reyes Karol Jacqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21088, + "fields": { + "user": null, + "account_number": "31812820", + "user_type": "student", + "full_name": "Ramirez Reyes Samuel Tadeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21089, + "fields": { + "user": null, + "account_number": "31812390", + "user_type": "student", + "full_name": "Rodriguez Navarrete Jesus Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21090, + "fields": { + "user": null, + "account_number": "31810667", + "user_type": "student", + "full_name": "Hernandez Hernandez Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21091, + "fields": { + "user": null, + "account_number": "31810426", + "user_type": "student", + "full_name": "Lopez Lopez Jose Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21092, + "fields": { + "user": null, + "account_number": "31810230", + "user_type": "student", + "full_name": "Martinez Ocampo Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21093, + "fields": { + "user": null, + "account_number": "31809172", + "user_type": "student", + "full_name": "Hernandez Coyote Vinicio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21094, + "fields": { + "user": null, + "account_number": "31809073", + "user_type": "student", + "full_name": "Rojas Uriostigue Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21095, + "fields": { + "user": null, + "account_number": "31808800", + "user_type": "student", + "full_name": "Ribera Rueda Enya Lilibeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21096, + "fields": { + "user": null, + "account_number": "31808757", + "user_type": "student", + "full_name": "Sosa Perez Dariana Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21097, + "fields": { + "user": null, + "account_number": "31808682", + "user_type": "student", + "full_name": "Hernandez Enriquez Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21098, + "fields": { + "user": null, + "account_number": "31808631", + "user_type": "student", + "full_name": "Reyes Valle Erika Paloma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21099, + "fields": { + "user": null, + "account_number": "31808379", + "user_type": "student", + "full_name": "Valades Herrera Elisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21100, + "fields": { + "user": null, + "account_number": "31807393", + "user_type": "student", + "full_name": "Galvan Olvera Yankuic" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21101, + "fields": { + "user": null, + "account_number": "31806538", + "user_type": "student", + "full_name": "Lezama Guerrero Paola Jimena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21102, + "fields": { + "user": null, + "account_number": "31806254", + "user_type": "student", + "full_name": "Gutierrez Flores Lael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21103, + "fields": { + "user": null, + "account_number": "31806135", + "user_type": "student", + "full_name": "Morales Alvarez Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21104, + "fields": { + "user": null, + "account_number": "31805744", + "user_type": "student", + "full_name": "Vela Guerrero Diego Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21105, + "fields": { + "user": null, + "account_number": "31805096", + "user_type": "student", + "full_name": "Hipatl Medel Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21106, + "fields": { + "user": null, + "account_number": "31804426", + "user_type": "student", + "full_name": "Vargas Suarez Diego Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21107, + "fields": { + "user": null, + "account_number": "31804199", + "user_type": "student", + "full_name": "Flores Gonzalez Jonathan Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21108, + "fields": { + "user": null, + "account_number": "31803841", + "user_type": "student", + "full_name": "Rivera Dominguez Jared Dagoberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21109, + "fields": { + "user": null, + "account_number": "31803768", + "user_type": "student", + "full_name": "Morales Campos Isaac Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21110, + "fields": { + "user": null, + "account_number": "31803660", + "user_type": "student", + "full_name": "Dufour Lule Pablo Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21111, + "fields": { + "user": null, + "account_number": "31803598", + "user_type": "student", + "full_name": "Martinez Perea Litzy Jasmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21112, + "fields": { + "user": null, + "account_number": "31803385", + "user_type": "student", + "full_name": "Bermeo Barron Abril Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21113, + "fields": { + "user": null, + "account_number": "31802676", + "user_type": "student", + "full_name": "Jaimes Cervantes Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21114, + "fields": { + "user": null, + "account_number": "31802381", + "user_type": "student", + "full_name": "Rios Machorro Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21115, + "fields": { + "user": null, + "account_number": "31801866", + "user_type": "student", + "full_name": "Castro Lopez Cristian Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21116, + "fields": { + "user": null, + "account_number": "31801538", + "user_type": "student", + "full_name": "Escorcia Alcantara Gregorio Jacobo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21117, + "fields": { + "user": null, + "account_number": "31801536", + "user_type": "student", + "full_name": "Escartin Salva Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21118, + "fields": { + "user": null, + "account_number": "31801169", + "user_type": "student", + "full_name": "Palma Xolalpa Ricardo Augusto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21119, + "fields": { + "user": null, + "account_number": "31800725", + "user_type": "student", + "full_name": "Ocegueda Cortes Yahir Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21120, + "fields": { + "user": null, + "account_number": "31800688", + "user_type": "student", + "full_name": "Hernandez Perez Erick Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21121, + "fields": { + "user": null, + "account_number": "31800486", + "user_type": "student", + "full_name": "Ramos Castillo Erick Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21122, + "fields": { + "user": null, + "account_number": "31800078", + "user_type": "student", + "full_name": "Del Angel Santiago Monserrat Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21123, + "fields": { + "user": null, + "account_number": "31767728", + "user_type": "student", + "full_name": "Fernandez Paz Isaac Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21124, + "fields": { + "user": null, + "account_number": "31734801", + "user_type": "student", + "full_name": "Rojas Rodriguez Oswaldo Tenoch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21125, + "fields": { + "user": null, + "account_number": "31734281", + "user_type": "student", + "full_name": "Becerril Araujo Pablo Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21126, + "fields": { + "user": null, + "account_number": "31733225", + "user_type": "student", + "full_name": "Zamora Morales Mariell Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21127, + "fields": { + "user": null, + "account_number": "31733199", + "user_type": "student", + "full_name": "Gleason Rosales Tania Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21128, + "fields": { + "user": null, + "account_number": "31732753", + "user_type": "student", + "full_name": "Bustos Jimenez Aranza Romina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21129, + "fields": { + "user": null, + "account_number": "31732623", + "user_type": "student", + "full_name": "Gutierrez Jimenez Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21130, + "fields": { + "user": null, + "account_number": "31732570", + "user_type": "student", + "full_name": "Recendiz Valerio Francisco Keplat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21131, + "fields": { + "user": null, + "account_number": "31732427", + "user_type": "student", + "full_name": "Ramos Esparza Kevin Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21132, + "fields": { + "user": null, + "account_number": "31732169", + "user_type": "student", + "full_name": "Gonzalez Briones Remedios Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21133, + "fields": { + "user": null, + "account_number": "31731911", + "user_type": "student", + "full_name": "Sanchez Zuðiga Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21134, + "fields": { + "user": null, + "account_number": "31731366", + "user_type": "student", + "full_name": "Serrano Arriaga Sahian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21135, + "fields": { + "user": null, + "account_number": "31731327", + "user_type": "student", + "full_name": "Mancilla Flores Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21136, + "fields": { + "user": null, + "account_number": "31730756", + "user_type": "student", + "full_name": "Rangel Reyes Luis Jaime" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21137, + "fields": { + "user": null, + "account_number": "31730625", + "user_type": "student", + "full_name": "Jimenez Ocampo Rodrigo Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21138, + "fields": { + "user": null, + "account_number": "31730422", + "user_type": "student", + "full_name": "Sanchez Neri Oscar Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21139, + "fields": { + "user": null, + "account_number": "31730152", + "user_type": "student", + "full_name": "Tovar Porras Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21140, + "fields": { + "user": null, + "account_number": "31730071", + "user_type": "student", + "full_name": "Sanchez Romero Arleth Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21141, + "fields": { + "user": null, + "account_number": "31729948", + "user_type": "student", + "full_name": "Cisneros Martinez Fabiola Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21142, + "fields": { + "user": null, + "account_number": "31729218", + "user_type": "student", + "full_name": "Segura Diaz Angel Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21143, + "fields": { + "user": null, + "account_number": "31729109", + "user_type": "student", + "full_name": "Hernandez Camacho Ana Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21144, + "fields": { + "user": null, + "account_number": "31728730", + "user_type": "student", + "full_name": "Cid Azpeitia Andrea Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21145, + "fields": { + "user": null, + "account_number": "31728566", + "user_type": "student", + "full_name": "Perez Castro Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21146, + "fields": { + "user": null, + "account_number": "31728536", + "user_type": "student", + "full_name": "Perez Mendoza Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21147, + "fields": { + "user": null, + "account_number": "31728459", + "user_type": "student", + "full_name": "Luna Martinez Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21148, + "fields": { + "user": null, + "account_number": "31728414", + "user_type": "student", + "full_name": "Zepeda Martinez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21149, + "fields": { + "user": null, + "account_number": "31728366", + "user_type": "student", + "full_name": "Alvarez Valdez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21150, + "fields": { + "user": null, + "account_number": "31728333", + "user_type": "student", + "full_name": "Robinson Chavelas Milka Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21151, + "fields": { + "user": null, + "account_number": "31728080", + "user_type": "student", + "full_name": "Barcenas Robles Francisco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21152, + "fields": { + "user": null, + "account_number": "31727523", + "user_type": "student", + "full_name": "Alvarez Copete Yue Lyn Samantha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21153, + "fields": { + "user": null, + "account_number": "31726304", + "user_type": "student", + "full_name": "Balderas Hernandez Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21154, + "fields": { + "user": null, + "account_number": "31726260", + "user_type": "student", + "full_name": "Villafuerte Hernandez Karen Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21155, + "fields": { + "user": null, + "account_number": "31726063", + "user_type": "student", + "full_name": "Escobedo Servin Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21156, + "fields": { + "user": null, + "account_number": "31725503", + "user_type": "student", + "full_name": "Martinez Diaz Gabriela Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21157, + "fields": { + "user": null, + "account_number": "31725324", + "user_type": "student", + "full_name": "Linares Muðoz Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21158, + "fields": { + "user": null, + "account_number": "31725212", + "user_type": "student", + "full_name": "Cedillo Tejadilla Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21159, + "fields": { + "user": null, + "account_number": "31724879", + "user_type": "student", + "full_name": "Torres Carpio Norma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21160, + "fields": { + "user": null, + "account_number": "31724447", + "user_type": "student", + "full_name": "Sixto Rodriguez Angel Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21161, + "fields": { + "user": null, + "account_number": "31724313", + "user_type": "student", + "full_name": "Carrillo Aldana Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21162, + "fields": { + "user": null, + "account_number": "31723957", + "user_type": "student", + "full_name": "Portillo Casillas Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21163, + "fields": { + "user": null, + "account_number": "31723046", + "user_type": "student", + "full_name": "Ramirez Castrejon Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21164, + "fields": { + "user": null, + "account_number": "31722454", + "user_type": "student", + "full_name": "Colunga Aguilar Alma Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21165, + "fields": { + "user": null, + "account_number": "31722168", + "user_type": "student", + "full_name": "Rojas Escalona Ronald Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21166, + "fields": { + "user": null, + "account_number": "31721810", + "user_type": "student", + "full_name": "Guerrero Jaramillo Carlos Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21167, + "fields": { + "user": null, + "account_number": "31721498", + "user_type": "student", + "full_name": "Garcia Hernandez Jordi Donovan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21168, + "fields": { + "user": null, + "account_number": "31721084", + "user_type": "student", + "full_name": "Ocampo Cortes Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21169, + "fields": { + "user": null, + "account_number": "31720379", + "user_type": "student", + "full_name": "Sanchez Torralva Juan Pedro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21170, + "fields": { + "user": null, + "account_number": "31720172", + "user_type": "student", + "full_name": "Aguirre Martagon Daniel Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21171, + "fields": { + "user": null, + "account_number": "31719951", + "user_type": "student", + "full_name": "Lazaro Suarez Dayanne Ariadne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21172, + "fields": { + "user": null, + "account_number": "31719708", + "user_type": "student", + "full_name": "Lopez Robles Omar Alaid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21173, + "fields": { + "user": null, + "account_number": "31719552", + "user_type": "student", + "full_name": "Manzanares Muðoz Anamaria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21174, + "fields": { + "user": null, + "account_number": "31719437", + "user_type": "student", + "full_name": "Jarquin Garcia Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21175, + "fields": { + "user": null, + "account_number": "31719364", + "user_type": "student", + "full_name": "Vargas Hernandez Diego Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21176, + "fields": { + "user": null, + "account_number": "31719104", + "user_type": "student", + "full_name": "Bautista Perez Kelvyn Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21177, + "fields": { + "user": null, + "account_number": "31718724", + "user_type": "student", + "full_name": "Rojas Solano Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21178, + "fields": { + "user": null, + "account_number": "31718664", + "user_type": "student", + "full_name": "Barron Reyes Edrei Jezreel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21179, + "fields": { + "user": null, + "account_number": "31718249", + "user_type": "student", + "full_name": "Avila Castaðeda Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21180, + "fields": { + "user": null, + "account_number": "31717939", + "user_type": "student", + "full_name": "Gutierrez Martinez Jesus Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21181, + "fields": { + "user": null, + "account_number": "31717870", + "user_type": "student", + "full_name": "Cruz Cielo Edgar Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21182, + "fields": { + "user": null, + "account_number": "31717668", + "user_type": "student", + "full_name": "Noguez Medina Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21183, + "fields": { + "user": null, + "account_number": "31717656", + "user_type": "student", + "full_name": "Sierra Gonzalez Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21184, + "fields": { + "user": null, + "account_number": "31717570", + "user_type": "student", + "full_name": "Rojas Torres Fernando Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21185, + "fields": { + "user": null, + "account_number": "31717292", + "user_type": "student", + "full_name": "Montiel Tlatelpa Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21186, + "fields": { + "user": null, + "account_number": "31717272", + "user_type": "student", + "full_name": "Diaz Garcia Flor Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21187, + "fields": { + "user": null, + "account_number": "31716781", + "user_type": "student", + "full_name": "Carranza Bolaðos Jatniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21188, + "fields": { + "user": null, + "account_number": "31716278", + "user_type": "student", + "full_name": "Martinez Hernandez Ricardo Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21189, + "fields": { + "user": null, + "account_number": "31716166", + "user_type": "student", + "full_name": "Mendoza Rojo Missael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21190, + "fields": { + "user": null, + "account_number": "31716085", + "user_type": "student", + "full_name": "Leon Bustamante Samuel Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21191, + "fields": { + "user": null, + "account_number": "31716072", + "user_type": "student", + "full_name": "Ricaðo Gonzalez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21192, + "fields": { + "user": null, + "account_number": "31715252", + "user_type": "student", + "full_name": "Saiz Perez Cristina Vianeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21193, + "fields": { + "user": null, + "account_number": "31715235", + "user_type": "student", + "full_name": "Aguilar Ortiz Rosario Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21194, + "fields": { + "user": null, + "account_number": "31715044", + "user_type": "student", + "full_name": "Mora Llanos Angel Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21195, + "fields": { + "user": null, + "account_number": "31715003", + "user_type": "student", + "full_name": "Barrera Rosas David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21196, + "fields": { + "user": null, + "account_number": "31714772", + "user_type": "student", + "full_name": "Cardona Martinez Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21197, + "fields": { + "user": null, + "account_number": "31714740", + "user_type": "student", + "full_name": "Peralta Anguiano Owen Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21198, + "fields": { + "user": null, + "account_number": "31714363", + "user_type": "student", + "full_name": "Quevedo Mariscal Victoria Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21199, + "fields": { + "user": null, + "account_number": "31714271", + "user_type": "student", + "full_name": "Coeto Cantoral Sergei Otto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21200, + "fields": { + "user": null, + "account_number": "31714149", + "user_type": "student", + "full_name": "Ugalde Ubaldo Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21201, + "fields": { + "user": null, + "account_number": "31713798", + "user_type": "student", + "full_name": "Urbina Solis Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21202, + "fields": { + "user": null, + "account_number": "31713278", + "user_type": "student", + "full_name": "Montes Lara Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21203, + "fields": { + "user": null, + "account_number": "31712835", + "user_type": "student", + "full_name": "Navarrete Rodriguez Mariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21204, + "fields": { + "user": null, + "account_number": "31712813", + "user_type": "student", + "full_name": "Alfaro Campos Edgar Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21205, + "fields": { + "user": null, + "account_number": "31712713", + "user_type": "student", + "full_name": "Rios Aviles Dana Ixchel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21206, + "fields": { + "user": null, + "account_number": "31712121", + "user_type": "student", + "full_name": "Fonseca Neos Damian Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21207, + "fields": { + "user": null, + "account_number": "31711968", + "user_type": "student", + "full_name": "Miranda Saldaða Andre Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21208, + "fields": { + "user": null, + "account_number": "31711826", + "user_type": "student", + "full_name": "Reyes Garcia Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21209, + "fields": { + "user": null, + "account_number": "31711413", + "user_type": "student", + "full_name": "Velazquez Marin Cesar Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21210, + "fields": { + "user": null, + "account_number": "31711009", + "user_type": "student", + "full_name": "Lopez Bautista Sergio Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21211, + "fields": { + "user": null, + "account_number": "31710515", + "user_type": "student", + "full_name": "Zamora Espinosa Manuel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21212, + "fields": { + "user": null, + "account_number": "31710228", + "user_type": "student", + "full_name": "Garcia Bello Michael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21213, + "fields": { + "user": null, + "account_number": "31709265", + "user_type": "student", + "full_name": "Tovar Salazar Karla Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21214, + "fields": { + "user": null, + "account_number": "31708954", + "user_type": "student", + "full_name": "Cortinas Avila Jorge Alberto De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21215, + "fields": { + "user": null, + "account_number": "31708830", + "user_type": "student", + "full_name": "Garduðo Duran Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21216, + "fields": { + "user": null, + "account_number": "31708408", + "user_type": "student", + "full_name": "Soto Gomez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21217, + "fields": { + "user": null, + "account_number": "31708354", + "user_type": "student", + "full_name": "Vazquez Carrasco Gael Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21218, + "fields": { + "user": null, + "account_number": "31707894", + "user_type": "student", + "full_name": "Rodriguez Montes Christopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21219, + "fields": { + "user": null, + "account_number": "31707526", + "user_type": "student", + "full_name": "Gutierrez Bermeo Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21220, + "fields": { + "user": null, + "account_number": "31707345", + "user_type": "student", + "full_name": "Ortiz Mendez Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21221, + "fields": { + "user": null, + "account_number": "31707164", + "user_type": "student", + "full_name": "Huerta Orozco Yago Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21222, + "fields": { + "user": null, + "account_number": "31707107", + "user_type": "student", + "full_name": "Jimenez Jimenez Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21223, + "fields": { + "user": null, + "account_number": "31706964", + "user_type": "student", + "full_name": "Medrano Sanchez Gustavo Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21224, + "fields": { + "user": null, + "account_number": "31706753", + "user_type": "student", + "full_name": "Barraza Huitron Joyce" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21225, + "fields": { + "user": null, + "account_number": "31706135", + "user_type": "student", + "full_name": "Diaz Mendez Eros Nazareth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21226, + "fields": { + "user": null, + "account_number": "31705261", + "user_type": "student", + "full_name": "Cervantes Poblano Erik Yeudiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21227, + "fields": { + "user": null, + "account_number": "31705150", + "user_type": "student", + "full_name": "Rodriguez Chavez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21228, + "fields": { + "user": null, + "account_number": "31705039", + "user_type": "student", + "full_name": "Lozano Rosas Francisco Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21229, + "fields": { + "user": null, + "account_number": "31704977", + "user_type": "student", + "full_name": "Solis Vazquez Carlos Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21230, + "fields": { + "user": null, + "account_number": "31704325", + "user_type": "student", + "full_name": "Olvera Juarez Josue Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21231, + "fields": { + "user": null, + "account_number": "31704310", + "user_type": "student", + "full_name": "Vega Barrera Efren" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21232, + "fields": { + "user": null, + "account_number": "31704273", + "user_type": "student", + "full_name": "Hernandez Gonzalez Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21233, + "fields": { + "user": null, + "account_number": "31703907", + "user_type": "student", + "full_name": "Vazquez Diaz Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21234, + "fields": { + "user": null, + "account_number": "31703712", + "user_type": "student", + "full_name": "Rios Gil Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21235, + "fields": { + "user": null, + "account_number": "31702290", + "user_type": "student", + "full_name": "Medina Lopez Mario Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21236, + "fields": { + "user": null, + "account_number": "31701809", + "user_type": "student", + "full_name": "Ramos Villaseðor Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21237, + "fields": { + "user": null, + "account_number": "31701554", + "user_type": "student", + "full_name": "Cortes Xolo Jonathan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21238, + "fields": { + "user": null, + "account_number": "31701274", + "user_type": "student", + "full_name": "Besne Cabrera Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21239, + "fields": { + "user": null, + "account_number": "31700932", + "user_type": "student", + "full_name": "Galicia Peðaloza Karim Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21240, + "fields": { + "user": null, + "account_number": "31700665", + "user_type": "student", + "full_name": "Martinez Lopez Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21241, + "fields": { + "user": null, + "account_number": "31700215", + "user_type": "student", + "full_name": "Acero Barrera Luis Joaquin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21242, + "fields": { + "user": null, + "account_number": "31672017", + "user_type": "student", + "full_name": "Godinez Martinez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21243, + "fields": { + "user": null, + "account_number": "31660863", + "user_type": "student", + "full_name": "Resendiz Luna Juan Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21244, + "fields": { + "user": null, + "account_number": "31659856", + "user_type": "student", + "full_name": "Roa Lopez Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21245, + "fields": { + "user": null, + "account_number": "31658574", + "user_type": "student", + "full_name": "Hernandez Godinez Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21246, + "fields": { + "user": null, + "account_number": "31634494", + "user_type": "student", + "full_name": "Meneses Arreola Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21247, + "fields": { + "user": null, + "account_number": "31632915", + "user_type": "student", + "full_name": "Ramirez Maximo Abraham Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21248, + "fields": { + "user": null, + "account_number": "31632346", + "user_type": "student", + "full_name": "Marin Valadez Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21249, + "fields": { + "user": null, + "account_number": "31628443", + "user_type": "student", + "full_name": "Rosas Reyes Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21250, + "fields": { + "user": null, + "account_number": "31626428", + "user_type": "student", + "full_name": "Mariano Tellez Cristian Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21251, + "fields": { + "user": null, + "account_number": "31621534", + "user_type": "student", + "full_name": "Ramirez Rendon Luis Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21252, + "fields": { + "user": null, + "account_number": "31621393", + "user_type": "student", + "full_name": "Guevara Gonzalez Gabriel Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21253, + "fields": { + "user": null, + "account_number": "31621217", + "user_type": "student", + "full_name": "Murillo Guevara Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21254, + "fields": { + "user": null, + "account_number": "31621137", + "user_type": "student", + "full_name": "Guzman Moreno Erick Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21255, + "fields": { + "user": null, + "account_number": "31620173", + "user_type": "student", + "full_name": "Ortiz Bejarano Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21256, + "fields": { + "user": null, + "account_number": "31619294", + "user_type": "student", + "full_name": "Vasquez Ruiz Benjamin Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21257, + "fields": { + "user": null, + "account_number": "31618574", + "user_type": "student", + "full_name": "Huitron Castro Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21258, + "fields": { + "user": null, + "account_number": "31618477", + "user_type": "student", + "full_name": "Osnaya Romero Victor Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21259, + "fields": { + "user": null, + "account_number": "31618172", + "user_type": "student", + "full_name": "Lugo Ferreira Jesus Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21260, + "fields": { + "user": null, + "account_number": "31617353", + "user_type": "student", + "full_name": "Dominguez Ortega Luis Federico" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21261, + "fields": { + "user": null, + "account_number": "31616698", + "user_type": "student", + "full_name": "Gomez Vaca Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21262, + "fields": { + "user": null, + "account_number": "31616609", + "user_type": "student", + "full_name": "Esquivel Acosta Samuel Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21263, + "fields": { + "user": null, + "account_number": "31616544", + "user_type": "student", + "full_name": "Acevedo Sanchez Dulce Naomi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21264, + "fields": { + "user": null, + "account_number": "31615238", + "user_type": "student", + "full_name": "Melendez Ordaz Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21265, + "fields": { + "user": null, + "account_number": "31614489", + "user_type": "student", + "full_name": "Castro Chavez Harold" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21266, + "fields": { + "user": null, + "account_number": "31613981", + "user_type": "student", + "full_name": "Hurtado Baðos Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21267, + "fields": { + "user": null, + "account_number": "31613545", + "user_type": "student", + "full_name": "Mendieta Trujillo Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21268, + "fields": { + "user": null, + "account_number": "31611351", + "user_type": "student", + "full_name": "Jaime Altamirano Jose Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21269, + "fields": { + "user": null, + "account_number": "31610628", + "user_type": "student", + "full_name": "Garcia Vargas Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21270, + "fields": { + "user": null, + "account_number": "31610251", + "user_type": "student", + "full_name": "Ramirez Avila Axel Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21271, + "fields": { + "user": null, + "account_number": "31609162", + "user_type": "student", + "full_name": "Serra Sandoval Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21272, + "fields": { + "user": null, + "account_number": "31608764", + "user_type": "student", + "full_name": "Enriquez Bravo Jason" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21273, + "fields": { + "user": null, + "account_number": "31608761", + "user_type": "student", + "full_name": "Delgadillo Orozco Erick Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21274, + "fields": { + "user": null, + "account_number": "31607691", + "user_type": "student", + "full_name": "Vazquez Bautista Pedro Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21275, + "fields": { + "user": null, + "account_number": "31607581", + "user_type": "student", + "full_name": "Yaðez Sandoval Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21276, + "fields": { + "user": null, + "account_number": "31607301", + "user_type": "student", + "full_name": "Tiburcio Suchil Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21277, + "fields": { + "user": null, + "account_number": "31607022", + "user_type": "student", + "full_name": "Santos Barranco Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21278, + "fields": { + "user": null, + "account_number": "31606857", + "user_type": "student", + "full_name": "Marino Peða Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21279, + "fields": { + "user": null, + "account_number": "31606717", + "user_type": "student", + "full_name": "Martinez Rubio Anahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21280, + "fields": { + "user": null, + "account_number": "31606449", + "user_type": "student", + "full_name": "Gamiðo Flores David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21281, + "fields": { + "user": null, + "account_number": "31605444", + "user_type": "student", + "full_name": "Medina Olivares Rosa Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21282, + "fields": { + "user": null, + "account_number": "31603792", + "user_type": "student", + "full_name": "Zavala Grimaldo Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21283, + "fields": { + "user": null, + "account_number": "31603736", + "user_type": "student", + "full_name": "Hernandez Morales Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21284, + "fields": { + "user": null, + "account_number": "31603609", + "user_type": "student", + "full_name": "Leon Rodriguez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21285, + "fields": { + "user": null, + "account_number": "31602659", + "user_type": "student", + "full_name": "Brigido Estevez Rodrigo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21286, + "fields": { + "user": null, + "account_number": "31602038", + "user_type": "student", + "full_name": "Torres Gonzalez Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21287, + "fields": { + "user": null, + "account_number": "31601967", + "user_type": "student", + "full_name": "Trejo Mendez Daniel Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21288, + "fields": { + "user": null, + "account_number": "31601901", + "user_type": "student", + "full_name": "Rosales Moreno Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21289, + "fields": { + "user": null, + "account_number": "31534351", + "user_type": "student", + "full_name": "Soberanes Monroy Balam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21290, + "fields": { + "user": null, + "account_number": "31533539", + "user_type": "student", + "full_name": "Garcia Romero Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21291, + "fields": { + "user": null, + "account_number": "31532226", + "user_type": "student", + "full_name": "Reyes Barragan Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21292, + "fields": { + "user": null, + "account_number": "31531415", + "user_type": "student", + "full_name": "Gutierrez Hernandez Yanin Soledad" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21293, + "fields": { + "user": null, + "account_number": "31529384", + "user_type": "student", + "full_name": "Macias Esquivel Victor Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21294, + "fields": { + "user": null, + "account_number": "31528904", + "user_type": "student", + "full_name": "Guerrero Vazquez Diego Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21295, + "fields": { + "user": null, + "account_number": "31526407", + "user_type": "student", + "full_name": "Perez Chavez Christopher Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21296, + "fields": { + "user": null, + "account_number": "31524014", + "user_type": "student", + "full_name": "Chindo Reyes Hannia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21297, + "fields": { + "user": null, + "account_number": "31522194", + "user_type": "student", + "full_name": "Magaða Fonseca Ediee Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21298, + "fields": { + "user": null, + "account_number": "31522021", + "user_type": "student", + "full_name": "Novoa Corona Joanna Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21299, + "fields": { + "user": null, + "account_number": "31518348", + "user_type": "student", + "full_name": "Montaðo Garcia Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21300, + "fields": { + "user": null, + "account_number": "31517626", + "user_type": "student", + "full_name": "Hernandez Mendoza Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21301, + "fields": { + "user": null, + "account_number": "31517342", + "user_type": "student", + "full_name": "Guzman Contreras Irlanda Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21302, + "fields": { + "user": null, + "account_number": "31517321", + "user_type": "student", + "full_name": "Farfan Romero Janine Sarai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21303, + "fields": { + "user": null, + "account_number": "31514315", + "user_type": "student", + "full_name": "Alvarez Cano Pamela Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21304, + "fields": { + "user": null, + "account_number": "31512420", + "user_type": "student", + "full_name": "Martinez Lopez Monica Mayte" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21305, + "fields": { + "user": null, + "account_number": "31512359", + "user_type": "student", + "full_name": "Valencia Tapia Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21306, + "fields": { + "user": null, + "account_number": "31509995", + "user_type": "student", + "full_name": "Iglesias Arias Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21307, + "fields": { + "user": null, + "account_number": "31509488", + "user_type": "student", + "full_name": "Palacios Sanchez Edgar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21308, + "fields": { + "user": null, + "account_number": "31505676", + "user_type": "student", + "full_name": "Muðoz Franco Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21309, + "fields": { + "user": null, + "account_number": "31503584", + "user_type": "student", + "full_name": "Dominguez Castro Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21310, + "fields": { + "user": null, + "account_number": "31503426", + "user_type": "student", + "full_name": "Castillo Aboytes Delfino Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21311, + "fields": { + "user": null, + "account_number": "31501670", + "user_type": "student", + "full_name": "Reyes Contreras Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21312, + "fields": { + "user": null, + "account_number": "31501664", + "user_type": "student", + "full_name": "Rivera Cisneros Pedro Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21313, + "fields": { + "user": null, + "account_number": "31501030", + "user_type": "student", + "full_name": "Ferrusca Cruz David Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21314, + "fields": { + "user": null, + "account_number": "31460264", + "user_type": "student", + "full_name": "Ornelas Gomez Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21315, + "fields": { + "user": null, + "account_number": "31435160", + "user_type": "student", + "full_name": "Alba Cortes Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21316, + "fields": { + "user": null, + "account_number": "31433790", + "user_type": "student", + "full_name": "Espejel Cardenas Christian Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21317, + "fields": { + "user": null, + "account_number": "31417037", + "user_type": "student", + "full_name": "Rodriguez Chavez Christian Gamalier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21318, + "fields": { + "user": null, + "account_number": "31409957", + "user_type": "student", + "full_name": "Buitron Arreola Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21319, + "fields": { + "user": null, + "account_number": "31362105", + "user_type": "student", + "full_name": "Garduðo Hernandez Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21320, + "fields": { + "user": null, + "account_number": "31333832", + "user_type": "student", + "full_name": "Cordova Feria Azhriel Edrei" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21321, + "fields": { + "user": null, + "account_number": "31221381", + "user_type": "student", + "full_name": "Flores Villaseðor Sander Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21322, + "fields": { + "user": null, + "account_number": "31126801", + "user_type": "student", + "full_name": "Rioja Romero Kevin Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21323, + "fields": { + "user": null, + "account_number": "31102832", + "user_type": "student", + "full_name": "Cardoso Gomez Edgar Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21324, + "fields": { + "user": null, + "account_number": "31033839", + "user_type": "student", + "full_name": "Zermeðo Perez Julio Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21325, + "fields": { + "user": null, + "account_number": "30800430", + "user_type": "student", + "full_name": "Espinosa Nuðez Jorge Luis Centli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21326, + "fields": { + "user": null, + "account_number": "30709003", + "user_type": "student", + "full_name": "Aquino Del Angel Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21327, + "fields": { + "user": null, + "account_number": "30329260", + "user_type": "student", + "full_name": "Villalobos Gonzalez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21328, + "fields": { + "user": null, + "account_number": "11500485", + "user_type": "student", + "full_name": "Casas Morales Manuel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21329, + "fields": { + "user": null, + "account_number": "11500143", + "user_type": "student", + "full_name": "Lopez Medina Andres Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21330, + "fields": { + "user": null, + "account_number": "11300351", + "user_type": "student", + "full_name": "Martinez Escobar Jenifer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21331, + "fields": { + "user": null, + "account_number": "08220412", + "user_type": "student", + "full_name": "Bustos Ramirez German" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21332, + "fields": { + "user": null, + "account_number": "07737673", + "user_type": "student", + "full_name": "Hernandez Ramirez Rogelio Santos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21333, + "fields": { + "user": null, + "account_number": "42009860", + "user_type": "student", + "full_name": "Reyes Aguillon Karla Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21334, + "fields": { + "user": null, + "account_number": "42009859", + "user_type": "student", + "full_name": "Lozano Perez Johan Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21335, + "fields": { + "user": null, + "account_number": "42009849", + "user_type": "student", + "full_name": "Badillo Barajas Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21336, + "fields": { + "user": null, + "account_number": "42009847", + "user_type": "student", + "full_name": "Hernandez Rodriguez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21337, + "fields": { + "user": null, + "account_number": "42009836", + "user_type": "student", + "full_name": "Morales Cuenca Luz Ariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21338, + "fields": { + "user": null, + "account_number": "42009835", + "user_type": "student", + "full_name": "Salinas Pontaza Astrid Nayumi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21339, + "fields": { + "user": null, + "account_number": "42009829", + "user_type": "student", + "full_name": "Palacios Crispin Javier Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21340, + "fields": { + "user": null, + "account_number": "42009828", + "user_type": "student", + "full_name": "Garcia Reyes Arely Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21341, + "fields": { + "user": null, + "account_number": "42009807", + "user_type": "student", + "full_name": "Ramirez Aguirre Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21342, + "fields": { + "user": null, + "account_number": "42009796", + "user_type": "student", + "full_name": "Gamiño Acevedo Araceli Consuelo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21343, + "fields": { + "user": null, + "account_number": "42009778", + "user_type": "student", + "full_name": "Arazueta Becerra Zamantha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21344, + "fields": { + "user": null, + "account_number": "42009771", + "user_type": "student", + "full_name": "Garcia Hernandez Alex Aldahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21345, + "fields": { + "user": null, + "account_number": "42009770", + "user_type": "student", + "full_name": "Jacinto Dominguez Aracely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21346, + "fields": { + "user": null, + "account_number": "42009767", + "user_type": "student", + "full_name": "Del Castillo Flores Luis Patricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21347, + "fields": { + "user": null, + "account_number": "42009760", + "user_type": "student", + "full_name": "Nava Mendoza Christian Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21348, + "fields": { + "user": null, + "account_number": "42009759", + "user_type": "student", + "full_name": "Gonzalez Cruz Jose Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21349, + "fields": { + "user": null, + "account_number": "42009758", + "user_type": "student", + "full_name": "Guerrero Archila Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21350, + "fields": { + "user": null, + "account_number": "42009752", + "user_type": "student", + "full_name": "Avila Nuñez Carlos Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21351, + "fields": { + "user": null, + "account_number": "42009751", + "user_type": "student", + "full_name": "Mendoza Arellano Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21352, + "fields": { + "user": null, + "account_number": "42009743", + "user_type": "student", + "full_name": "Sanchez Dominguez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21353, + "fields": { + "user": null, + "account_number": "42009742", + "user_type": "student", + "full_name": "Mireles Meras Victor Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21354, + "fields": { + "user": null, + "account_number": "42009732", + "user_type": "student", + "full_name": "Martinez Reyes Osvaldo Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21355, + "fields": { + "user": null, + "account_number": "42009731", + "user_type": "student", + "full_name": "Solis Garcia Manuel Tonathiu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21356, + "fields": { + "user": null, + "account_number": "42009719", + "user_type": "student", + "full_name": "Morales Velasco Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21357, + "fields": { + "user": null, + "account_number": "42009713", + "user_type": "student", + "full_name": "Gomez Olalde Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21358, + "fields": { + "user": null, + "account_number": "42009688", + "user_type": "student", + "full_name": "Jimenez Martinez Ana Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21359, + "fields": { + "user": null, + "account_number": "42009664", + "user_type": "student", + "full_name": "Meza Carrillo Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21360, + "fields": { + "user": null, + "account_number": "42009660", + "user_type": "student", + "full_name": "Salgado Arvizu Angel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21361, + "fields": { + "user": null, + "account_number": "42009637", + "user_type": "student", + "full_name": "Gerard Valdes Emilio Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21362, + "fields": { + "user": null, + "account_number": "42009636", + "user_type": "student", + "full_name": "Alarcon Estrada Rodrigo German" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21363, + "fields": { + "user": null, + "account_number": "42009612", + "user_type": "student", + "full_name": "Chavarria Nolasco Edgar Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21364, + "fields": { + "user": null, + "account_number": "42009610", + "user_type": "student", + "full_name": "Godinez Avalos Erick Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21365, + "fields": { + "user": null, + "account_number": "42009609", + "user_type": "student", + "full_name": "Vega Vazquez Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21366, + "fields": { + "user": null, + "account_number": "42009600", + "user_type": "student", + "full_name": "Flores Fuentes Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21367, + "fields": { + "user": null, + "account_number": "42009594", + "user_type": "student", + "full_name": "Facio Mora Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21368, + "fields": { + "user": null, + "account_number": "42009593", + "user_type": "student", + "full_name": "Serrano Gonzalez Jesus Renato" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21369, + "fields": { + "user": null, + "account_number": "42009585", + "user_type": "student", + "full_name": "Sanchez Perez Perla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21370, + "fields": { + "user": null, + "account_number": "42009559", + "user_type": "student", + "full_name": "Ortega Hernandez Dana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21371, + "fields": { + "user": null, + "account_number": "42009550", + "user_type": "student", + "full_name": "Sansinena Mejia Jorge Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21372, + "fields": { + "user": null, + "account_number": "42009540", + "user_type": "student", + "full_name": "Melchor Zaragoza Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21373, + "fields": { + "user": null, + "account_number": "42009539", + "user_type": "student", + "full_name": "Lozano Garnica Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21374, + "fields": { + "user": null, + "account_number": "42009538", + "user_type": "student", + "full_name": "Mateo Cardenas Jose Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21375, + "fields": { + "user": null, + "account_number": "42009516", + "user_type": "student", + "full_name": "Hernandez Garcia Victor Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21376, + "fields": { + "user": null, + "account_number": "42009493", + "user_type": "student", + "full_name": "Ordoñez Perez Arizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21377, + "fields": { + "user": null, + "account_number": "42009477", + "user_type": "student", + "full_name": "Magallanes Vazquez Jesus Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21378, + "fields": { + "user": null, + "account_number": "42009468", + "user_type": "student", + "full_name": "Ponce De Leon Sanchez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21379, + "fields": { + "user": null, + "account_number": "42009460", + "user_type": "student", + "full_name": "Cruz Guzman Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21380, + "fields": { + "user": null, + "account_number": "42009416", + "user_type": "student", + "full_name": "Miranda Moreno Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21381, + "fields": { + "user": null, + "account_number": "42009415", + "user_type": "student", + "full_name": "Villagran Rivera Felix Gregorio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21382, + "fields": { + "user": null, + "account_number": "42009408", + "user_type": "student", + "full_name": "Gonzalez Del Toral Jenny Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21383, + "fields": { + "user": null, + "account_number": "42009377", + "user_type": "student", + "full_name": "Barradas Cerna Adrian Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21384, + "fields": { + "user": null, + "account_number": "42009374", + "user_type": "student", + "full_name": "Torres Chavez Nava Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21385, + "fields": { + "user": null, + "account_number": "42009373", + "user_type": "student", + "full_name": "Juarez Soriano Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21386, + "fields": { + "user": null, + "account_number": "42009367", + "user_type": "student", + "full_name": "Rodriguez Orozco Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21387, + "fields": { + "user": null, + "account_number": "42009366", + "user_type": "student", + "full_name": "Sanchez Sanchez Angel Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21388, + "fields": { + "user": null, + "account_number": "42009332", + "user_type": "student", + "full_name": "Sanchez Llamas Jesus Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21389, + "fields": { + "user": null, + "account_number": "42009331", + "user_type": "student", + "full_name": "Kim Lopez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21390, + "fields": { + "user": null, + "account_number": "42009321", + "user_type": "student", + "full_name": "Valero Silva Omar Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21391, + "fields": { + "user": null, + "account_number": "42009320", + "user_type": "student", + "full_name": "Puga Navarro Thaili" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21392, + "fields": { + "user": null, + "account_number": "42009311", + "user_type": "student", + "full_name": "Tellez Rojas Laura Gisela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21393, + "fields": { + "user": null, + "account_number": "42009305", + "user_type": "student", + "full_name": "Torres Machorro Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21394, + "fields": { + "user": null, + "account_number": "42009303", + "user_type": "student", + "full_name": "Santos Mejia Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21395, + "fields": { + "user": null, + "account_number": "42009286", + "user_type": "student", + "full_name": "Garcia Garcia Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21396, + "fields": { + "user": null, + "account_number": "42009285", + "user_type": "student", + "full_name": "Olvera Garcia Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21397, + "fields": { + "user": null, + "account_number": "42009284", + "user_type": "student", + "full_name": "Hurtado Escalera Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21398, + "fields": { + "user": null, + "account_number": "42009277", + "user_type": "student", + "full_name": "Aguilar Marquez Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21399, + "fields": { + "user": null, + "account_number": "42009262", + "user_type": "student", + "full_name": "Miranda Perez Jaime Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21400, + "fields": { + "user": null, + "account_number": "42009246", + "user_type": "student", + "full_name": "Hernandez Sandoval Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21401, + "fields": { + "user": null, + "account_number": "42009239", + "user_type": "student", + "full_name": "Lopez Encino Carlos Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21402, + "fields": { + "user": null, + "account_number": "42009218", + "user_type": "student", + "full_name": "Bojorges Terrazas Jessica Yessenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21403, + "fields": { + "user": null, + "account_number": "42009213", + "user_type": "student", + "full_name": "Hernandez Suarez Christopher Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21404, + "fields": { + "user": null, + "account_number": "42009211", + "user_type": "student", + "full_name": "Solano Flores Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21405, + "fields": { + "user": null, + "account_number": "42009209", + "user_type": "student", + "full_name": "Espada Lopez Itzayana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21406, + "fields": { + "user": null, + "account_number": "42009207", + "user_type": "student", + "full_name": "Sanchez Franco Andrea Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21407, + "fields": { + "user": null, + "account_number": "42009199", + "user_type": "student", + "full_name": "Calvillo Cavita Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21408, + "fields": { + "user": null, + "account_number": "42009196", + "user_type": "student", + "full_name": "Balderas Vargas Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21409, + "fields": { + "user": null, + "account_number": "42009180", + "user_type": "student", + "full_name": "Dominguez Landeros Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21410, + "fields": { + "user": null, + "account_number": "42009169", + "user_type": "student", + "full_name": "Huerta De Jesus Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21411, + "fields": { + "user": null, + "account_number": "42009163", + "user_type": "student", + "full_name": "Ortega Vergara Angel Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21412, + "fields": { + "user": null, + "account_number": "42009135", + "user_type": "student", + "full_name": "Torres Albino Uriel Benito" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21413, + "fields": { + "user": null, + "account_number": "42009121", + "user_type": "student", + "full_name": "Rios Hernandez Ismael Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21414, + "fields": { + "user": null, + "account_number": "42009115", + "user_type": "student", + "full_name": "Ortega Pacheco Jorge Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21415, + "fields": { + "user": null, + "account_number": "42009075", + "user_type": "student", + "full_name": "Zavala Santana Cesar Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21416, + "fields": { + "user": null, + "account_number": "42009069", + "user_type": "student", + "full_name": "Martinez Villafañe Edgar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21417, + "fields": { + "user": null, + "account_number": "42009061", + "user_type": "student", + "full_name": "Gallegos Tena Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21418, + "fields": { + "user": null, + "account_number": "42009060", + "user_type": "student", + "full_name": "Perez Rosales Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21419, + "fields": { + "user": null, + "account_number": "42009043", + "user_type": "student", + "full_name": "Ascencio Garcia Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21420, + "fields": { + "user": null, + "account_number": "42009042", + "user_type": "student", + "full_name": "Avelar Alvarado Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21421, + "fields": { + "user": null, + "account_number": "42009036", + "user_type": "student", + "full_name": "Zarate Gonzalez Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21422, + "fields": { + "user": null, + "account_number": "42009034", + "user_type": "student", + "full_name": "Ortiz Sanchez Yoali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21423, + "fields": { + "user": null, + "account_number": "42009008", + "user_type": "student", + "full_name": "Siles Gonzalez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21424, + "fields": { + "user": null, + "account_number": "42008991", + "user_type": "student", + "full_name": "Santana Baca Erick Akzayakatl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21425, + "fields": { + "user": null, + "account_number": "42008970", + "user_type": "student", + "full_name": "Barillas Rac Oscar Estuardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21426, + "fields": { + "user": null, + "account_number": "42008969", + "user_type": "student", + "full_name": "Rueda Valladares Anette Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21427, + "fields": { + "user": null, + "account_number": "42008958", + "user_type": "student", + "full_name": "Contreras Muñiz Jorge Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21428, + "fields": { + "user": null, + "account_number": "42008957", + "user_type": "student", + "full_name": "Martinez Hernandez Miriam Anel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21429, + "fields": { + "user": null, + "account_number": "42008943", + "user_type": "student", + "full_name": "Cruz Minero Nancy Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21430, + "fields": { + "user": null, + "account_number": "42008930", + "user_type": "student", + "full_name": "Pineda Rodriguez Edgar Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21431, + "fields": { + "user": null, + "account_number": "42008919", + "user_type": "student", + "full_name": "Bautista Lopez Jafete" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21432, + "fields": { + "user": null, + "account_number": "42008882", + "user_type": "student", + "full_name": "Rodriguez Vazquez Heidi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21433, + "fields": { + "user": null, + "account_number": "42008849", + "user_type": "student", + "full_name": "Hernandez Echeveste Jesus Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21434, + "fields": { + "user": null, + "account_number": "42008836", + "user_type": "student", + "full_name": "Alfaro Quiroz Hector Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21435, + "fields": { + "user": null, + "account_number": "42008828", + "user_type": "student", + "full_name": "Briano Aviles Cesar Agustin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21436, + "fields": { + "user": null, + "account_number": "42008827", + "user_type": "student", + "full_name": "Romero Gonzalez Juan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21437, + "fields": { + "user": null, + "account_number": "42008806", + "user_type": "student", + "full_name": "Canton Hernandez Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21438, + "fields": { + "user": null, + "account_number": "42008805", + "user_type": "student", + "full_name": "Pardo Juarez Marlene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21439, + "fields": { + "user": null, + "account_number": "42008789", + "user_type": "student", + "full_name": "Barrera Cardoso Angel Camilo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21440, + "fields": { + "user": null, + "account_number": "42008783", + "user_type": "student", + "full_name": "Flores Fabila Eliel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21441, + "fields": { + "user": null, + "account_number": "42008768", + "user_type": "student", + "full_name": "Ordoñez Morales Andrick Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21442, + "fields": { + "user": null, + "account_number": "42008750", + "user_type": "student", + "full_name": "Carreño Alvarado Enrique Hassam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21443, + "fields": { + "user": null, + "account_number": "42008742", + "user_type": "student", + "full_name": "Gilbon Falcon Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21444, + "fields": { + "user": null, + "account_number": "42008732", + "user_type": "student", + "full_name": "Bustamante Perez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21445, + "fields": { + "user": null, + "account_number": "42008707", + "user_type": "student", + "full_name": "Vazquez Barajas Grecia Jared" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21446, + "fields": { + "user": null, + "account_number": "42008681", + "user_type": "student", + "full_name": "Guzman Torres Gustavo Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21447, + "fields": { + "user": null, + "account_number": "42008673", + "user_type": "student", + "full_name": "Siles Ochoa Edgar Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21448, + "fields": { + "user": null, + "account_number": "42008666", + "user_type": "student", + "full_name": "Agavio Trujillo Carlos Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21449, + "fields": { + "user": null, + "account_number": "42008664", + "user_type": "student", + "full_name": "Paramo Rodriguez Sergio Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21450, + "fields": { + "user": null, + "account_number": "42008649", + "user_type": "student", + "full_name": "Rivas Montoya Ingrid Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21451, + "fields": { + "user": null, + "account_number": "42008637", + "user_type": "student", + "full_name": "Perez Delgado Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21452, + "fields": { + "user": null, + "account_number": "42008635", + "user_type": "student", + "full_name": "Cabello Villagomez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21453, + "fields": { + "user": null, + "account_number": "42008611", + "user_type": "student", + "full_name": "Oaxaca Zepeda Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21454, + "fields": { + "user": null, + "account_number": "42008595", + "user_type": "student", + "full_name": "Ledezma Hernandez Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21455, + "fields": { + "user": null, + "account_number": "42008576", + "user_type": "student", + "full_name": "Ceron Diaz Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21456, + "fields": { + "user": null, + "account_number": "42008562", + "user_type": "student", + "full_name": "Martinez Dominguez Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21457, + "fields": { + "user": null, + "account_number": "42008556", + "user_type": "student", + "full_name": "Marquez Martinez Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21458, + "fields": { + "user": null, + "account_number": "42008544", + "user_type": "student", + "full_name": "Encenfe Martinez Evelin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21459, + "fields": { + "user": null, + "account_number": "42008542", + "user_type": "student", + "full_name": "Franco Altamirano Shai Danao" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21460, + "fields": { + "user": null, + "account_number": "42008532", + "user_type": "student", + "full_name": "Tenorio Zamora Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21461, + "fields": { + "user": null, + "account_number": "42008517", + "user_type": "student", + "full_name": "Sanchez Sanchez Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21462, + "fields": { + "user": null, + "account_number": "42008488", + "user_type": "student", + "full_name": "Ferrara Dominguez Ismael Edrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21463, + "fields": { + "user": null, + "account_number": "42008484", + "user_type": "student", + "full_name": "Otero Garduño Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21464, + "fields": { + "user": null, + "account_number": "42008476", + "user_type": "student", + "full_name": "Gutierrez Baeza Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21465, + "fields": { + "user": null, + "account_number": "42008475", + "user_type": "student", + "full_name": "Garcia Sandoval Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21466, + "fields": { + "user": null, + "account_number": "42008447", + "user_type": "student", + "full_name": "Alvarez Gomez Edgar Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21467, + "fields": { + "user": null, + "account_number": "42008432", + "user_type": "student", + "full_name": "Medina Vazquez Victor Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21468, + "fields": { + "user": null, + "account_number": "42008419", + "user_type": "student", + "full_name": "Martinez De La Sancha Carlos Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21469, + "fields": { + "user": null, + "account_number": "42008418", + "user_type": "student", + "full_name": "Catarino Martinez Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21470, + "fields": { + "user": null, + "account_number": "42008403", + "user_type": "student", + "full_name": "Castrejon Zambrano Zaira Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21471, + "fields": { + "user": null, + "account_number": "42008374", + "user_type": "student", + "full_name": "Hernandez Flores Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21472, + "fields": { + "user": null, + "account_number": "42008373", + "user_type": "student", + "full_name": "Santana Escartin Ivan Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21473, + "fields": { + "user": null, + "account_number": "42008310", + "user_type": "student", + "full_name": "Bustamante Lira Emilio Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21474, + "fields": { + "user": null, + "account_number": "42008295", + "user_type": "student", + "full_name": "Lopez Ceballos Pablo Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21475, + "fields": { + "user": null, + "account_number": "42008278", + "user_type": "student", + "full_name": "Romero Cervantes Lizeth Adriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21476, + "fields": { + "user": null, + "account_number": "42008259", + "user_type": "student", + "full_name": "Martinez Rojo Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21477, + "fields": { + "user": null, + "account_number": "42008252", + "user_type": "student", + "full_name": "Vazquez Sanchez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21478, + "fields": { + "user": null, + "account_number": "42008248", + "user_type": "student", + "full_name": "Sanchez Sarabia Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21479, + "fields": { + "user": null, + "account_number": "42008227", + "user_type": "student", + "full_name": "Alvarado Sanchez Isaac Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21480, + "fields": { + "user": null, + "account_number": "41811285", + "user_type": "student", + "full_name": "Barba Aleman Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21481, + "fields": { + "user": null, + "account_number": "41808764", + "user_type": "student", + "full_name": "Guzman Nuñez Irving Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21482, + "fields": { + "user": null, + "account_number": "41205362", + "user_type": "student", + "full_name": "Fuentes Tapia Heriberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21483, + "fields": { + "user": null, + "account_number": "31773836", + "user_type": "student", + "full_name": "Jimenez Munguia Andres Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21484, + "fields": { + "user": null, + "account_number": "31769723", + "user_type": "student", + "full_name": "Perez Martinez Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21485, + "fields": { + "user": null, + "account_number": "31766695", + "user_type": "student", + "full_name": "Maya Campos Danna Regina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21486, + "fields": { + "user": null, + "account_number": "31762904", + "user_type": "student", + "full_name": "Ahumada Leon Masiel Asuan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21487, + "fields": { + "user": null, + "account_number": "31757792", + "user_type": "student", + "full_name": "Urrutia Lopez Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21488, + "fields": { + "user": null, + "account_number": "31750602", + "user_type": "student", + "full_name": "Sandoval De La Torre Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21489, + "fields": { + "user": null, + "account_number": "31750014", + "user_type": "student", + "full_name": "Bravo Gonzalez Diego Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21490, + "fields": { + "user": null, + "account_number": "31735581", + "user_type": "student", + "full_name": "Cruz Vazquez Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21491, + "fields": { + "user": null, + "account_number": "31735463", + "user_type": "student", + "full_name": "Ramos Miguel Roxana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21492, + "fields": { + "user": null, + "account_number": "31735270", + "user_type": "student", + "full_name": "Lucio Mora Casandra Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21493, + "fields": { + "user": null, + "account_number": "31733911", + "user_type": "student", + "full_name": "Delgado Ramos Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21494, + "fields": { + "user": null, + "account_number": "31733392", + "user_type": "student", + "full_name": "Paulin Arista Hiram Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21495, + "fields": { + "user": null, + "account_number": "31733208", + "user_type": "student", + "full_name": "Gomez Vega Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21496, + "fields": { + "user": null, + "account_number": "31733186", + "user_type": "student", + "full_name": "Olivares Sevilla Pedro Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21497, + "fields": { + "user": null, + "account_number": "31732698", + "user_type": "student", + "full_name": "Mendoza Ramos Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21498, + "fields": { + "user": null, + "account_number": "31731749", + "user_type": "student", + "full_name": "Santos Sanchez Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21499, + "fields": { + "user": null, + "account_number": "31731310", + "user_type": "student", + "full_name": "Rocha Cadena Andres Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21500, + "fields": { + "user": null, + "account_number": "31730405", + "user_type": "student", + "full_name": "Millan Perez Alma Irais" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21501, + "fields": { + "user": null, + "account_number": "31730052", + "user_type": "student", + "full_name": "Santamaria Jimenez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21502, + "fields": { + "user": null, + "account_number": "31729872", + "user_type": "student", + "full_name": "Ruiz Pereda Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21503, + "fields": { + "user": null, + "account_number": "31729726", + "user_type": "student", + "full_name": "Galindo Diaz Lizete Esperanza" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21504, + "fields": { + "user": null, + "account_number": "31729724", + "user_type": "student", + "full_name": "Badillo Dominguez Hector Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21505, + "fields": { + "user": null, + "account_number": "31729201", + "user_type": "student", + "full_name": "Martinez Manjarrez Jacobo Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21506, + "fields": { + "user": null, + "account_number": "31729200", + "user_type": "student", + "full_name": "Lozada Sanchez Edgar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21507, + "fields": { + "user": null, + "account_number": "31729007", + "user_type": "student", + "full_name": "Clemente Gonzalez Ana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21508, + "fields": { + "user": null, + "account_number": "31728876", + "user_type": "student", + "full_name": "Serrano Alegria Brian Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21509, + "fields": { + "user": null, + "account_number": "31728263", + "user_type": "student", + "full_name": "Perez Ibarra Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21510, + "fields": { + "user": null, + "account_number": "31728019", + "user_type": "student", + "full_name": "Rodriguez Becerril Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21511, + "fields": { + "user": null, + "account_number": "31727908", + "user_type": "student", + "full_name": "Sanchez Gonzalez Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21512, + "fields": { + "user": null, + "account_number": "31727810", + "user_type": "student", + "full_name": "Reyes Castillo Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21513, + "fields": { + "user": null, + "account_number": "31727686", + "user_type": "student", + "full_name": "Antonio Palma Job" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21514, + "fields": { + "user": null, + "account_number": "31727368", + "user_type": "student", + "full_name": "Galvan Rodriguez Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21515, + "fields": { + "user": null, + "account_number": "31726936", + "user_type": "student", + "full_name": "Gonzalez Morales Marco Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21516, + "fields": { + "user": null, + "account_number": "31726626", + "user_type": "student", + "full_name": "Lopez Gonzalez Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21517, + "fields": { + "user": null, + "account_number": "31726422", + "user_type": "student", + "full_name": "Garcia De La Paz Diego Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21518, + "fields": { + "user": null, + "account_number": "31726110", + "user_type": "student", + "full_name": "Suarez Martinez Lizeth Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21519, + "fields": { + "user": null, + "account_number": "31726068", + "user_type": "student", + "full_name": "Padilla Arrieta Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21520, + "fields": { + "user": null, + "account_number": "31725991", + "user_type": "student", + "full_name": "Rodriguez Felipe Adrian Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21521, + "fields": { + "user": null, + "account_number": "31725287", + "user_type": "student", + "full_name": "Pagaza Lopez Isaac Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21522, + "fields": { + "user": null, + "account_number": "31724705", + "user_type": "student", + "full_name": "Hernandez Garcia Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21523, + "fields": { + "user": null, + "account_number": "31724562", + "user_type": "student", + "full_name": "Escalante Perez Bruno Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21524, + "fields": { + "user": null, + "account_number": "31724477", + "user_type": "student", + "full_name": "Villafuerte Sanchez Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21525, + "fields": { + "user": null, + "account_number": "31724328", + "user_type": "student", + "full_name": "Rosales Herrera Jonathan Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21526, + "fields": { + "user": null, + "account_number": "31724188", + "user_type": "student", + "full_name": "Romo Aldaco Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21527, + "fields": { + "user": null, + "account_number": "31723774", + "user_type": "student", + "full_name": "Constantino Martinez Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21528, + "fields": { + "user": null, + "account_number": "31723536", + "user_type": "student", + "full_name": "Miranda Mendoza Jose Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21529, + "fields": { + "user": null, + "account_number": "31723450", + "user_type": "student", + "full_name": "Raya Maldonado Daniel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21530, + "fields": { + "user": null, + "account_number": "31722679", + "user_type": "student", + "full_name": "Diaz Uribe Luis Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21531, + "fields": { + "user": null, + "account_number": "31722285", + "user_type": "student", + "full_name": "Perez Briseño Ricardo Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21532, + "fields": { + "user": null, + "account_number": "31721899", + "user_type": "student", + "full_name": "Cabrera Vargas Eva Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21533, + "fields": { + "user": null, + "account_number": "31721381", + "user_type": "student", + "full_name": "Torrecilla Leon Frida Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21534, + "fields": { + "user": null, + "account_number": "31721233", + "user_type": "student", + "full_name": "Lopez Padron Jesus Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21535, + "fields": { + "user": null, + "account_number": "31721079", + "user_type": "student", + "full_name": "Jimenez Martinez Rut Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21536, + "fields": { + "user": null, + "account_number": "31720393", + "user_type": "student", + "full_name": "Garcia Rivera Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21537, + "fields": { + "user": null, + "account_number": "31720137", + "user_type": "student", + "full_name": "Salazar Silverio Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21538, + "fields": { + "user": null, + "account_number": "31719674", + "user_type": "student", + "full_name": "Santana Rivera German" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21539, + "fields": { + "user": null, + "account_number": "31719576", + "user_type": "student", + "full_name": "Jaimes Velasco Adrian Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21540, + "fields": { + "user": null, + "account_number": "31719349", + "user_type": "student", + "full_name": "Araujo Palestina Claudio Hassiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21541, + "fields": { + "user": null, + "account_number": "31718829", + "user_type": "student", + "full_name": "Galvan Alvarez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21542, + "fields": { + "user": null, + "account_number": "31717576", + "user_type": "student", + "full_name": "Arellano Alvarez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21543, + "fields": { + "user": null, + "account_number": "31716895", + "user_type": "student", + "full_name": "Perez Ortiz Ulises Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21544, + "fields": { + "user": null, + "account_number": "31716498", + "user_type": "student", + "full_name": "Cano Fortiz Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21545, + "fields": { + "user": null, + "account_number": "31716311", + "user_type": "student", + "full_name": "Chavez Herrera Maria Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21546, + "fields": { + "user": null, + "account_number": "31714678", + "user_type": "student", + "full_name": "Zepeda Jimenez Saul Silvestre" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21547, + "fields": { + "user": null, + "account_number": "31713953", + "user_type": "student", + "full_name": "Hinojosa Rueda Pedro Anael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21548, + "fields": { + "user": null, + "account_number": "31713585", + "user_type": "student", + "full_name": "Callejas Hernandez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21549, + "fields": { + "user": null, + "account_number": "31713499", + "user_type": "student", + "full_name": "Campuzano Piña Ivan Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21550, + "fields": { + "user": null, + "account_number": "31713432", + "user_type": "student", + "full_name": "Peralta Cortes Jorge Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21551, + "fields": { + "user": null, + "account_number": "31713186", + "user_type": "student", + "full_name": "Suriano Granados Duncan Zuriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21552, + "fields": { + "user": null, + "account_number": "31713064", + "user_type": "student", + "full_name": "Vega Ayala Lizette Magaly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21553, + "fields": { + "user": null, + "account_number": "31713013", + "user_type": "student", + "full_name": "Reyes Velasco Ricardo Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21554, + "fields": { + "user": null, + "account_number": "31712884", + "user_type": "student", + "full_name": "Rodriguez Lopez Juan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21555, + "fields": { + "user": null, + "account_number": "31712429", + "user_type": "student", + "full_name": "Franco Lona Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21556, + "fields": { + "user": null, + "account_number": "31712242", + "user_type": "student", + "full_name": "Villegas Ortiz Cesar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21557, + "fields": { + "user": null, + "account_number": "31711919", + "user_type": "student", + "full_name": "Ortega Miranda Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21558, + "fields": { + "user": null, + "account_number": "31711706", + "user_type": "student", + "full_name": "Mendoza Zamora Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21559, + "fields": { + "user": null, + "account_number": "31711695", + "user_type": "student", + "full_name": "Buenrostro Cruces Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21560, + "fields": { + "user": null, + "account_number": "31711037", + "user_type": "student", + "full_name": "Cortes Cortes Bryan Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21561, + "fields": { + "user": null, + "account_number": "31710931", + "user_type": "student", + "full_name": "Armenta Gonzalez Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21562, + "fields": { + "user": null, + "account_number": "31710726", + "user_type": "student", + "full_name": "Cervantes Gomez Jose Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21563, + "fields": { + "user": null, + "account_number": "31710524", + "user_type": "student", + "full_name": "Gama Ruiz Alan Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21564, + "fields": { + "user": null, + "account_number": "31710324", + "user_type": "student", + "full_name": "Solis Retana Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21565, + "fields": { + "user": null, + "account_number": "31710244", + "user_type": "student", + "full_name": "Rodriguez Mejia Saul Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21566, + "fields": { + "user": null, + "account_number": "31709668", + "user_type": "student", + "full_name": "Galaviz Garcia Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21567, + "fields": { + "user": null, + "account_number": "31709126", + "user_type": "student", + "full_name": "Hernandez Huchin Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21568, + "fields": { + "user": null, + "account_number": "31708322", + "user_type": "student", + "full_name": "Abreu Alvarez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21569, + "fields": { + "user": null, + "account_number": "31707969", + "user_type": "student", + "full_name": "Peralta Herrera Angus Argyle Irving Aram Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21570, + "fields": { + "user": null, + "account_number": "31707356", + "user_type": "student", + "full_name": "Arenas Juarez Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21571, + "fields": { + "user": null, + "account_number": "31706933", + "user_type": "student", + "full_name": "Chavez Ibares Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21572, + "fields": { + "user": null, + "account_number": "31706025", + "user_type": "student", + "full_name": "Serrano Cardoso Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21573, + "fields": { + "user": null, + "account_number": "31705853", + "user_type": "student", + "full_name": "Del Angel Santiago Edgar Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21574, + "fields": { + "user": null, + "account_number": "31705495", + "user_type": "student", + "full_name": "Salgado Ortiz Daniel Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21575, + "fields": { + "user": null, + "account_number": "31703618", + "user_type": "student", + "full_name": "Martinez Caracoza Ivan Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21576, + "fields": { + "user": null, + "account_number": "31703487", + "user_type": "student", + "full_name": "Bautista Rivera Jose Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21577, + "fields": { + "user": null, + "account_number": "31702017", + "user_type": "student", + "full_name": "Hernandez Rojas Hugo Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21578, + "fields": { + "user": null, + "account_number": "31701949", + "user_type": "student", + "full_name": "Freyre Godoy Mariano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21579, + "fields": { + "user": null, + "account_number": "31701812", + "user_type": "student", + "full_name": "Fragoso Velazquez Allison Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21580, + "fields": { + "user": null, + "account_number": "31701459", + "user_type": "student", + "full_name": "Gonzalez Ortega Fernando Elias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21581, + "fields": { + "user": null, + "account_number": "31701394", + "user_type": "student", + "full_name": "Chavez Monroy Andrea Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21582, + "fields": { + "user": null, + "account_number": "31701226", + "user_type": "student", + "full_name": "Macias Ramirez Gerardo Gohan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21583, + "fields": { + "user": null, + "account_number": "31700501", + "user_type": "student", + "full_name": "Morales Matamoros Vianey Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21584, + "fields": { + "user": null, + "account_number": "31700349", + "user_type": "student", + "full_name": "Castillo Aboytes Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21585, + "fields": { + "user": null, + "account_number": "31700134", + "user_type": "student", + "full_name": "Garcia Alarcon Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21586, + "fields": { + "user": null, + "account_number": "31671562", + "user_type": "student", + "full_name": "Martinez Espinosa Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21587, + "fields": { + "user": null, + "account_number": "31664067", + "user_type": "student", + "full_name": "Kramsky Iturbide Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21588, + "fields": { + "user": null, + "account_number": "31658065", + "user_type": "student", + "full_name": "Hernandez Cuellar Edson Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21589, + "fields": { + "user": null, + "account_number": "31654636", + "user_type": "student", + "full_name": "Echeveste Nuñez Arturo Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21590, + "fields": { + "user": null, + "account_number": "31635362", + "user_type": "student", + "full_name": "Parra Vazquez Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21591, + "fields": { + "user": null, + "account_number": "31635347", + "user_type": "student", + "full_name": "Pineda Chavez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21592, + "fields": { + "user": null, + "account_number": "31635255", + "user_type": "student", + "full_name": "Merecias Nieva Fernando David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21593, + "fields": { + "user": null, + "account_number": "31634746", + "user_type": "student", + "full_name": "Salceda Solorzano Roman Said" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21594, + "fields": { + "user": null, + "account_number": "31634520", + "user_type": "student", + "full_name": "Perez Aburto Ivan Tadeo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21595, + "fields": { + "user": null, + "account_number": "31633891", + "user_type": "student", + "full_name": "Perez Lugo Kevin Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21596, + "fields": { + "user": null, + "account_number": "31633668", + "user_type": "student", + "full_name": "Cancino Roldan Javier Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21597, + "fields": { + "user": null, + "account_number": "31633647", + "user_type": "student", + "full_name": "Garcia Moreno Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21598, + "fields": { + "user": null, + "account_number": "31633005", + "user_type": "student", + "full_name": "Reyes Martinez Tania Mabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21599, + "fields": { + "user": null, + "account_number": "31631654", + "user_type": "student", + "full_name": "Albarran Lopez Denisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21600, + "fields": { + "user": null, + "account_number": "31631512", + "user_type": "student", + "full_name": "Saucedo Martinez Brayan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21601, + "fields": { + "user": null, + "account_number": "31631113", + "user_type": "student", + "full_name": "Palafox Cuapio Isai Zuriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21602, + "fields": { + "user": null, + "account_number": "31630860", + "user_type": "student", + "full_name": "Hernandez Juarez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21603, + "fields": { + "user": null, + "account_number": "31630783", + "user_type": "student", + "full_name": "Gonzalez Andrade Ethan Allan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21604, + "fields": { + "user": null, + "account_number": "31629873", + "user_type": "student", + "full_name": "Jimenez Montero Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21605, + "fields": { + "user": null, + "account_number": "31629099", + "user_type": "student", + "full_name": "Montes De Oca Ramirez Adhair Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21606, + "fields": { + "user": null, + "account_number": "31628777", + "user_type": "student", + "full_name": "Pulido Zariñan Brian Job" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21607, + "fields": { + "user": null, + "account_number": "31628229", + "user_type": "student", + "full_name": "Garcia Sanchez Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21608, + "fields": { + "user": null, + "account_number": "31627984", + "user_type": "student", + "full_name": "Gonzalez Rodriguez Aaron Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21609, + "fields": { + "user": null, + "account_number": "31627763", + "user_type": "student", + "full_name": "Martinez Morales Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21610, + "fields": { + "user": null, + "account_number": "31626657", + "user_type": "student", + "full_name": "Becerril Sanchez Nancy Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21611, + "fields": { + "user": null, + "account_number": "31626204", + "user_type": "student", + "full_name": "Lopez Martinez Sergio Demis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21612, + "fields": { + "user": null, + "account_number": "31625558", + "user_type": "student", + "full_name": "Muñoz Ruiz Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21613, + "fields": { + "user": null, + "account_number": "31625072", + "user_type": "student", + "full_name": "Valdes Cambero Estefany Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21614, + "fields": { + "user": null, + "account_number": "31624904", + "user_type": "student", + "full_name": "Villela Andrade Aksel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21615, + "fields": { + "user": null, + "account_number": "31623883", + "user_type": "student", + "full_name": "Reyes Chias Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21616, + "fields": { + "user": null, + "account_number": "31623707", + "user_type": "student", + "full_name": "Olguin Garcia Angel Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21617, + "fields": { + "user": null, + "account_number": "31623223", + "user_type": "student", + "full_name": "Perez Acosta Asiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21618, + "fields": { + "user": null, + "account_number": "31621923", + "user_type": "student", + "full_name": "Ortiz Jimenez Saul Renato" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21619, + "fields": { + "user": null, + "account_number": "31621855", + "user_type": "student", + "full_name": "Camacho Gomez Itzel Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21620, + "fields": { + "user": null, + "account_number": "31621431", + "user_type": "student", + "full_name": "Pichardo Rivas Alexis Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21621, + "fields": { + "user": null, + "account_number": "31621390", + "user_type": "student", + "full_name": "Gonzalez Osegueda Tamara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21622, + "fields": { + "user": null, + "account_number": "31619875", + "user_type": "student", + "full_name": "Santiago Cruz Leopoldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21623, + "fields": { + "user": null, + "account_number": "31619470", + "user_type": "student", + "full_name": "De Alba Rios Avril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21624, + "fields": { + "user": null, + "account_number": "31618597", + "user_type": "student", + "full_name": "Jimenez Carballo Luis David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21625, + "fields": { + "user": null, + "account_number": "31618502", + "user_type": "student", + "full_name": "Robles Gomez Mariano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21626, + "fields": { + "user": null, + "account_number": "31618315", + "user_type": "student", + "full_name": "Galindo De Jesus Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21627, + "fields": { + "user": null, + "account_number": "31618177", + "user_type": "student", + "full_name": "Hernandez Ruiz Yarel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21628, + "fields": { + "user": null, + "account_number": "31617122", + "user_type": "student", + "full_name": "Escobar Alarcon Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21629, + "fields": { + "user": null, + "account_number": "31616827", + "user_type": "student", + "full_name": "Garcia Osorio Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21630, + "fields": { + "user": null, + "account_number": "31616286", + "user_type": "student", + "full_name": "Ramirez Juarez Raul Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21631, + "fields": { + "user": null, + "account_number": "31615225", + "user_type": "student", + "full_name": "Morales Santana Miguel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21632, + "fields": { + "user": null, + "account_number": "31614933", + "user_type": "student", + "full_name": "Solis Vilchis Roberto Atonatiuh" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21633, + "fields": { + "user": null, + "account_number": "31614593", + "user_type": "student", + "full_name": "Gonzalez Muñoz Luciano Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21634, + "fields": { + "user": null, + "account_number": "31614221", + "user_type": "student", + "full_name": "Rivas Torres Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21635, + "fields": { + "user": null, + "account_number": "31612838", + "user_type": "student", + "full_name": "Hernandez Peralta Sergio Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21636, + "fields": { + "user": null, + "account_number": "31611079", + "user_type": "student", + "full_name": "Almaraz Valverde Perla Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21637, + "fields": { + "user": null, + "account_number": "31610820", + "user_type": "student", + "full_name": "Monter Corona Arait" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21638, + "fields": { + "user": null, + "account_number": "31610408", + "user_type": "student", + "full_name": "Ochoa Chavarria Kevin Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21639, + "fields": { + "user": null, + "account_number": "31610066", + "user_type": "student", + "full_name": "Portocarrero Meza Brenda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21640, + "fields": { + "user": null, + "account_number": "31609742", + "user_type": "student", + "full_name": "Perez Arroyo Diana Denise" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21641, + "fields": { + "user": null, + "account_number": "31609645", + "user_type": "student", + "full_name": "Montoya Huerta Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21642, + "fields": { + "user": null, + "account_number": "31609480", + "user_type": "student", + "full_name": "Baez Pascual Pedro Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21643, + "fields": { + "user": null, + "account_number": "31608408", + "user_type": "student", + "full_name": "Padilla Morales Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21644, + "fields": { + "user": null, + "account_number": "31607435", + "user_type": "student", + "full_name": "Zetina Carrasco Cesar Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21645, + "fields": { + "user": null, + "account_number": "31607399", + "user_type": "student", + "full_name": "Zavala Elizondo Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21646, + "fields": { + "user": null, + "account_number": "31606825", + "user_type": "student", + "full_name": "Mundo Rafael Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21647, + "fields": { + "user": null, + "account_number": "31604846", + "user_type": "student", + "full_name": "Camacho Ventura Abril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21648, + "fields": { + "user": null, + "account_number": "31604756", + "user_type": "student", + "full_name": "Caballero Garcia Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21649, + "fields": { + "user": null, + "account_number": "31604200", + "user_type": "student", + "full_name": "Bautista Martinez Horacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21650, + "fields": { + "user": null, + "account_number": "31604023", + "user_type": "student", + "full_name": "Garcia Montiel Adrian Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21651, + "fields": { + "user": null, + "account_number": "31603647", + "user_type": "student", + "full_name": "Lorenzana Pedraza Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21652, + "fields": { + "user": null, + "account_number": "31602970", + "user_type": "student", + "full_name": "Albarran Hernandez Isai Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21653, + "fields": { + "user": null, + "account_number": "31602672", + "user_type": "student", + "full_name": "Cortes Suarez Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21654, + "fields": { + "user": null, + "account_number": "31602623", + "user_type": "student", + "full_name": "Rodriguez Librado Jose Isaias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21655, + "fields": { + "user": null, + "account_number": "31602495", + "user_type": "student", + "full_name": "Valdez Bautista Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21656, + "fields": { + "user": null, + "account_number": "31602182", + "user_type": "student", + "full_name": "Ramirez Dominguez Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21657, + "fields": { + "user": null, + "account_number": "31601087", + "user_type": "student", + "full_name": "De La Cruz Roberto Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21658, + "fields": { + "user": null, + "account_number": "31601052", + "user_type": "student", + "full_name": "Diaz Esquivel Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21659, + "fields": { + "user": null, + "account_number": "31600578", + "user_type": "student", + "full_name": "Cuervo Montiel Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21660, + "fields": { + "user": null, + "account_number": "31565948", + "user_type": "student", + "full_name": "Monroy Rojas Ximena Alexandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21661, + "fields": { + "user": null, + "account_number": "31534292", + "user_type": "student", + "full_name": "Gutierrez Alejo Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21662, + "fields": { + "user": null, + "account_number": "31533526", + "user_type": "student", + "full_name": "Groso Perez Jose Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21663, + "fields": { + "user": null, + "account_number": "31533096", + "user_type": "student", + "full_name": "Vigueras Morales Dulce Nancy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21664, + "fields": { + "user": null, + "account_number": "31532076", + "user_type": "student", + "full_name": "Pimentel Mendez Juan Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21665, + "fields": { + "user": null, + "account_number": "31527262", + "user_type": "student", + "full_name": "Pozos Cervantes Areli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21666, + "fields": { + "user": null, + "account_number": "31527112", + "user_type": "student", + "full_name": "Maya Garcia Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21667, + "fields": { + "user": null, + "account_number": "31525311", + "user_type": "student", + "full_name": "Nava Rodriguez Filadelfa Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21668, + "fields": { + "user": null, + "account_number": "31523420", + "user_type": "student", + "full_name": "Hernandez Marquez Nelly Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21669, + "fields": { + "user": null, + "account_number": "31519977", + "user_type": "student", + "full_name": "Basilio Ortiz Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21670, + "fields": { + "user": null, + "account_number": "31518852", + "user_type": "student", + "full_name": "Rojas Figueiras Angel Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21671, + "fields": { + "user": null, + "account_number": "31518301", + "user_type": "student", + "full_name": "Melendrez Arriaga Esteban Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21672, + "fields": { + "user": null, + "account_number": "31518003", + "user_type": "student", + "full_name": "Garcia Totozintle Sergio Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21673, + "fields": { + "user": null, + "account_number": "31516834", + "user_type": "student", + "full_name": "Frausto Hernandez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21674, + "fields": { + "user": null, + "account_number": "31513098", + "user_type": "student", + "full_name": "Gomez Correa Gustavo Vladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21675, + "fields": { + "user": null, + "account_number": "31512754", + "user_type": "student", + "full_name": "Castillo Luna Joel Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21676, + "fields": { + "user": null, + "account_number": "31510376", + "user_type": "student", + "full_name": "Trujillo Pichardo Heber" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21677, + "fields": { + "user": null, + "account_number": "31509989", + "user_type": "student", + "full_name": "Hernandez Barraza Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21678, + "fields": { + "user": null, + "account_number": "31509891", + "user_type": "student", + "full_name": "Gil Hernandez Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21679, + "fields": { + "user": null, + "account_number": "31508233", + "user_type": "student", + "full_name": "Gonzalez Lezama Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21680, + "fields": { + "user": null, + "account_number": "31506561", + "user_type": "student", + "full_name": "Hernandez Sabino Diana Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21681, + "fields": { + "user": null, + "account_number": "31502673", + "user_type": "student", + "full_name": "Onofre Luna Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21682, + "fields": { + "user": null, + "account_number": "31501587", + "user_type": "student", + "full_name": "Avila Perez Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21683, + "fields": { + "user": null, + "account_number": "31501535", + "user_type": "student", + "full_name": "Urquiza Robles Diego Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21684, + "fields": { + "user": null, + "account_number": "31501489", + "user_type": "student", + "full_name": "Trejo Hamilton Hector Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21685, + "fields": { + "user": null, + "account_number": "31500610", + "user_type": "student", + "full_name": "Alvarez Gaspar Kevin Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21686, + "fields": { + "user": null, + "account_number": "31435640", + "user_type": "student", + "full_name": "Diaz Barriga Reyes Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21687, + "fields": { + "user": null, + "account_number": "31433218", + "user_type": "student", + "full_name": "Jimenez Perez Daniel Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21688, + "fields": { + "user": null, + "account_number": "31419492", + "user_type": "student", + "full_name": "Vazquez Cabañas Jonathan Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21689, + "fields": { + "user": null, + "account_number": "31333917", + "user_type": "student", + "full_name": "Moreno Garcia Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21690, + "fields": { + "user": null, + "account_number": "31322637", + "user_type": "student", + "full_name": "Saucedo Avalos Francisco Jair Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21691, + "fields": { + "user": null, + "account_number": "31317135", + "user_type": "student", + "full_name": "Lopez Tafoya Jhonatan Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21692, + "fields": { + "user": null, + "account_number": "31311832", + "user_type": "student", + "full_name": "Ramirez Aguirre Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21693, + "fields": { + "user": null, + "account_number": "31302977", + "user_type": "student", + "full_name": "Moreno Santana Ricardo Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21694, + "fields": { + "user": null, + "account_number": "31301735", + "user_type": "student", + "full_name": "Benitez Hernandez Josue Natan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21695, + "fields": { + "user": null, + "account_number": "31223334", + "user_type": "student", + "full_name": "Casas Gomez Jesica Anaid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21696, + "fields": { + "user": null, + "account_number": "31217528", + "user_type": "student", + "full_name": "Lopez Acosta Lucero Estefania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21697, + "fields": { + "user": null, + "account_number": "31153823", + "user_type": "student", + "full_name": "Sanchez Kreimer Jorge Joav" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21698, + "fields": { + "user": null, + "account_number": "31019765", + "user_type": "student", + "full_name": "Nuñez Ibañez Marta Betsabe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21699, + "fields": { + "user": null, + "account_number": "30905800", + "user_type": "student", + "full_name": "Alcaide Palapa David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21700, + "fields": { + "user": null, + "account_number": "30811787", + "user_type": "student", + "full_name": "Pizano Castillo Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21701, + "fields": { + "user": null, + "account_number": "30800847", + "user_type": "student", + "full_name": "Canadilla Villalobos Dalia Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21702, + "fields": { + "user": null, + "account_number": "30704221", + "user_type": "student", + "full_name": "Guevara Moysen Jorge Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21703, + "fields": { + "user": null, + "account_number": "30624451", + "user_type": "student", + "full_name": "Rios Sandoval Diego Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21704, + "fields": { + "user": null, + "account_number": "30434637", + "user_type": "student", + "full_name": "Garcia Viveros Antonio De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21705, + "fields": { + "user": null, + "account_number": "11400081", + "user_type": "student", + "full_name": "Garcia Alanis Juan Genaro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21706, + "fields": { + "user": null, + "account_number": "11100546", + "user_type": "student", + "full_name": "Martinez Camacho Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21707, + "fields": { + "user": null, + "account_number": "11100144", + "user_type": "student", + "full_name": "Alfaro Jimenez Mario Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21708, + "fields": { + "user": null, + "account_number": "10700498", + "user_type": "student", + "full_name": "Teran Garrido Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21709, + "fields": { + "user": null, + "account_number": "41909061", + "user_type": "student", + "full_name": "Marin Garcia Andrea Celeste" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21710, + "fields": { + "user": null, + "account_number": "41909033", + "user_type": "student", + "full_name": "Martinez Urbina Jessica Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21711, + "fields": { + "user": null, + "account_number": "41909027", + "user_type": "student", + "full_name": "Moysen Hernandez Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21712, + "fields": { + "user": null, + "account_number": "41909018", + "user_type": "student", + "full_name": "Tolentino Romero Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21713, + "fields": { + "user": null, + "account_number": "41909004", + "user_type": "student", + "full_name": "Gonzalez Alvarez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21714, + "fields": { + "user": null, + "account_number": "41908998", + "user_type": "student", + "full_name": "Flores Gonzalez Eva Alejandrina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21715, + "fields": { + "user": null, + "account_number": "41908984", + "user_type": "student", + "full_name": "Tamayo Hernandez Fernando Yollotl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21716, + "fields": { + "user": null, + "account_number": "41908981", + "user_type": "student", + "full_name": "Mercado Ocampo David Jonnathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21717, + "fields": { + "user": null, + "account_number": "41908939", + "user_type": "student", + "full_name": "De Lira Bernal Delia Nallely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21718, + "fields": { + "user": null, + "account_number": "41908937", + "user_type": "student", + "full_name": "Lopez Martinez Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21719, + "fields": { + "user": null, + "account_number": "41908934", + "user_type": "student", + "full_name": "Gomez Rodriguez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21720, + "fields": { + "user": null, + "account_number": "41908926", + "user_type": "student", + "full_name": "Hernandez Viveros Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21721, + "fields": { + "user": null, + "account_number": "41908924", + "user_type": "student", + "full_name": "Abad Loza Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21722, + "fields": { + "user": null, + "account_number": "41908923", + "user_type": "student", + "full_name": "Solis Solis Rita Fatima" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21723, + "fields": { + "user": null, + "account_number": "41908901", + "user_type": "student", + "full_name": "Jimenez Pineda Edith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21724, + "fields": { + "user": null, + "account_number": "41908881", + "user_type": "student", + "full_name": "Pia Rodriguez Oscar Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21725, + "fields": { + "user": null, + "account_number": "41908875", + "user_type": "student", + "full_name": "Robles Lopez Jesus Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21726, + "fields": { + "user": null, + "account_number": "41908852", + "user_type": "student", + "full_name": "Davila Rosas Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21727, + "fields": { + "user": null, + "account_number": "41908851", + "user_type": "student", + "full_name": "Barzalobre Dorantes Alberto Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21728, + "fields": { + "user": null, + "account_number": "41908817", + "user_type": "student", + "full_name": "Mejia Sandoval Gerardo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21729, + "fields": { + "user": null, + "account_number": "41908815", + "user_type": "student", + "full_name": "Pimentel Herrera Martha Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21730, + "fields": { + "user": null, + "account_number": "41908813", + "user_type": "student", + "full_name": "Contreras Chavez Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21731, + "fields": { + "user": null, + "account_number": "41908805", + "user_type": "student", + "full_name": "Saavedra Lopez Brenda Corina Libertad" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21732, + "fields": { + "user": null, + "account_number": "41908794", + "user_type": "student", + "full_name": "Vergara Gomez Luis Alexandher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21733, + "fields": { + "user": null, + "account_number": "41908782", + "user_type": "student", + "full_name": "Garcia Hernandez Giovanni Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21734, + "fields": { + "user": null, + "account_number": "41908779", + "user_type": "student", + "full_name": "Rios Strop Brandon Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21735, + "fields": { + "user": null, + "account_number": "41908778", + "user_type": "student", + "full_name": "Villicaa Avila Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21736, + "fields": { + "user": null, + "account_number": "41908774", + "user_type": "student", + "full_name": "Santos Aguilar Andrea Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21737, + "fields": { + "user": null, + "account_number": "41908768", + "user_type": "student", + "full_name": "Garduo Gomez Gabino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21738, + "fields": { + "user": null, + "account_number": "41908766", + "user_type": "student", + "full_name": "Gandara Hernandez Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21739, + "fields": { + "user": null, + "account_number": "41908764", + "user_type": "student", + "full_name": "Alvarado Lara Ermilo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21740, + "fields": { + "user": null, + "account_number": "41908761", + "user_type": "student", + "full_name": "Castillo Ortiz Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21741, + "fields": { + "user": null, + "account_number": "41908749", + "user_type": "student", + "full_name": "Ramirez Burgos Ricardo Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21742, + "fields": { + "user": null, + "account_number": "41908745", + "user_type": "student", + "full_name": "Suastegui Rodriguez Susana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21743, + "fields": { + "user": null, + "account_number": "41908732", + "user_type": "student", + "full_name": "Del Angel De La Cruz Yadira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21744, + "fields": { + "user": null, + "account_number": "41908721", + "user_type": "student", + "full_name": "Jacinto Palacios Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21745, + "fields": { + "user": null, + "account_number": "41908716", + "user_type": "student", + "full_name": "Martinez Rubalcaba Yessenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21746, + "fields": { + "user": null, + "account_number": "41908700", + "user_type": "student", + "full_name": "Villegas Rodriguez Benjamin Isael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21747, + "fields": { + "user": null, + "account_number": "41908696", + "user_type": "student", + "full_name": "Wah Ortiz Yin Chew" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21748, + "fields": { + "user": null, + "account_number": "41908668", + "user_type": "student", + "full_name": "Maldonado Escamilla Jennifer Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21749, + "fields": { + "user": null, + "account_number": "41908665", + "user_type": "student", + "full_name": "Santiago Apango Francisco Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21750, + "fields": { + "user": null, + "account_number": "41908633", + "user_type": "student", + "full_name": "Orozco Aguilar Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21751, + "fields": { + "user": null, + "account_number": "41908617", + "user_type": "student", + "full_name": "Zagal Olvera Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21752, + "fields": { + "user": null, + "account_number": "41908568", + "user_type": "student", + "full_name": "Garcia Balleza Ricardo Salomon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21753, + "fields": { + "user": null, + "account_number": "41908565", + "user_type": "student", + "full_name": "Rosales Trujillo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21754, + "fields": { + "user": null, + "account_number": "41908551", + "user_type": "student", + "full_name": "Arvizu Ambris Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21755, + "fields": { + "user": null, + "account_number": "41908550", + "user_type": "student", + "full_name": "Saavedra Trejo Andres Hernan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21756, + "fields": { + "user": null, + "account_number": "41908541", + "user_type": "student", + "full_name": "Santiago Anguiano Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21757, + "fields": { + "user": null, + "account_number": "41908509", + "user_type": "student", + "full_name": "Mora Cano Paloma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21758, + "fields": { + "user": null, + "account_number": "41908506", + "user_type": "student", + "full_name": "Porras Melo Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21759, + "fields": { + "user": null, + "account_number": "41908496", + "user_type": "student", + "full_name": "Ramirez Hernandez Luis Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21760, + "fields": { + "user": null, + "account_number": "41908495", + "user_type": "student", + "full_name": "Ramirez Bautista Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21761, + "fields": { + "user": null, + "account_number": "41908489", + "user_type": "student", + "full_name": "Guzman Moreno Luisa Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21762, + "fields": { + "user": null, + "account_number": "41908457", + "user_type": "student", + "full_name": "Chavez Trejo Natalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21763, + "fields": { + "user": null, + "account_number": "41908447", + "user_type": "student", + "full_name": "Sotres Gonzalez Gerardo Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21764, + "fields": { + "user": null, + "account_number": "41908440", + "user_type": "student", + "full_name": "Espinosa Ponce Beatriz Deite" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21765, + "fields": { + "user": null, + "account_number": "41908439", + "user_type": "student", + "full_name": "Hernandez Molina Marlene Zoobeida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21766, + "fields": { + "user": null, + "account_number": "41908433", + "user_type": "student", + "full_name": "Tercero Lopez Alexis Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21767, + "fields": { + "user": null, + "account_number": "41908426", + "user_type": "student", + "full_name": "Gutierrez Moreno Jesus Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21768, + "fields": { + "user": null, + "account_number": "41908418", + "user_type": "student", + "full_name": "Zuiga Vera Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21769, + "fields": { + "user": null, + "account_number": "41908412", + "user_type": "student", + "full_name": "Serrano Velazquez Carmen Ariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21770, + "fields": { + "user": null, + "account_number": "41908404", + "user_type": "student", + "full_name": "Rendon Miranda Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21771, + "fields": { + "user": null, + "account_number": "41908400", + "user_type": "student", + "full_name": "Marcos Ortiz Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21772, + "fields": { + "user": null, + "account_number": "41908386", + "user_type": "student", + "full_name": "Paniagua Bautista Daniel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21773, + "fields": { + "user": null, + "account_number": "41908381", + "user_type": "student", + "full_name": "Rodriguez Rios Monica Yolotzin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21774, + "fields": { + "user": null, + "account_number": "41908376", + "user_type": "student", + "full_name": "Perez Romero Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21775, + "fields": { + "user": null, + "account_number": "41908358", + "user_type": "student", + "full_name": "Arellano Ortiz Andre" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21776, + "fields": { + "user": null, + "account_number": "41908345", + "user_type": "student", + "full_name": "Sanchez Pacheco Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21777, + "fields": { + "user": null, + "account_number": "41908323", + "user_type": "student", + "full_name": "Contreras Reyes Jesus Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21778, + "fields": { + "user": null, + "account_number": "41908305", + "user_type": "student", + "full_name": "Rosas Lopez Naomi Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21779, + "fields": { + "user": null, + "account_number": "41908288", + "user_type": "student", + "full_name": "Urbano Romero Brenda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21780, + "fields": { + "user": null, + "account_number": "41908283", + "user_type": "student", + "full_name": "Muoz Torres Cristina Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21781, + "fields": { + "user": null, + "account_number": "41908260", + "user_type": "student", + "full_name": "Fernandez Salazar Elias Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21782, + "fields": { + "user": null, + "account_number": "41908259", + "user_type": "student", + "full_name": "Bolaos Caballero Gibran Nahit" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21783, + "fields": { + "user": null, + "account_number": "41908258", + "user_type": "student", + "full_name": "Moreno Navarrete Sergio Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21784, + "fields": { + "user": null, + "account_number": "41908247", + "user_type": "student", + "full_name": "Chavez Arroyo Frida Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21785, + "fields": { + "user": null, + "account_number": "41908236", + "user_type": "student", + "full_name": "Torres Bustamante Dulce Jhoana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21786, + "fields": { + "user": null, + "account_number": "41908230", + "user_type": "student", + "full_name": "Sarmiento Ibarra Jonatan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21787, + "fields": { + "user": null, + "account_number": "41908222", + "user_type": "student", + "full_name": "Alvarez Borja Elisa Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21788, + "fields": { + "user": null, + "account_number": "41908219", + "user_type": "student", + "full_name": "Cortazar Gurza Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21789, + "fields": { + "user": null, + "account_number": "41908213", + "user_type": "student", + "full_name": "Hernandez Flores Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21790, + "fields": { + "user": null, + "account_number": "41908199", + "user_type": "student", + "full_name": "Martinez Garcia Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21791, + "fields": { + "user": null, + "account_number": "41908198", + "user_type": "student", + "full_name": "Salas Pineda Kevin Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21792, + "fields": { + "user": null, + "account_number": "41908196", + "user_type": "student", + "full_name": "Martinez Olmos Abraham David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21793, + "fields": { + "user": null, + "account_number": "41908180", + "user_type": "student", + "full_name": "Gomez Hernandez Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21794, + "fields": { + "user": null, + "account_number": "41908179", + "user_type": "student", + "full_name": "Ramirez Valdespino Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21795, + "fields": { + "user": null, + "account_number": "41908149", + "user_type": "student", + "full_name": "Texco Coutio Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21796, + "fields": { + "user": null, + "account_number": "41908145", + "user_type": "student", + "full_name": "Fragoso Barrera Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21797, + "fields": { + "user": null, + "account_number": "41908123", + "user_type": "student", + "full_name": "Hernandez De La Cruz Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21798, + "fields": { + "user": null, + "account_number": "41908118", + "user_type": "student", + "full_name": "Urtez Montoya Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21799, + "fields": { + "user": null, + "account_number": "41908117", + "user_type": "student", + "full_name": "Gonzalez Tabaco Alexandra Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21800, + "fields": { + "user": null, + "account_number": "41908113", + "user_type": "student", + "full_name": "Rodriguez Leija Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21801, + "fields": { + "user": null, + "account_number": "41908107", + "user_type": "student", + "full_name": "Olivares Lugo Brayton Johan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21802, + "fields": { + "user": null, + "account_number": "41908096", + "user_type": "student", + "full_name": "Moreno Hernandez Bryan Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21803, + "fields": { + "user": null, + "account_number": "41908095", + "user_type": "student", + "full_name": "Medina Calva Luis Abisai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21804, + "fields": { + "user": null, + "account_number": "41908090", + "user_type": "student", + "full_name": "Castillo Gomez Enrique Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21805, + "fields": { + "user": null, + "account_number": "41908086", + "user_type": "student", + "full_name": "Hernandez Perez Raul Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21806, + "fields": { + "user": null, + "account_number": "41908078", + "user_type": "student", + "full_name": "Miranda Garcia Itzel Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21807, + "fields": { + "user": null, + "account_number": "41908066", + "user_type": "student", + "full_name": "Suarez Alonso Sergio Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21808, + "fields": { + "user": null, + "account_number": "41908053", + "user_type": "student", + "full_name": "Mejia Espinosa Ruben Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21809, + "fields": { + "user": null, + "account_number": "41908052", + "user_type": "student", + "full_name": "Martinez Ramos Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21810, + "fields": { + "user": null, + "account_number": "41908049", + "user_type": "student", + "full_name": "Mendoza Villar Jose Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21811, + "fields": { + "user": null, + "account_number": "41908046", + "user_type": "student", + "full_name": "Perez Gonzalez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21812, + "fields": { + "user": null, + "account_number": "41908036", + "user_type": "student", + "full_name": "Serratos Martinez Camilo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21813, + "fields": { + "user": null, + "account_number": "41907987", + "user_type": "student", + "full_name": "Acevedo Miranda Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21814, + "fields": { + "user": null, + "account_number": "41907979", + "user_type": "student", + "full_name": "Maya Santa Rita Yuani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21815, + "fields": { + "user": null, + "account_number": "41907973", + "user_type": "student", + "full_name": "Pea Pea Jose Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21816, + "fields": { + "user": null, + "account_number": "41907950", + "user_type": "student", + "full_name": "Segura Aguiluz Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21817, + "fields": { + "user": null, + "account_number": "41907912", + "user_type": "student", + "full_name": "Ortiz Garcia Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21818, + "fields": { + "user": null, + "account_number": "41907909", + "user_type": "student", + "full_name": "Marquez Sanchez Arturo Jovani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21819, + "fields": { + "user": null, + "account_number": "41907908", + "user_type": "student", + "full_name": "Santiago Garnica Miroslava" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21820, + "fields": { + "user": null, + "account_number": "41907906", + "user_type": "student", + "full_name": "Ruiz Quiroz Ivana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21821, + "fields": { + "user": null, + "account_number": "41907872", + "user_type": "student", + "full_name": "Ortiz Flores Diana Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21822, + "fields": { + "user": null, + "account_number": "41907861", + "user_type": "student", + "full_name": "Espadin Medina Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21823, + "fields": { + "user": null, + "account_number": "41907852", + "user_type": "student", + "full_name": "Garcia Ventura Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21824, + "fields": { + "user": null, + "account_number": "41907840", + "user_type": "student", + "full_name": "Bautista Diaz Jose Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21825, + "fields": { + "user": null, + "account_number": "41907831", + "user_type": "student", + "full_name": "Solorzano Roa Jose Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21826, + "fields": { + "user": null, + "account_number": "41907810", + "user_type": "student", + "full_name": "Martinez Alonso Jorge Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21827, + "fields": { + "user": null, + "account_number": "41907802", + "user_type": "student", + "full_name": "Villarroel Calderon Alejandro Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21828, + "fields": { + "user": null, + "account_number": "41907801", + "user_type": "student", + "full_name": "Quino Garcia Jose Luis Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21829, + "fields": { + "user": null, + "account_number": "41907768", + "user_type": "student", + "full_name": "De Luna Ocampo Diana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21830, + "fields": { + "user": null, + "account_number": "41907752", + "user_type": "student", + "full_name": "Rosas Garcia Christian Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21831, + "fields": { + "user": null, + "account_number": "41907740", + "user_type": "student", + "full_name": "Espinosa Castillon Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21832, + "fields": { + "user": null, + "account_number": "41907700", + "user_type": "student", + "full_name": "Romero Mora Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21833, + "fields": { + "user": null, + "account_number": "41907668", + "user_type": "student", + "full_name": "Rodriguez Pontes Victor Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21834, + "fields": { + "user": null, + "account_number": "41907631", + "user_type": "student", + "full_name": "Tecocuatzi Altamirano Lidia Norma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21835, + "fields": { + "user": null, + "account_number": "41907618", + "user_type": "student", + "full_name": "Dominguez Avila Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21836, + "fields": { + "user": null, + "account_number": "41907611", + "user_type": "student", + "full_name": "Escamilla Torres Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21837, + "fields": { + "user": null, + "account_number": "41907595", + "user_type": "student", + "full_name": "Osorno Bohon Cristian Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21838, + "fields": { + "user": null, + "account_number": "41907579", + "user_type": "student", + "full_name": "Rodriguez Nuez Luisa Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21839, + "fields": { + "user": null, + "account_number": "41907566", + "user_type": "student", + "full_name": "Gutierrez Gonzalez Jorge Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21840, + "fields": { + "user": null, + "account_number": "41907548", + "user_type": "student", + "full_name": "Lonngi Cuellar Monica Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21841, + "fields": { + "user": null, + "account_number": "41907541", + "user_type": "student", + "full_name": "Moreno Medrano Emily Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21842, + "fields": { + "user": null, + "account_number": "41907540", + "user_type": "student", + "full_name": "Ramirez Ayala Alan Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21843, + "fields": { + "user": null, + "account_number": "41907510", + "user_type": "student", + "full_name": "Godinez Godinez Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21844, + "fields": { + "user": null, + "account_number": "41907504", + "user_type": "student", + "full_name": "Montaez Anaya Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21845, + "fields": { + "user": null, + "account_number": "41907491", + "user_type": "student", + "full_name": "Estevan Sanchez Jhon Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21846, + "fields": { + "user": null, + "account_number": "41907490", + "user_type": "student", + "full_name": "Diaz Rosales Marlene Dailyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21847, + "fields": { + "user": null, + "account_number": "41907487", + "user_type": "student", + "full_name": "Rivera Sotelo Nadia Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21848, + "fields": { + "user": null, + "account_number": "41907484", + "user_type": "student", + "full_name": "Jimenez Perez Mariana Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21849, + "fields": { + "user": null, + "account_number": "41907479", + "user_type": "student", + "full_name": "Vazquez Hernandez Victor Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21850, + "fields": { + "user": null, + "account_number": "41907477", + "user_type": "student", + "full_name": "Mendez Chavez Irving Oziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21851, + "fields": { + "user": null, + "account_number": "41907457", + "user_type": "student", + "full_name": "Romero Guillen Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21852, + "fields": { + "user": null, + "account_number": "41605672", + "user_type": "student", + "full_name": "Vargas Martinez Jhonatan Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21853, + "fields": { + "user": null, + "account_number": "41577591", + "user_type": "student", + "full_name": "Colin Sanchez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21854, + "fields": { + "user": null, + "account_number": "41207875", + "user_type": "student", + "full_name": "Balderas Perez Geovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21855, + "fields": { + "user": null, + "account_number": "31771887", + "user_type": "student", + "full_name": "Borja Chavez Anayanzi Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21856, + "fields": { + "user": null, + "account_number": "31669022", + "user_type": "student", + "full_name": "Diaz Neyra Bruno Isrrauri" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21857, + "fields": { + "user": null, + "account_number": "31666264", + "user_type": "student", + "full_name": "Hernandez Flores Rosalinda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21858, + "fields": { + "user": null, + "account_number": "31664545", + "user_type": "student", + "full_name": "Terrazas Fuentes Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21859, + "fields": { + "user": null, + "account_number": "31664417", + "user_type": "student", + "full_name": "Navarro Ramos Karen Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21860, + "fields": { + "user": null, + "account_number": "31664166", + "user_type": "student", + "full_name": "Gomez Gonzalez Astrid Yoatziry" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21861, + "fields": { + "user": null, + "account_number": "31662358", + "user_type": "student", + "full_name": "Garcia Perez Erick Ismail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21862, + "fields": { + "user": null, + "account_number": "31657982", + "user_type": "student", + "full_name": "Flores Garcia Xavier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21863, + "fields": { + "user": null, + "account_number": "31651166", + "user_type": "student", + "full_name": "Leyva Lopez Jacobo Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21864, + "fields": { + "user": null, + "account_number": "31651047", + "user_type": "student", + "full_name": "Tepale Alvarez Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21865, + "fields": { + "user": null, + "account_number": "31635503", + "user_type": "student", + "full_name": "Gamboa Francisco Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21866, + "fields": { + "user": null, + "account_number": "31635470", + "user_type": "student", + "full_name": "Bustos Galvan Angel Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21867, + "fields": { + "user": null, + "account_number": "31635363", + "user_type": "student", + "full_name": "Ambrocio Loreto Luis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21868, + "fields": { + "user": null, + "account_number": "31635269", + "user_type": "student", + "full_name": "Montes Vazquez Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21869, + "fields": { + "user": null, + "account_number": "31635170", + "user_type": "student", + "full_name": "Lopez Servin Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21870, + "fields": { + "user": null, + "account_number": "31635053", + "user_type": "student", + "full_name": "Aguilera Terrazas Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21871, + "fields": { + "user": null, + "account_number": "31634887", + "user_type": "student", + "full_name": "Rosas Sanchez Grisel Amairani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21872, + "fields": { + "user": null, + "account_number": "31634884", + "user_type": "student", + "full_name": "Reyes Crispin Oscar Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21873, + "fields": { + "user": null, + "account_number": "31634883", + "user_type": "student", + "full_name": "Rendon Jimenez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21874, + "fields": { + "user": null, + "account_number": "31634847", + "user_type": "student", + "full_name": "Puente Fragoso Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21875, + "fields": { + "user": null, + "account_number": "31634841", + "user_type": "student", + "full_name": "Ortega Hernandez Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21876, + "fields": { + "user": null, + "account_number": "31634745", + "user_type": "student", + "full_name": "Salazar Gervacio Jesus David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21877, + "fields": { + "user": null, + "account_number": "31634625", + "user_type": "student", + "full_name": "Rosado Dominguez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21878, + "fields": { + "user": null, + "account_number": "31634555", + "user_type": "student", + "full_name": "Hernandez Balderas Valeri" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21879, + "fields": { + "user": null, + "account_number": "31634512", + "user_type": "student", + "full_name": "Perez Reyes Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21880, + "fields": { + "user": null, + "account_number": "31634434", + "user_type": "student", + "full_name": "Mendoza Colin Diego Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21881, + "fields": { + "user": null, + "account_number": "31634433", + "user_type": "student", + "full_name": "Mateo Dominguez Ofelia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21882, + "fields": { + "user": null, + "account_number": "31634376", + "user_type": "student", + "full_name": "Jimenez Borges Axl Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21883, + "fields": { + "user": null, + "account_number": "31633921", + "user_type": "student", + "full_name": "Palma Tellez Herzon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21884, + "fields": { + "user": null, + "account_number": "31633617", + "user_type": "student", + "full_name": "Gomez Alba Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21885, + "fields": { + "user": null, + "account_number": "31633523", + "user_type": "student", + "full_name": "Flores Martinez Montserrat Iliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21886, + "fields": { + "user": null, + "account_number": "31633256", + "user_type": "student", + "full_name": "Orozco Ruiz Fernando Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21887, + "fields": { + "user": null, + "account_number": "31633190", + "user_type": "student", + "full_name": "Barroso Villegas Axel Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21888, + "fields": { + "user": null, + "account_number": "31632590", + "user_type": "student", + "full_name": "Rojas Trejo Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21889, + "fields": { + "user": null, + "account_number": "31632181", + "user_type": "student", + "full_name": "Hernandez Cruz Luis Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21890, + "fields": { + "user": null, + "account_number": "31632049", + "user_type": "student", + "full_name": "Navarro Perez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21891, + "fields": { + "user": null, + "account_number": "31631614", + "user_type": "student", + "full_name": "Arias Hernandez Itzul Siddhartha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21892, + "fields": { + "user": null, + "account_number": "31631583", + "user_type": "student", + "full_name": "Arroyo Vega Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21893, + "fields": { + "user": null, + "account_number": "31631352", + "user_type": "student", + "full_name": "Marquez Rosas Lemuel Helon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21894, + "fields": { + "user": null, + "account_number": "31630878", + "user_type": "student", + "full_name": "Lopez Infante Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21895, + "fields": { + "user": null, + "account_number": "31630651", + "user_type": "student", + "full_name": "Gonzalez Sanciprian Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21896, + "fields": { + "user": null, + "account_number": "31630432", + "user_type": "student", + "full_name": "Carreras Serrano Jeremy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21897, + "fields": { + "user": null, + "account_number": "31630366", + "user_type": "student", + "full_name": "Colín Sánchez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21898, + "fields": { + "user": null, + "account_number": "31630202", + "user_type": "student", + "full_name": "Almanza Centeno Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21899, + "fields": { + "user": null, + "account_number": "31630059", + "user_type": "student", + "full_name": "Gonzalez Pea Jose Osmar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21900, + "fields": { + "user": null, + "account_number": "31629994", + "user_type": "student", + "full_name": "Gonzalez Mendez Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21901, + "fields": { + "user": null, + "account_number": "31629324", + "user_type": "student", + "full_name": "Ortiz Vega Miroslava Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21902, + "fields": { + "user": null, + "account_number": "31628654", + "user_type": "student", + "full_name": "Rodriguez Arteaga Jafet Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21903, + "fields": { + "user": null, + "account_number": "31628553", + "user_type": "student", + "full_name": "Sanchez Leon Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21904, + "fields": { + "user": null, + "account_number": "31628432", + "user_type": "student", + "full_name": "Roldan Ramirez Jimena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21905, + "fields": { + "user": null, + "account_number": "31628281", + "user_type": "student", + "full_name": "Mocios Vazquez Jonathan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21906, + "fields": { + "user": null, + "account_number": "31628184", + "user_type": "student", + "full_name": "Estrada Sosa Osvaldo Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21907, + "fields": { + "user": null, + "account_number": "31628152", + "user_type": "student", + "full_name": "Conde Muoz Diana Polet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21908, + "fields": { + "user": null, + "account_number": "31627697", + "user_type": "student", + "full_name": "Arellano Bautista Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21909, + "fields": { + "user": null, + "account_number": "31627531", + "user_type": "student", + "full_name": "Palomino Duran Ricardo Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21910, + "fields": { + "user": null, + "account_number": "31627193", + "user_type": "student", + "full_name": "Carrillo Barajas Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21911, + "fields": { + "user": null, + "account_number": "31627036", + "user_type": "student", + "full_name": "Castillo Cardozo Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21912, + "fields": { + "user": null, + "account_number": "31626672", + "user_type": "student", + "full_name": "Barajas Rivera Michael Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21913, + "fields": { + "user": null, + "account_number": "31626609", + "user_type": "student", + "full_name": "Bautista Ceron Jair Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21914, + "fields": { + "user": null, + "account_number": "31626482", + "user_type": "student", + "full_name": "Salinas Gonzalez Tania Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21915, + "fields": { + "user": null, + "account_number": "31626228", + "user_type": "student", + "full_name": "Jaramillo Antillon Julio Gianni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21916, + "fields": { + "user": null, + "account_number": "31625645", + "user_type": "student", + "full_name": "Pealoza Medrano Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21917, + "fields": { + "user": null, + "account_number": "31624945", + "user_type": "student", + "full_name": "Wong Mestas Ben Long Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21918, + "fields": { + "user": null, + "account_number": "31624896", + "user_type": "student", + "full_name": "Vivas Laurrabaquio Leslie Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21919, + "fields": { + "user": null, + "account_number": "31623428", + "user_type": "student", + "full_name": "Pineda Rodriguez Alexis Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21920, + "fields": { + "user": null, + "account_number": "31623107", + "user_type": "student", + "full_name": "Perez Uribe Erik Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21921, + "fields": { + "user": null, + "account_number": "31623035", + "user_type": "student", + "full_name": "Mejia Pea Jorge Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21922, + "fields": { + "user": null, + "account_number": "31622382", + "user_type": "student", + "full_name": "Juarez Pinal Carlos Aldayr" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21923, + "fields": { + "user": null, + "account_number": "31621887", + "user_type": "student", + "full_name": "Chavez Garcia Angel Yair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21924, + "fields": { + "user": null, + "account_number": "31621674", + "user_type": "student", + "full_name": "Salazar Villegas Abdiana Sherlin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21925, + "fields": { + "user": null, + "account_number": "31621657", + "user_type": "student", + "full_name": "Sanchez De La Vega Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21926, + "fields": { + "user": null, + "account_number": "31621638", + "user_type": "student", + "full_name": "Sierra Estrada Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21927, + "fields": { + "user": null, + "account_number": "31621483", + "user_type": "student", + "full_name": "Roa Ramirez Luis Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21928, + "fields": { + "user": null, + "account_number": "31621473", + "user_type": "student", + "full_name": "Raya Torres Daniel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21929, + "fields": { + "user": null, + "account_number": "31621419", + "user_type": "student", + "full_name": "Pavon Gonzalez Enrique Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21930, + "fields": { + "user": null, + "account_number": "31621392", + "user_type": "student", + "full_name": "Guerrero Bastida Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21931, + "fields": { + "user": null, + "account_number": "31621338", + "user_type": "student", + "full_name": "Macias Figueroa Juan Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21932, + "fields": { + "user": null, + "account_number": "31621336", + "user_type": "student", + "full_name": "Moreno Santiago Victor Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21933, + "fields": { + "user": null, + "account_number": "31621321", + "user_type": "student", + "full_name": "Montes Aguilar Vicente Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21934, + "fields": { + "user": null, + "account_number": "31621224", + "user_type": "student", + "full_name": "Garduo Tellez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21935, + "fields": { + "user": null, + "account_number": "31621142", + "user_type": "student", + "full_name": "Jimenez Gonzalez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21936, + "fields": { + "user": null, + "account_number": "31621109", + "user_type": "student", + "full_name": "Juarez Gallardo Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21937, + "fields": { + "user": null, + "account_number": "31621082", + "user_type": "student", + "full_name": "Isidro Hernandez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21938, + "fields": { + "user": null, + "account_number": "31621010", + "user_type": "student", + "full_name": "Garcia Rosas Angeles Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21939, + "fields": { + "user": null, + "account_number": "31620984", + "user_type": "student", + "full_name": "Granados Gonzalez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21940, + "fields": { + "user": null, + "account_number": "31620974", + "user_type": "student", + "full_name": "Garcia Soto Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21941, + "fields": { + "user": null, + "account_number": "31619993", + "user_type": "student", + "full_name": "Martinez Perez Jaime Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21942, + "fields": { + "user": null, + "account_number": "31619649", + "user_type": "student", + "full_name": "Gomez Gonzalez Luis Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21943, + "fields": { + "user": null, + "account_number": "31619355", + "user_type": "student", + "full_name": "Alonso Gonzalez Horacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21944, + "fields": { + "user": null, + "account_number": "31618469", + "user_type": "student", + "full_name": "Pea Guadarrama Ruben Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21945, + "fields": { + "user": null, + "account_number": "31618412", + "user_type": "student", + "full_name": "Magdaleno Flores Nilton Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21946, + "fields": { + "user": null, + "account_number": "31618350", + "user_type": "student", + "full_name": "Morales Martinez Karla Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21947, + "fields": { + "user": null, + "account_number": "31618005", + "user_type": "student", + "full_name": "Galvan Garay Marian Enaela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21948, + "fields": { + "user": null, + "account_number": "31618001", + "user_type": "student", + "full_name": "Lopez Huerta Francisco Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21949, + "fields": { + "user": null, + "account_number": "31617606", + "user_type": "student", + "full_name": "Granados Ruiz David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21950, + "fields": { + "user": null, + "account_number": "31617030", + "user_type": "student", + "full_name": "Diaz Garcia Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21951, + "fields": { + "user": null, + "account_number": "31616915", + "user_type": "student", + "full_name": "Felipe Hernandez Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21952, + "fields": { + "user": null, + "account_number": "31616806", + "user_type": "student", + "full_name": "Chalico Montoya Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21953, + "fields": { + "user": null, + "account_number": "31616756", + "user_type": "student", + "full_name": "Barrientos Aguilar Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21954, + "fields": { + "user": null, + "account_number": "31616650", + "user_type": "student", + "full_name": "Diaz Lopez Alan Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21955, + "fields": { + "user": null, + "account_number": "31616497", + "user_type": "student", + "full_name": "Navarro Rodriguez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21956, + "fields": { + "user": null, + "account_number": "31615160", + "user_type": "student", + "full_name": "Cordero Moreno Hector Shahram" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21957, + "fields": { + "user": null, + "account_number": "31614985", + "user_type": "student", + "full_name": "Barrientos Perez Francisco Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21958, + "fields": { + "user": null, + "account_number": "31614950", + "user_type": "student", + "full_name": "Angeles Martinez Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21959, + "fields": { + "user": null, + "account_number": "31614328", + "user_type": "student", + "full_name": "Villegas Ricao Erandi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21960, + "fields": { + "user": null, + "account_number": "31614281", + "user_type": "student", + "full_name": "Rodriguez Gutierrez Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21961, + "fields": { + "user": null, + "account_number": "31613985", + "user_type": "student", + "full_name": "Hernandez Castillo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21962, + "fields": { + "user": null, + "account_number": "31613776", + "user_type": "student", + "full_name": "Esteves Muoz Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21963, + "fields": { + "user": null, + "account_number": "31613413", + "user_type": "student", + "full_name": "Ruiz Zamora Edgar Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21964, + "fields": { + "user": null, + "account_number": "31613281", + "user_type": "student", + "full_name": "Peralta Trejo Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21965, + "fields": { + "user": null, + "account_number": "31613199", + "user_type": "student", + "full_name": "Jimenez Gomez Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21966, + "fields": { + "user": null, + "account_number": "31612759", + "user_type": "student", + "full_name": "Sanchez Cortes Eduardo Tonalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21967, + "fields": { + "user": null, + "account_number": "31612003", + "user_type": "student", + "full_name": "Lopez Reyes Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21968, + "fields": { + "user": null, + "account_number": "31611582", + "user_type": "student", + "full_name": "Aviles Palacios Zitlalli Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21969, + "fields": { + "user": null, + "account_number": "31609650", + "user_type": "student", + "full_name": "Martinez Barron Rebeca Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21970, + "fields": { + "user": null, + "account_number": "31609561", + "user_type": "student", + "full_name": "Lopez Romero Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21971, + "fields": { + "user": null, + "account_number": "31609496", + "user_type": "student", + "full_name": "Badillo Cruz Jesus Donaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21972, + "fields": { + "user": null, + "account_number": "31609436", + "user_type": "student", + "full_name": "Gutierrez Manzano Aylen Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21973, + "fields": { + "user": null, + "account_number": "31609419", + "user_type": "student", + "full_name": "Gonzalez Sanchez Andrea Eledith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21974, + "fields": { + "user": null, + "account_number": "31609322", + "user_type": "student", + "full_name": "Diez Gavia David Amado" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21975, + "fields": { + "user": null, + "account_number": "31609294", + "user_type": "student", + "full_name": "Castillo Hernandez Nestor Eithan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21976, + "fields": { + "user": null, + "account_number": "31609236", + "user_type": "student", + "full_name": "Vazquez Mendez Jose Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21977, + "fields": { + "user": null, + "account_number": "31609231", + "user_type": "student", + "full_name": "Tovar Perez Zeltzin Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21978, + "fields": { + "user": null, + "account_number": "31609215", + "user_type": "student", + "full_name": "Silva Pacheco Mario Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21979, + "fields": { + "user": null, + "account_number": "31609183", + "user_type": "student", + "full_name": "Toledo Presa Alexis Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21980, + "fields": { + "user": null, + "account_number": "31609029", + "user_type": "student", + "full_name": "Perez Garcia Victor Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21981, + "fields": { + "user": null, + "account_number": "31608721", + "user_type": "student", + "full_name": "Cervera Castillo Maria Faride" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21982, + "fields": { + "user": null, + "account_number": "31608574", + "user_type": "student", + "full_name": "Garduo Pia Jesus Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21983, + "fields": { + "user": null, + "account_number": "31608128", + "user_type": "student", + "full_name": "Zepeda Gonzalez Dafne Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21984, + "fields": { + "user": null, + "account_number": "31608125", + "user_type": "student", + "full_name": "Velazquez Barrera Noe Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21985, + "fields": { + "user": null, + "account_number": "31607946", + "user_type": "student", + "full_name": "Vizcarra Reyes Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21986, + "fields": { + "user": null, + "account_number": "31607803", + "user_type": "student", + "full_name": "Uruea Gonzalez Erick Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21987, + "fields": { + "user": null, + "account_number": "31607401", + "user_type": "student", + "full_name": "Zepeda Lara Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21988, + "fields": { + "user": null, + "account_number": "31605506", + "user_type": "student", + "full_name": "Martinez Samano Manuel Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21989, + "fields": { + "user": null, + "account_number": "31604900", + "user_type": "student", + "full_name": "De Anda Delgado Jaqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21990, + "fields": { + "user": null, + "account_number": "31604887", + "user_type": "student", + "full_name": "Damian Sandoval Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21991, + "fields": { + "user": null, + "account_number": "31604825", + "user_type": "student", + "full_name": "Chavez Martinez Cesar Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21992, + "fields": { + "user": null, + "account_number": "31604437", + "user_type": "student", + "full_name": "Rosales Solano Anayeli Rubi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21993, + "fields": { + "user": null, + "account_number": "31604193", + "user_type": "student", + "full_name": "Aguilar Tellez Giron Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21994, + "fields": { + "user": null, + "account_number": "31603947", + "user_type": "student", + "full_name": "Vargas Flores Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21995, + "fields": { + "user": null, + "account_number": "31603909", + "user_type": "student", + "full_name": "Silva Martinez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21996, + "fields": { + "user": null, + "account_number": "31603442", + "user_type": "student", + "full_name": "Gurrola Gonzalez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21997, + "fields": { + "user": null, + "account_number": "31603389", + "user_type": "student", + "full_name": "Alva Garibay Mauricio Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21998, + "fields": { + "user": null, + "account_number": "31603379", + "user_type": "student", + "full_name": "Alvarez Hernandez Diego Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 21999, + "fields": { + "user": null, + "account_number": "31603244", + "user_type": "student", + "full_name": "Ferreira Villaseor Raul Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22000, + "fields": { + "user": null, + "account_number": "31601925", + "user_type": "student", + "full_name": "Romero Vazquez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22001, + "fields": { + "user": null, + "account_number": "31601850", + "user_type": "student", + "full_name": "Rodea Nava Uriel Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22002, + "fields": { + "user": null, + "account_number": "31601088", + "user_type": "student", + "full_name": "Delgado Rivera Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22003, + "fields": { + "user": null, + "account_number": "31600874", + "user_type": "student", + "full_name": "Cruz Hernandez Elias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22004, + "fields": { + "user": null, + "account_number": "31600202", + "user_type": "student", + "full_name": "Arriaga Vazquez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22005, + "fields": { + "user": null, + "account_number": "31600174", + "user_type": "student", + "full_name": "Arias Medina Abril" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22006, + "fields": { + "user": null, + "account_number": "31600162", + "user_type": "student", + "full_name": "Alvarez Robledo Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22007, + "fields": { + "user": null, + "account_number": "31567993", + "user_type": "student", + "full_name": "Esteban Alcazar Carlos Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22008, + "fields": { + "user": null, + "account_number": "31566609", + "user_type": "student", + "full_name": "Gonzalez Rosales Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22009, + "fields": { + "user": null, + "account_number": "31560687", + "user_type": "student", + "full_name": "Paredes Gomez Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22010, + "fields": { + "user": null, + "account_number": "31558673", + "user_type": "student", + "full_name": "Romero Cardona Aranza Aide" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22011, + "fields": { + "user": null, + "account_number": "31558386", + "user_type": "student", + "full_name": "Dominguez Hernandez Frida Ariadna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22012, + "fields": { + "user": null, + "account_number": "31554439", + "user_type": "student", + "full_name": "Muoz Sala Marleen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22013, + "fields": { + "user": null, + "account_number": "31554164", + "user_type": "student", + "full_name": "Casal Gonzalez Ariel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22014, + "fields": { + "user": null, + "account_number": "31533074", + "user_type": "student", + "full_name": "Vera Garcia Francisco Xavier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22015, + "fields": { + "user": null, + "account_number": "31528278", + "user_type": "student", + "full_name": "Gutierrez Delgado Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22016, + "fields": { + "user": null, + "account_number": "31527632", + "user_type": "student", + "full_name": "Vega Chamu Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22017, + "fields": { + "user": null, + "account_number": "31527328", + "user_type": "student", + "full_name": "Mucio Entzana Guillermo Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22018, + "fields": { + "user": null, + "account_number": "31525936", + "user_type": "student", + "full_name": "Fragoso Mendoza Josue Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22019, + "fields": { + "user": null, + "account_number": "31525515", + "user_type": "student", + "full_name": "Ruiz Ventura Erika" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22020, + "fields": { + "user": null, + "account_number": "31523767", + "user_type": "student", + "full_name": "Urbina Gomez Christian Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22021, + "fields": { + "user": null, + "account_number": "31523737", + "user_type": "student", + "full_name": "Velazco Silva Tania Verenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22022, + "fields": { + "user": null, + "account_number": "31523549", + "user_type": "student", + "full_name": "Rubio Molina Erick Yoskua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22023, + "fields": { + "user": null, + "account_number": "31521903", + "user_type": "student", + "full_name": "Pio Hernandez Azalia Janeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22024, + "fields": { + "user": null, + "account_number": "31521089", + "user_type": "student", + "full_name": "Vargas Palacios Oscar Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22025, + "fields": { + "user": null, + "account_number": "31520736", + "user_type": "student", + "full_name": "Andres Pablo Heraldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22026, + "fields": { + "user": null, + "account_number": "31520547", + "user_type": "student", + "full_name": "Serrato Solano Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22027, + "fields": { + "user": null, + "account_number": "31520061", + "user_type": "student", + "full_name": "Ferrer Garcia Arat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22028, + "fields": { + "user": null, + "account_number": "31519590", + "user_type": "student", + "full_name": "Lujan Garcia Cesar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22029, + "fields": { + "user": null, + "account_number": "31519035", + "user_type": "student", + "full_name": "Hernandez Aguado Antonio Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22030, + "fields": { + "user": null, + "account_number": "31518653", + "user_type": "student", + "full_name": "Lopez Perez Jose Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22031, + "fields": { + "user": null, + "account_number": "31518409", + "user_type": "student", + "full_name": "Olivares Rodriguez Cristian Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22032, + "fields": { + "user": null, + "account_number": "31518040", + "user_type": "student", + "full_name": "Garcia Sandoval Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22033, + "fields": { + "user": null, + "account_number": "31514892", + "user_type": "student", + "full_name": "Ruiz Alberto Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22034, + "fields": { + "user": null, + "account_number": "31514758", + "user_type": "student", + "full_name": "Llamas Garcia Angel Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22035, + "fields": { + "user": null, + "account_number": "31511599", + "user_type": "student", + "full_name": "Vazquez Lopez Angel Juan Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22036, + "fields": { + "user": null, + "account_number": "31510748", + "user_type": "student", + "full_name": "Garduo Baldazo Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22037, + "fields": { + "user": null, + "account_number": "31510324", + "user_type": "student", + "full_name": "Cortes Fernandez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22038, + "fields": { + "user": null, + "account_number": "31510266", + "user_type": "student", + "full_name": "Romo Rangel Edgar Otniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22039, + "fields": { + "user": null, + "account_number": "31510134", + "user_type": "student", + "full_name": "Valdez Camacho Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22040, + "fields": { + "user": null, + "account_number": "31510127", + "user_type": "student", + "full_name": "Torres Prado Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22041, + "fields": { + "user": null, + "account_number": "31509873", + "user_type": "student", + "full_name": "Gonzalez Gutierrez Jonatan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22042, + "fields": { + "user": null, + "account_number": "31506238", + "user_type": "student", + "full_name": "Zecua Lopez Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22043, + "fields": { + "user": null, + "account_number": "31504088", + "user_type": "student", + "full_name": "Ramirez Santos Adrian Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22044, + "fields": { + "user": null, + "account_number": "31503897", + "user_type": "student", + "full_name": "Mucio Guerrero Bruno Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22045, + "fields": { + "user": null, + "account_number": "31503796", + "user_type": "student", + "full_name": "Andrade Luna Misac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22046, + "fields": { + "user": null, + "account_number": "31502820", + "user_type": "student", + "full_name": "Martinez Echegaray Luis Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22047, + "fields": { + "user": null, + "account_number": "31502279", + "user_type": "student", + "full_name": "Alvarez Hernandez Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22048, + "fields": { + "user": null, + "account_number": "31501974", + "user_type": "student", + "full_name": "Pichardo Franco Marco Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22049, + "fields": { + "user": null, + "account_number": "31501890", + "user_type": "student", + "full_name": "Mendoza Hernandez Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22050, + "fields": { + "user": null, + "account_number": "31501381", + "user_type": "student", + "full_name": "Ramos Hernandez Ricardo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22051, + "fields": { + "user": null, + "account_number": "31501327", + "user_type": "student", + "full_name": "Luna Perez Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22052, + "fields": { + "user": null, + "account_number": "31500191", + "user_type": "student", + "full_name": "Aguilar Resendiz Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22053, + "fields": { + "user": null, + "account_number": "31459673", + "user_type": "student", + "full_name": "Castillo Bacilio Josue Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22054, + "fields": { + "user": null, + "account_number": "31455221", + "user_type": "student", + "full_name": "Cervera Soto Sara Noemi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22055, + "fields": { + "user": null, + "account_number": "31431419", + "user_type": "student", + "full_name": "Martinez Buendia Yoel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22056, + "fields": { + "user": null, + "account_number": "31428223", + "user_type": "student", + "full_name": "Pealoza Lopez Giovanni Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22057, + "fields": { + "user": null, + "account_number": "31428162", + "user_type": "student", + "full_name": "Monroy Rojas Linda Nathalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22058, + "fields": { + "user": null, + "account_number": "31426795", + "user_type": "student", + "full_name": "Hernandez Diaz Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22059, + "fields": { + "user": null, + "account_number": "31426226", + "user_type": "student", + "full_name": "Elias Rodriguez Leilani Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22060, + "fields": { + "user": null, + "account_number": "31422473", + "user_type": "student", + "full_name": "Navarrete Madrigal Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22061, + "fields": { + "user": null, + "account_number": "31414466", + "user_type": "student", + "full_name": "Alvarado Sarabia Vicente" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22062, + "fields": { + "user": null, + "account_number": "31412381", + "user_type": "student", + "full_name": "Lucas Nanco Domingo Jiovanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22063, + "fields": { + "user": null, + "account_number": "31410369", + "user_type": "student", + "full_name": "Hernandez Hernandez Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22064, + "fields": { + "user": null, + "account_number": "31405715", + "user_type": "student", + "full_name": "Cabrera Martinez Ramses Ludwig" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22065, + "fields": { + "user": null, + "account_number": "31400486", + "user_type": "student", + "full_name": "Casasola Mateos Citlalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22066, + "fields": { + "user": null, + "account_number": "31358324", + "user_type": "student", + "full_name": "Guerrero Solis Gustavo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22067, + "fields": { + "user": null, + "account_number": "31330143", + "user_type": "student", + "full_name": "Gutierrez Palencia Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22068, + "fields": { + "user": null, + "account_number": "31329492", + "user_type": "student", + "full_name": "Garrido Garcia Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22069, + "fields": { + "user": null, + "account_number": "31328495", + "user_type": "student", + "full_name": "Torres Alonso Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22070, + "fields": { + "user": null, + "account_number": "31328140", + "user_type": "student", + "full_name": "Rio Campos Camacho Oscar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22071, + "fields": { + "user": null, + "account_number": "31327175", + "user_type": "student", + "full_name": "Velasco Gutierrez Sofia Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22072, + "fields": { + "user": null, + "account_number": "31324036", + "user_type": "student", + "full_name": "Cruz Pineda Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22073, + "fields": { + "user": null, + "account_number": "31323001", + "user_type": "student", + "full_name": "Garcia Silva Axel Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22074, + "fields": { + "user": null, + "account_number": "31318563", + "user_type": "student", + "full_name": "Sanchez Zamora Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22075, + "fields": { + "user": null, + "account_number": "31307910", + "user_type": "student", + "full_name": "Monroy Tolentino Sergio Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22076, + "fields": { + "user": null, + "account_number": "31307380", + "user_type": "student", + "full_name": "Velazquez Moran Pedro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22077, + "fields": { + "user": null, + "account_number": "31305663", + "user_type": "student", + "full_name": "Contreras Cruz Angel Jaasiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22078, + "fields": { + "user": null, + "account_number": "31265673", + "user_type": "student", + "full_name": "Garcia Lopez Ricardo Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22079, + "fields": { + "user": null, + "account_number": "31233026", + "user_type": "student", + "full_name": "Sanchez Serrano Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22080, + "fields": { + "user": null, + "account_number": "31231798", + "user_type": "student", + "full_name": "Alvarez Calderon Oswaldo Tonali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22081, + "fields": { + "user": null, + "account_number": "31224356", + "user_type": "student", + "full_name": "Lorenzo Cuevas Kevin Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22082, + "fields": { + "user": null, + "account_number": "31224040", + "user_type": "student", + "full_name": "Jimenez Uc Jose Faustino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22083, + "fields": { + "user": null, + "account_number": "31221844", + "user_type": "student", + "full_name": "Felix Torres Lenin Vladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22084, + "fields": { + "user": null, + "account_number": "31221102", + "user_type": "student", + "full_name": "Calderon Mancilla Alvaro Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22085, + "fields": { + "user": null, + "account_number": "31217558", + "user_type": "student", + "full_name": "Lee Rivas Stefani Katarina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22086, + "fields": { + "user": null, + "account_number": "31205097", + "user_type": "student", + "full_name": "Jaguey Reyes Joshua Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22087, + "fields": { + "user": null, + "account_number": "31133935", + "user_type": "student", + "full_name": "Lopez Alejandre Rodrigo Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22088, + "fields": { + "user": null, + "account_number": "31120703", + "user_type": "student", + "full_name": "Sandoval Rodriguez Eduardo Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22089, + "fields": { + "user": null, + "account_number": "31111968", + "user_type": "student", + "full_name": "Reyes Giron Aldo Dos Santos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22090, + "fields": { + "user": null, + "account_number": "31017743", + "user_type": "student", + "full_name": "Reyes Chias Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22091, + "fields": { + "user": null, + "account_number": "31009084", + "user_type": "student", + "full_name": "Cruces Morales Omar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22092, + "fields": { + "user": null, + "account_number": "31001635", + "user_type": "student", + "full_name": "Almaguer Cardenas Hector Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22093, + "fields": { + "user": null, + "account_number": "30930358", + "user_type": "student", + "full_name": "Martinez Zuiga Jose Ramiro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22094, + "fields": { + "user": null, + "account_number": "30710571", + "user_type": "student", + "full_name": "Hernandez Aquino Irving Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22095, + "fields": { + "user": null, + "account_number": "30666093", + "user_type": "student", + "full_name": "Cantu Montoya Iker Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22096, + "fields": { + "user": null, + "account_number": "11300555", + "user_type": "student", + "full_name": "Hernandez Martinez Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22097, + "fields": { + "user": null, + "account_number": "09204303", + "user_type": "student", + "full_name": "Lopez Padilla Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22098, + "fields": { + "user": null, + "account_number": "41824070", + "user_type": "student", + "full_name": "Portilla Nocedal Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22099, + "fields": { + "user": null, + "account_number": "41809153", + "user_type": "student", + "full_name": "Romero Fernandez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22100, + "fields": { + "user": null, + "account_number": "41809151", + "user_type": "student", + "full_name": "Loyola Esquivel Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22101, + "fields": { + "user": null, + "account_number": "41809134", + "user_type": "student", + "full_name": "Bautista Mora Areli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22102, + "fields": { + "user": null, + "account_number": "41809133", + "user_type": "student", + "full_name": "Perez Hernandez Angel Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22103, + "fields": { + "user": null, + "account_number": "41809122", + "user_type": "student", + "full_name": "Muoz Pedrero Jesus Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22104, + "fields": { + "user": null, + "account_number": "41809105", + "user_type": "student", + "full_name": "Flores Gonzalez Pedro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22105, + "fields": { + "user": null, + "account_number": "41809079", + "user_type": "student", + "full_name": "Margarito Flores Briseyda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22106, + "fields": { + "user": null, + "account_number": "41809073", + "user_type": "student", + "full_name": "Quintero Tolentino Yenifer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22107, + "fields": { + "user": null, + "account_number": "41809069", + "user_type": "student", + "full_name": "Santos Soto Martin Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22108, + "fields": { + "user": null, + "account_number": "41809063", + "user_type": "student", + "full_name": "Vences Torralba Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22109, + "fields": { + "user": null, + "account_number": "41809060", + "user_type": "student", + "full_name": "Cazares Flores Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22110, + "fields": { + "user": null, + "account_number": "41809051", + "user_type": "student", + "full_name": "Palma Enzana Edgar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22111, + "fields": { + "user": null, + "account_number": "41809048", + "user_type": "student", + "full_name": "Tenorio Martinez German Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22112, + "fields": { + "user": null, + "account_number": "41809044", + "user_type": "student", + "full_name": "Salvatori Gonzalez David Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22113, + "fields": { + "user": null, + "account_number": "41809032", + "user_type": "student", + "full_name": "Zuiga Perez Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22114, + "fields": { + "user": null, + "account_number": "41808974", + "user_type": "student", + "full_name": "Gandara Cruz Dante Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22115, + "fields": { + "user": null, + "account_number": "41808973", + "user_type": "student", + "full_name": "Medina Leon Giacomo Michel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22116, + "fields": { + "user": null, + "account_number": "41808955", + "user_type": "student", + "full_name": "Cabrejos Reyes Eliseo Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22117, + "fields": { + "user": null, + "account_number": "41808952", + "user_type": "student", + "full_name": "Garcia Olarra Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22118, + "fields": { + "user": null, + "account_number": "41808949", + "user_type": "student", + "full_name": "Perez Ramirez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22119, + "fields": { + "user": null, + "account_number": "41808939", + "user_type": "student", + "full_name": "Miguel Ramos Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22120, + "fields": { + "user": null, + "account_number": "41808936", + "user_type": "student", + "full_name": "Hernandez Alcantara Braulio Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22121, + "fields": { + "user": null, + "account_number": "41808913", + "user_type": "student", + "full_name": "Osornio Macias Francisco David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22122, + "fields": { + "user": null, + "account_number": "41808912", + "user_type": "student", + "full_name": "Takeda Herrera Luis Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22123, + "fields": { + "user": null, + "account_number": "41808877", + "user_type": "student", + "full_name": "Palma Escutia Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22124, + "fields": { + "user": null, + "account_number": "41808876", + "user_type": "student", + "full_name": "Rico Soto Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22125, + "fields": { + "user": null, + "account_number": "41808866", + "user_type": "student", + "full_name": "Muro Lezama Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22126, + "fields": { + "user": null, + "account_number": "41808865", + "user_type": "student", + "full_name": "Chavez Trejo Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22127, + "fields": { + "user": null, + "account_number": "41808861", + "user_type": "student", + "full_name": "Ornelas Alba Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22128, + "fields": { + "user": null, + "account_number": "41808852", + "user_type": "student", + "full_name": "Robles Aguilar Juan Abdel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22129, + "fields": { + "user": null, + "account_number": "41808846", + "user_type": "student", + "full_name": "Perez Anaya Angel Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22130, + "fields": { + "user": null, + "account_number": "41808837", + "user_type": "student", + "full_name": "Ramirez Estrada Natalia Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22131, + "fields": { + "user": null, + "account_number": "41808813", + "user_type": "student", + "full_name": "Velasco Ramirez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22132, + "fields": { + "user": null, + "account_number": "41808810", + "user_type": "student", + "full_name": "Flores Hernandez Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22133, + "fields": { + "user": null, + "account_number": "41808809", + "user_type": "student", + "full_name": "Ponce Monares Luis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22134, + "fields": { + "user": null, + "account_number": "41808800", + "user_type": "student", + "full_name": "Velazquez Herrera Ian Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22135, + "fields": { + "user": null, + "account_number": "41808786", + "user_type": "student", + "full_name": "Galvan Lugo Alberto Hazel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22136, + "fields": { + "user": null, + "account_number": "41808778", + "user_type": "student", + "full_name": "Soto Aguilar Ethel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22137, + "fields": { + "user": null, + "account_number": "41808761", + "user_type": "student", + "full_name": "Cervantes Lugo Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22138, + "fields": { + "user": null, + "account_number": "41808739", + "user_type": "student", + "full_name": "Polo Monroy Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22139, + "fields": { + "user": null, + "account_number": "41808703", + "user_type": "student", + "full_name": "Vicente Garcia Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22140, + "fields": { + "user": null, + "account_number": "41808693", + "user_type": "student", + "full_name": "Tenorio Lugo Brandon Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22141, + "fields": { + "user": null, + "account_number": "41808668", + "user_type": "student", + "full_name": "Cruz Chavez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22142, + "fields": { + "user": null, + "account_number": "41808663", + "user_type": "student", + "full_name": "Martinez Bautista Jaime Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22143, + "fields": { + "user": null, + "account_number": "41808655", + "user_type": "student", + "full_name": "Gonzalez Avila Jose Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22144, + "fields": { + "user": null, + "account_number": "41808639", + "user_type": "student", + "full_name": "Fortino Ortigoza Joel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22145, + "fields": { + "user": null, + "account_number": "41808632", + "user_type": "student", + "full_name": "Gonzalez Zequeida Helena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22146, + "fields": { + "user": null, + "account_number": "41808625", + "user_type": "student", + "full_name": "Cruz Mendoza Jesus Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22147, + "fields": { + "user": null, + "account_number": "41808606", + "user_type": "student", + "full_name": "Huerta Balbuena Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22148, + "fields": { + "user": null, + "account_number": "41808598", + "user_type": "student", + "full_name": "Garcia Beltran Geraldo Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22149, + "fields": { + "user": null, + "account_number": "41808590", + "user_type": "student", + "full_name": "Cruz Cruz Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22150, + "fields": { + "user": null, + "account_number": "41808589", + "user_type": "student", + "full_name": "Nolasco Cruz Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22151, + "fields": { + "user": null, + "account_number": "41808583", + "user_type": "student", + "full_name": "Hernández Daniel Diana Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22152, + "fields": { + "user": null, + "account_number": "41808566", + "user_type": "student", + "full_name": "Reyes Cabrera Cesar Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22153, + "fields": { + "user": null, + "account_number": "41808552", + "user_type": "student", + "full_name": "Rodriguez Aguilar Carlos Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22154, + "fields": { + "user": null, + "account_number": "41808551", + "user_type": "student", + "full_name": "Sanchez Patio Natalia De Los Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22155, + "fields": { + "user": null, + "account_number": "41808547", + "user_type": "student", + "full_name": "Aguilar Callejas Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22156, + "fields": { + "user": null, + "account_number": "41808546", + "user_type": "student", + "full_name": "Ruiz Duran Karen Lorena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22157, + "fields": { + "user": null, + "account_number": "41808537", + "user_type": "student", + "full_name": "Ramos Ponce Zayra Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22158, + "fields": { + "user": null, + "account_number": "41808525", + "user_type": "student", + "full_name": "Monjaraz Chavez Adrick Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22159, + "fields": { + "user": null, + "account_number": "41808516", + "user_type": "student", + "full_name": "Gil Noguez Mitzi Joyce" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22160, + "fields": { + "user": null, + "account_number": "41808503", + "user_type": "student", + "full_name": "Gomez Juarez Angel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22161, + "fields": { + "user": null, + "account_number": "41808496", + "user_type": "student", + "full_name": "De La Luz Deciga Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22162, + "fields": { + "user": null, + "account_number": "41808490", + "user_type": "student", + "full_name": "Fernandez Moreno Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22163, + "fields": { + "user": null, + "account_number": "41808483", + "user_type": "student", + "full_name": "Mata Cayetano Aaron Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22164, + "fields": { + "user": null, + "account_number": "41808480", + "user_type": "student", + "full_name": "Martinez Sanchez Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22165, + "fields": { + "user": null, + "account_number": "41808477", + "user_type": "student", + "full_name": "Torres Velazquez Norma Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22166, + "fields": { + "user": null, + "account_number": "41808467", + "user_type": "student", + "full_name": "Rosas Castrejon Bruno Jeremias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22167, + "fields": { + "user": null, + "account_number": "41808466", + "user_type": "student", + "full_name": "Castillo Roa Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22168, + "fields": { + "user": null, + "account_number": "41808456", + "user_type": "student", + "full_name": "Rivera Vazquez Gabriel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22169, + "fields": { + "user": null, + "account_number": "41808387", + "user_type": "student", + "full_name": "Delgado Barajas Fabiola Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22170, + "fields": { + "user": null, + "account_number": "41808385", + "user_type": "student", + "full_name": "Carrillo Garcia Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22171, + "fields": { + "user": null, + "account_number": "41808380", + "user_type": "student", + "full_name": "Ordoez Guido Denis Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22172, + "fields": { + "user": null, + "account_number": "41808370", + "user_type": "student", + "full_name": "Rodriguez Osornio Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22173, + "fields": { + "user": null, + "account_number": "41808360", + "user_type": "student", + "full_name": "Lugo Muoz Karla Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22174, + "fields": { + "user": null, + "account_number": "41808351", + "user_type": "student", + "full_name": "Warden Barreda Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22175, + "fields": { + "user": null, + "account_number": "41808350", + "user_type": "student", + "full_name": "Huerta Rangel Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22176, + "fields": { + "user": null, + "account_number": "41808334", + "user_type": "student", + "full_name": "Muoz Godinez Kenia Yarelli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22177, + "fields": { + "user": null, + "account_number": "41808327", + "user_type": "student", + "full_name": "Chavarría Vázquez Felix" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22178, + "fields": { + "user": null, + "account_number": "41808323", + "user_type": "student", + "full_name": "Torreblanca Cespedes Aldo Evaristo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22179, + "fields": { + "user": null, + "account_number": "41808319", + "user_type": "student", + "full_name": "Sanchez Jacobo Edwin David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22180, + "fields": { + "user": null, + "account_number": "41808311", + "user_type": "student", + "full_name": "Garcia Buendia Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22181, + "fields": { + "user": null, + "account_number": "41808302", + "user_type": "student", + "full_name": "Acosta Gonzalez Jose David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22182, + "fields": { + "user": null, + "account_number": "41808292", + "user_type": "student", + "full_name": "Jaramillo Bautista David Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22183, + "fields": { + "user": null, + "account_number": "41808280", + "user_type": "student", + "full_name": "Diaz Rodriguez Irving" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22184, + "fields": { + "user": null, + "account_number": "41808274", + "user_type": "student", + "full_name": "Arizmendi Aguilar Irving Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22185, + "fields": { + "user": null, + "account_number": "41808245", + "user_type": "student", + "full_name": "Sanchez Cruz Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22186, + "fields": { + "user": null, + "account_number": "41808237", + "user_type": "student", + "full_name": "Hernandez Martinez Jose Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22187, + "fields": { + "user": null, + "account_number": "41808227", + "user_type": "student", + "full_name": "Bautista Bautista Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22188, + "fields": { + "user": null, + "account_number": "41808197", + "user_type": "student", + "full_name": "Varela Chaparro Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22189, + "fields": { + "user": null, + "account_number": "41808196", + "user_type": "student", + "full_name": "Hernandez Alonso Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22190, + "fields": { + "user": null, + "account_number": "41808192", + "user_type": "student", + "full_name": "Esquivel Mendoza Luis Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22191, + "fields": { + "user": null, + "account_number": "41808182", + "user_type": "student", + "full_name": "Hernandez Salvador Oscar Ubaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22192, + "fields": { + "user": null, + "account_number": "41808175", + "user_type": "student", + "full_name": "Camacho Guzman Oscar Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22193, + "fields": { + "user": null, + "account_number": "41808174", + "user_type": "student", + "full_name": "Angeles Rodriguez Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22194, + "fields": { + "user": null, + "account_number": "41808162", + "user_type": "student", + "full_name": "Sanchez Rios Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22195, + "fields": { + "user": null, + "account_number": "41808158", + "user_type": "student", + "full_name": "Casas Mondragon Eduardo Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22196, + "fields": { + "user": null, + "account_number": "41808157", + "user_type": "student", + "full_name": "Lopez Arellano Diego Roman" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22197, + "fields": { + "user": null, + "account_number": "41808139", + "user_type": "student", + "full_name": "Lugo Zavala Ramon Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22198, + "fields": { + "user": null, + "account_number": "41808138", + "user_type": "student", + "full_name": "Fernandez Cuevas Pedro Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22199, + "fields": { + "user": null, + "account_number": "41808128", + "user_type": "student", + "full_name": "Cuevas Centeno Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22200, + "fields": { + "user": null, + "account_number": "41808127", + "user_type": "student", + "full_name": "Becerril Perez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22201, + "fields": { + "user": null, + "account_number": "41808110", + "user_type": "student", + "full_name": "Alejo Anaya Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22202, + "fields": { + "user": null, + "account_number": "41808097", + "user_type": "student", + "full_name": "Cruz Abascal Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22203, + "fields": { + "user": null, + "account_number": "41808073", + "user_type": "student", + "full_name": "Martinez Romero Julissa Natali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22204, + "fields": { + "user": null, + "account_number": "41808000", + "user_type": "student", + "full_name": "Rincon Morales David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22205, + "fields": { + "user": null, + "account_number": "41807992", + "user_type": "student", + "full_name": "Martinez Rebollo Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22206, + "fields": { + "user": null, + "account_number": "41807960", + "user_type": "student", + "full_name": "Rodriguez Guerra Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22207, + "fields": { + "user": null, + "account_number": "41807938", + "user_type": "student", + "full_name": "Tapia Pineda Brenda Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22208, + "fields": { + "user": null, + "account_number": "41807937", + "user_type": "student", + "full_name": "Cruz Reyes Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22209, + "fields": { + "user": null, + "account_number": "41807935", + "user_type": "student", + "full_name": "Aguirre Andrade Salvador Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22210, + "fields": { + "user": null, + "account_number": "41807927", + "user_type": "student", + "full_name": "Martinez Magaa Hector Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22211, + "fields": { + "user": null, + "account_number": "41807923", + "user_type": "student", + "full_name": "Martinez Matias Gabino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22212, + "fields": { + "user": null, + "account_number": "41807922", + "user_type": "student", + "full_name": "Juarez Sandoval Fernando Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22213, + "fields": { + "user": null, + "account_number": "41807891", + "user_type": "student", + "full_name": "Morales Garcia Nancy Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22214, + "fields": { + "user": null, + "account_number": "41807873", + "user_type": "student", + "full_name": "Salomon Rodriguez Maricela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22215, + "fields": { + "user": null, + "account_number": "41807868", + "user_type": "student", + "full_name": "Marquez Magaa Mayra Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22216, + "fields": { + "user": null, + "account_number": "41807846", + "user_type": "student", + "full_name": "Vite Miranda Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22217, + "fields": { + "user": null, + "account_number": "41807844", + "user_type": "student", + "full_name": "Valdez Osorio Jorge Aurelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22218, + "fields": { + "user": null, + "account_number": "41807839", + "user_type": "student", + "full_name": "Barragan Carmona Katia Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22219, + "fields": { + "user": null, + "account_number": "41807821", + "user_type": "student", + "full_name": "Garcia Zepeda Luis Efren" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22220, + "fields": { + "user": null, + "account_number": "41807801", + "user_type": "student", + "full_name": "Moreno Moreno Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22221, + "fields": { + "user": null, + "account_number": "41807794", + "user_type": "student", + "full_name": "Ramirez Lopez Victor Arath" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22222, + "fields": { + "user": null, + "account_number": "41807782", + "user_type": "student", + "full_name": "Lopez Crisostomo Brenda Aline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22223, + "fields": { + "user": null, + "account_number": "41807777", + "user_type": "student", + "full_name": "Sanchez Ramirez Gabriela Natally" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22224, + "fields": { + "user": null, + "account_number": "41807752", + "user_type": "student", + "full_name": "Gonzalez Briones Miguel Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22225, + "fields": { + "user": null, + "account_number": "41807747", + "user_type": "student", + "full_name": "Hernandez Larios Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22226, + "fields": { + "user": null, + "account_number": "41807736", + "user_type": "student", + "full_name": "Cuandon Salazar Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22227, + "fields": { + "user": null, + "account_number": "41807735", + "user_type": "student", + "full_name": "Dominguez Santoyo Jorge Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22228, + "fields": { + "user": null, + "account_number": "41807718", + "user_type": "student", + "full_name": "Torres Jimenez Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22229, + "fields": { + "user": null, + "account_number": "41807713", + "user_type": "student", + "full_name": "Avila Romero Astrid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22230, + "fields": { + "user": null, + "account_number": "41807711", + "user_type": "student", + "full_name": "Gutierrez Gutierrez Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22231, + "fields": { + "user": null, + "account_number": "41807703", + "user_type": "student", + "full_name": "Barragan Ortiz Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22232, + "fields": { + "user": null, + "account_number": "41807702", + "user_type": "student", + "full_name": "Martinez Espinosa Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22233, + "fields": { + "user": null, + "account_number": "41807696", + "user_type": "student", + "full_name": "Salazar Martinez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22234, + "fields": { + "user": null, + "account_number": "41807694", + "user_type": "student", + "full_name": "Baeza Olvera Daniel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22235, + "fields": { + "user": null, + "account_number": "41807693", + "user_type": "student", + "full_name": "Salazar Christian Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22236, + "fields": { + "user": null, + "account_number": "41807692", + "user_type": "student", + "full_name": "De Jesus Guerrero Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22237, + "fields": { + "user": null, + "account_number": "41807687", + "user_type": "student", + "full_name": "Garcia Perez Salomon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22238, + "fields": { + "user": null, + "account_number": "41807677", + "user_type": "student", + "full_name": "Reynoso Victoria Paola Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22239, + "fields": { + "user": null, + "account_number": "41807667", + "user_type": "student", + "full_name": "Garcia Mendoza Cristian Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22240, + "fields": { + "user": null, + "account_number": "41807661", + "user_type": "student", + "full_name": "Zavala Moreno Jesus Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22241, + "fields": { + "user": null, + "account_number": "41807655", + "user_type": "student", + "full_name": "De Jesus Santiago Brian Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22242, + "fields": { + "user": null, + "account_number": "41807654", + "user_type": "student", + "full_name": "Rojas Mondragon Osmara Judith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22243, + "fields": { + "user": null, + "account_number": "41807609", + "user_type": "student", + "full_name": "Nabor Sanchez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22244, + "fields": { + "user": null, + "account_number": "41807602", + "user_type": "student", + "full_name": "Basilio Honorato Bladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22245, + "fields": { + "user": null, + "account_number": "41807574", + "user_type": "student", + "full_name": "Hernandez Ramirez Carlos Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22246, + "fields": { + "user": null, + "account_number": "41807563", + "user_type": "student", + "full_name": "Chavez Cano Alex Renato" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22247, + "fields": { + "user": null, + "account_number": "41704303", + "user_type": "student", + "full_name": "Garcia Pia Jose Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22248, + "fields": { + "user": null, + "account_number": "41509214", + "user_type": "student", + "full_name": "Duran Collazo Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22249, + "fields": { + "user": null, + "account_number": "40701641", + "user_type": "student", + "full_name": "Segovia Nova Rosendo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22250, + "fields": { + "user": null, + "account_number": "31570210", + "user_type": "student", + "full_name": "Solis Figueroa Noe Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22251, + "fields": { + "user": null, + "account_number": "31569226", + "user_type": "student", + "full_name": "Santillan Zaragoza Erick Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22252, + "fields": { + "user": null, + "account_number": "31566149", + "user_type": "student", + "full_name": "Cuellar Ortega Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22253, + "fields": { + "user": null, + "account_number": "31562271", + "user_type": "student", + "full_name": "Corzo Villegas Tania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22254, + "fields": { + "user": null, + "account_number": "31553456", + "user_type": "student", + "full_name": "Hernandez Verduzco Najla Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22255, + "fields": { + "user": null, + "account_number": "31551562", + "user_type": "student", + "full_name": "Vasquez Murillo Jorge Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22256, + "fields": { + "user": null, + "account_number": "31534785", + "user_type": "student", + "full_name": "Zamora Moreno Yael Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22257, + "fields": { + "user": null, + "account_number": "31534290", + "user_type": "student", + "full_name": "Rivero Arenas Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22258, + "fields": { + "user": null, + "account_number": "31533761", + "user_type": "student", + "full_name": "Osorio Davalos Baruc Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22259, + "fields": { + "user": null, + "account_number": "31533293", + "user_type": "student", + "full_name": "Bautista Gaona Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22260, + "fields": { + "user": null, + "account_number": "31532550", + "user_type": "student", + "full_name": "Vigueras Gonzalez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22261, + "fields": { + "user": null, + "account_number": "31532527", + "user_type": "student", + "full_name": "Tenorio Lopez Edgar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22262, + "fields": { + "user": null, + "account_number": "31532526", + "user_type": "student", + "full_name": "Santos Espindola Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22263, + "fields": { + "user": null, + "account_number": "31532459", + "user_type": "student", + "full_name": "Sanchez Molina Barbara Jackelin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22264, + "fields": { + "user": null, + "account_number": "31532406", + "user_type": "student", + "full_name": "Ramirez Barrios Brenda Michel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22265, + "fields": { + "user": null, + "account_number": "31531903", + "user_type": "student", + "full_name": "Ramirez Calnacasco Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22266, + "fields": { + "user": null, + "account_number": "31531418", + "user_type": "student", + "full_name": "Hernandez Fuentes Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22267, + "fields": { + "user": null, + "account_number": "31530930", + "user_type": "student", + "full_name": "Guzman Rayas Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22268, + "fields": { + "user": null, + "account_number": "31528797", + "user_type": "student", + "full_name": "Silva Salazar Omar Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22269, + "fields": { + "user": null, + "account_number": "31527549", + "user_type": "student", + "full_name": "Salinas Gomez Marcos Valdemar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22270, + "fields": { + "user": null, + "account_number": "31527310", + "user_type": "student", + "full_name": "Mendoza Hernandez Ingrid Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22271, + "fields": { + "user": null, + "account_number": "31527295", + "user_type": "student", + "full_name": "Orozco Pacheco Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22272, + "fields": { + "user": null, + "account_number": "31527234", + "user_type": "student", + "full_name": "Malvaez Flores Jonathan Geovanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22273, + "fields": { + "user": null, + "account_number": "31527216", + "user_type": "student", + "full_name": "Lozada Sanchez Alan Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22274, + "fields": { + "user": null, + "account_number": "31527203", + "user_type": "student", + "full_name": "Juarez Hernandez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22275, + "fields": { + "user": null, + "account_number": "31527155", + "user_type": "student", + "full_name": "Morales Jaime Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22276, + "fields": { + "user": null, + "account_number": "31527146", + "user_type": "student", + "full_name": "Mares Cruz Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22277, + "fields": { + "user": null, + "account_number": "31526677", + "user_type": "student", + "full_name": "Cruz Cortes Alba Cristina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22278, + "fields": { + "user": null, + "account_number": "31526098", + "user_type": "student", + "full_name": "Hernandez Gonzalez Dirce Eileen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22279, + "fields": { + "user": null, + "account_number": "31525758", + "user_type": "student", + "full_name": "Arriaga Camero Ricardo Raziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22280, + "fields": { + "user": null, + "account_number": "31525478", + "user_type": "student", + "full_name": "Yaez Ramirez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22281, + "fields": { + "user": null, + "account_number": "31523461", + "user_type": "student", + "full_name": "Mendez Borja Jonathan Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22282, + "fields": { + "user": null, + "account_number": "31522765", + "user_type": "student", + "full_name": "Pia Godinez Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22283, + "fields": { + "user": null, + "account_number": "31522720", + "user_type": "student", + "full_name": "Rivera Jimenez Angel Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22284, + "fields": { + "user": null, + "account_number": "31522382", + "user_type": "student", + "full_name": "Rivera Cruz Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22285, + "fields": { + "user": null, + "account_number": "31522358", + "user_type": "student", + "full_name": "Ramirez Miranda Gloria Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22286, + "fields": { + "user": null, + "account_number": "31521447", + "user_type": "student", + "full_name": "Medina Bautista Eric Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22287, + "fields": { + "user": null, + "account_number": "31520588", + "user_type": "student", + "full_name": "Lopez Diaz Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22288, + "fields": { + "user": null, + "account_number": "31520040", + "user_type": "student", + "full_name": "Damaso Reyes Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22289, + "fields": { + "user": null, + "account_number": "31519968", + "user_type": "student", + "full_name": "Alcantar Mateos Luis Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22290, + "fields": { + "user": null, + "account_number": "31519961", + "user_type": "student", + "full_name": "Alvarez Nava Evelin Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22291, + "fields": { + "user": null, + "account_number": "31519958", + "user_type": "student", + "full_name": "Almaguer Vazquez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22292, + "fields": { + "user": null, + "account_number": "31519840", + "user_type": "student", + "full_name": "Alonso Fuentes Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22293, + "fields": { + "user": null, + "account_number": "31519631", + "user_type": "student", + "full_name": "Aguilar Hilario Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22294, + "fields": { + "user": null, + "account_number": "31518987", + "user_type": "student", + "full_name": "Vieyra Acosta Josue David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22295, + "fields": { + "user": null, + "account_number": "31518669", + "user_type": "student", + "full_name": "Morales Lopez Nallely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22296, + "fields": { + "user": null, + "account_number": "31518447", + "user_type": "student", + "full_name": "Pacheco Guerrero Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22297, + "fields": { + "user": null, + "account_number": "31518186", + "user_type": "student", + "full_name": "Lopez Mata Diego Tomas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22298, + "fields": { + "user": null, + "account_number": "31518182", + "user_type": "student", + "full_name": "Juarez Jimenez Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22299, + "fields": { + "user": null, + "account_number": "31517628", + "user_type": "student", + "full_name": "Herrera Linares Rodrigo Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22300, + "fields": { + "user": null, + "account_number": "31516761", + "user_type": "student", + "full_name": "Diaz Ramirez Alan Nazareth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22301, + "fields": { + "user": null, + "account_number": "31515076", + "user_type": "student", + "full_name": "Torres Vazquez Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22302, + "fields": { + "user": null, + "account_number": "31514978", + "user_type": "student", + "full_name": "Ramos Jimenez Luz Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22303, + "fields": { + "user": null, + "account_number": "31514921", + "user_type": "student", + "full_name": "Negrete Lara Karen Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22304, + "fields": { + "user": null, + "account_number": "31514870", + "user_type": "student", + "full_name": "Ramirez Fernandez Gerardo Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22305, + "fields": { + "user": null, + "account_number": "31514513", + "user_type": "student", + "full_name": "Conde Guzman Jose Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22306, + "fields": { + "user": null, + "account_number": "31514490", + "user_type": "student", + "full_name": "Benitez Vazquez Tania Denisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22307, + "fields": { + "user": null, + "account_number": "31511299", + "user_type": "student", + "full_name": "Ortiz Lazcano Braulio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22308, + "fields": { + "user": null, + "account_number": "31510457", + "user_type": "student", + "full_name": "Hernandez Martinez Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22309, + "fields": { + "user": null, + "account_number": "31510355", + "user_type": "student", + "full_name": "Rivera Castro Kevin Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22310, + "fields": { + "user": null, + "account_number": "31510332", + "user_type": "student", + "full_name": "Caballero Perez Kevin Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22311, + "fields": { + "user": null, + "account_number": "31510296", + "user_type": "student", + "full_name": "Carreon Romero Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22312, + "fields": { + "user": null, + "account_number": "31510159", + "user_type": "student", + "full_name": "Vasquez Olmedo Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22313, + "fields": { + "user": null, + "account_number": "31510075", + "user_type": "student", + "full_name": "Gonzalez Gonzalez Carlos Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22314, + "fields": { + "user": null, + "account_number": "31509991", + "user_type": "student", + "full_name": "Hernandez Santana Ximena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22315, + "fields": { + "user": null, + "account_number": "31509928", + "user_type": "student", + "full_name": "De La Pea Estrada Valerie Samantha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22316, + "fields": { + "user": null, + "account_number": "31509406", + "user_type": "student", + "full_name": "Robledo Delgado Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22317, + "fields": { + "user": null, + "account_number": "31508614", + "user_type": "student", + "full_name": "Ordaz Romero Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22318, + "fields": { + "user": null, + "account_number": "31507821", + "user_type": "student", + "full_name": "Venegas Flores Samuel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22319, + "fields": { + "user": null, + "account_number": "31507334", + "user_type": "student", + "full_name": "Conde Pineda Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22320, + "fields": { + "user": null, + "account_number": "31506721", + "user_type": "student", + "full_name": "Flores Perez Sahori Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22321, + "fields": { + "user": null, + "account_number": "31503388", + "user_type": "student", + "full_name": "Cespedes Ocegueda Carlos Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22322, + "fields": { + "user": null, + "account_number": "31502276", + "user_type": "student", + "full_name": "Alba Carmona Vania Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22323, + "fields": { + "user": null, + "account_number": "31501622", + "user_type": "student", + "full_name": "Bautista Villar Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22324, + "fields": { + "user": null, + "account_number": "31500787", + "user_type": "student", + "full_name": "Castillo Vallejo Kevin Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22325, + "fields": { + "user": null, + "account_number": "31500747", + "user_type": "student", + "full_name": "Colmenares Espinoza Esperanza" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22326, + "fields": { + "user": null, + "account_number": "31467679", + "user_type": "student", + "full_name": "Macedo Madrigal Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22327, + "fields": { + "user": null, + "account_number": "31466276", + "user_type": "student", + "full_name": "Estrada Vieyra Brandon Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22328, + "fields": { + "user": null, + "account_number": "31460316", + "user_type": "student", + "full_name": "Del Castillo Flores Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22329, + "fields": { + "user": null, + "account_number": "31453178", + "user_type": "student", + "full_name": "Hernandez Molina Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22330, + "fields": { + "user": null, + "account_number": "31453081", + "user_type": "student", + "full_name": "Vilchiz Hinojosa Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22331, + "fields": { + "user": null, + "account_number": "31434732", + "user_type": "student", + "full_name": "Soto Revueltas Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22332, + "fields": { + "user": null, + "account_number": "31434425", + "user_type": "student", + "full_name": "Liceaga Cardoso Angel David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22333, + "fields": { + "user": null, + "account_number": "31434397", + "user_type": "student", + "full_name": "Hernandez Gomez Guadalupe Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22334, + "fields": { + "user": null, + "account_number": "31434125", + "user_type": "student", + "full_name": "Bocas Pichardo Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22335, + "fields": { + "user": null, + "account_number": "31433862", + "user_type": "student", + "full_name": "Gonzalez Molina Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22336, + "fields": { + "user": null, + "account_number": "31432740", + "user_type": "student", + "full_name": "Reyes Herrera Oscar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22337, + "fields": { + "user": null, + "account_number": "31432403", + "user_type": "student", + "full_name": "Santiago Reyes Donovan Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22338, + "fields": { + "user": null, + "account_number": "31431891", + "user_type": "student", + "full_name": "Mejia Maldonado Jose Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22339, + "fields": { + "user": null, + "account_number": "31431634", + "user_type": "student", + "full_name": "Gutierrez Marquez Diego Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22340, + "fields": { + "user": null, + "account_number": "31431595", + "user_type": "student", + "full_name": "Guerrero Gonzalez Edson Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22341, + "fields": { + "user": null, + "account_number": "31430885", + "user_type": "student", + "full_name": "Villamar Rosas Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22342, + "fields": { + "user": null, + "account_number": "31429962", + "user_type": "student", + "full_name": "Cabrera Quintero Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22343, + "fields": { + "user": null, + "account_number": "31429531", + "user_type": "student", + "full_name": "Sanchez Montes Emilio Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22344, + "fields": { + "user": null, + "account_number": "31429327", + "user_type": "student", + "full_name": "Rios Sanchez Jorge Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22345, + "fields": { + "user": null, + "account_number": "31428575", + "user_type": "student", + "full_name": "Carpio Romero Xhane" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22346, + "fields": { + "user": null, + "account_number": "31428267", + "user_type": "student", + "full_name": "Ortega Herrera Francisco Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22347, + "fields": { + "user": null, + "account_number": "31428168", + "user_type": "student", + "full_name": "Maceda Perez Olivia Yuyu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22348, + "fields": { + "user": null, + "account_number": "31428139", + "user_type": "student", + "full_name": "Medina Juarez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22349, + "fields": { + "user": null, + "account_number": "31428116", + "user_type": "student", + "full_name": "Mendoza Gonzalez Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22350, + "fields": { + "user": null, + "account_number": "31427846", + "user_type": "student", + "full_name": "Gonzalez Perez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22351, + "fields": { + "user": null, + "account_number": "31427399", + "user_type": "student", + "full_name": "Oros Lopez Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22352, + "fields": { + "user": null, + "account_number": "31427105", + "user_type": "student", + "full_name": "Flores Velasco Jose Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22353, + "fields": { + "user": null, + "account_number": "31427012", + "user_type": "student", + "full_name": "Bacelis Yx Carlos Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22354, + "fields": { + "user": null, + "account_number": "31426959", + "user_type": "student", + "full_name": "Valencia Ayala Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22355, + "fields": { + "user": null, + "account_number": "31425274", + "user_type": "student", + "full_name": "Velazquez Diaz Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22356, + "fields": { + "user": null, + "account_number": "31425236", + "user_type": "student", + "full_name": "Vargas Rodriguez Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22357, + "fields": { + "user": null, + "account_number": "31424650", + "user_type": "student", + "full_name": "Cruz Garcia Marcos Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22358, + "fields": { + "user": null, + "account_number": "31424578", + "user_type": "student", + "full_name": "Vazquez Andres Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22359, + "fields": { + "user": null, + "account_number": "31424554", + "user_type": "student", + "full_name": "Serrano Ramirez Viviana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22360, + "fields": { + "user": null, + "account_number": "31423169", + "user_type": "student", + "full_name": "Benavides Lara Dulce Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22361, + "fields": { + "user": null, + "account_number": "31422185", + "user_type": "student", + "full_name": "Jimenez Jimenez Ollincatl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22362, + "fields": { + "user": null, + "account_number": "31421649", + "user_type": "student", + "full_name": "Martinez Castaeda Pablo Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22363, + "fields": { + "user": null, + "account_number": "31421555", + "user_type": "student", + "full_name": "Juarez Reyes Carlos Christopher Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22364, + "fields": { + "user": null, + "account_number": "31420243", + "user_type": "student", + "full_name": "Molina Sanchez Pamela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22365, + "fields": { + "user": null, + "account_number": "31420138", + "user_type": "student", + "full_name": "Barco Alfaro Angel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22366, + "fields": { + "user": null, + "account_number": "31420039", + "user_type": "student", + "full_name": "Segura Alejo Cesar Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22367, + "fields": { + "user": null, + "account_number": "31419886", + "user_type": "student", + "full_name": "Perez Ibarra Alfredo De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22368, + "fields": { + "user": null, + "account_number": "31419598", + "user_type": "student", + "full_name": "Alcantara Sarmiento Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22369, + "fields": { + "user": null, + "account_number": "31419402", + "user_type": "student", + "full_name": "Rosales Silva Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22370, + "fields": { + "user": null, + "account_number": "31418928", + "user_type": "student", + "full_name": "Salazar Cruz Gabriel Ocelotl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22371, + "fields": { + "user": null, + "account_number": "31418355", + "user_type": "student", + "full_name": "Oropeza Serrano Jasiel Neftali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22372, + "fields": { + "user": null, + "account_number": "31415436", + "user_type": "student", + "full_name": "Flores Zenteno Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22373, + "fields": { + "user": null, + "account_number": "31415120", + "user_type": "student", + "full_name": "Alvarez Beltran Alvaro Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22374, + "fields": { + "user": null, + "account_number": "31414612", + "user_type": "student", + "full_name": "Betancourt Ramirez Diego Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22375, + "fields": { + "user": null, + "account_number": "31414167", + "user_type": "student", + "full_name": "Rivera Talavera Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22376, + "fields": { + "user": null, + "account_number": "31414138", + "user_type": "student", + "full_name": "Rodriguez Vazquez Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22377, + "fields": { + "user": null, + "account_number": "31413410", + "user_type": "student", + "full_name": "Perez Rios Daniel Valentin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22378, + "fields": { + "user": null, + "account_number": "31412842", + "user_type": "student", + "full_name": "Simon Aranda Zahir Hassan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22379, + "fields": { + "user": null, + "account_number": "31412109", + "user_type": "student", + "full_name": "Vazquez Tinajero Zaira Ketzalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22380, + "fields": { + "user": null, + "account_number": "31411243", + "user_type": "student", + "full_name": "Moreno Blanco Luz Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22381, + "fields": { + "user": null, + "account_number": "31411082", + "user_type": "student", + "full_name": "Monroy Barcenas Juan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22382, + "fields": { + "user": null, + "account_number": "31411055", + "user_type": "student", + "full_name": "Montiel Cantu Diego David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22383, + "fields": { + "user": null, + "account_number": "31410605", + "user_type": "student", + "full_name": "Perez Andrade Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22384, + "fields": { + "user": null, + "account_number": "31410564", + "user_type": "student", + "full_name": "Manuel Estevez Mayra Lisset" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22385, + "fields": { + "user": null, + "account_number": "31410062", + "user_type": "student", + "full_name": "De Avila Renteria Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22386, + "fields": { + "user": null, + "account_number": "31409421", + "user_type": "student", + "full_name": "Lugo Arizmendi Salange" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22387, + "fields": { + "user": null, + "account_number": "31408747", + "user_type": "student", + "full_name": "Alvarez Sanchez Luis Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22388, + "fields": { + "user": null, + "account_number": "31408435", + "user_type": "student", + "full_name": "Connelly Tapia Jose Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22389, + "fields": { + "user": null, + "account_number": "31408339", + "user_type": "student", + "full_name": "Cervantes Gonzalez Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22390, + "fields": { + "user": null, + "account_number": "31408233", + "user_type": "student", + "full_name": "Cabrera Diaz Hugo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22391, + "fields": { + "user": null, + "account_number": "31407790", + "user_type": "student", + "full_name": "Mateo Gutierrez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22392, + "fields": { + "user": null, + "account_number": "31407375", + "user_type": "student", + "full_name": "Hernandez Color Jesus Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22393, + "fields": { + "user": null, + "account_number": "31407006", + "user_type": "student", + "full_name": "Duran Chavez Kevin Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22394, + "fields": { + "user": null, + "account_number": "31406508", + "user_type": "student", + "full_name": "Tepozan Vazquez Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22395, + "fields": { + "user": null, + "account_number": "31406496", + "user_type": "student", + "full_name": "Santiago Martinez Elian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22396, + "fields": { + "user": null, + "account_number": "31406320", + "user_type": "student", + "full_name": "Palapa Gonzalez Lizeth Beleni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22397, + "fields": { + "user": null, + "account_number": "31406288", + "user_type": "student", + "full_name": "Martinez Muoz Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22398, + "fields": { + "user": null, + "account_number": "31406217", + "user_type": "student", + "full_name": "Alvarez Cortes Kevin Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22399, + "fields": { + "user": null, + "account_number": "31405212", + "user_type": "student", + "full_name": "Perez Neri Victor Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22400, + "fields": { + "user": null, + "account_number": "31404204", + "user_type": "student", + "full_name": "Garcia Flores Cinthya Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22401, + "fields": { + "user": null, + "account_number": "31404202", + "user_type": "student", + "full_name": "Guerrero Mixtega Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22402, + "fields": { + "user": null, + "account_number": "31403972", + "user_type": "student", + "full_name": "Arevalo Esquivel Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22403, + "fields": { + "user": null, + "account_number": "31403763", + "user_type": "student", + "full_name": "Rosas Camacho Jessica Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22404, + "fields": { + "user": null, + "account_number": "31403366", + "user_type": "student", + "full_name": "Bellmunt Ruiz Alain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22405, + "fields": { + "user": null, + "account_number": "31403355", + "user_type": "student", + "full_name": "Galvez Vigil Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22406, + "fields": { + "user": null, + "account_number": "31403009", + "user_type": "student", + "full_name": "Vega Hernandez Francisco Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22407, + "fields": { + "user": null, + "account_number": "31402358", + "user_type": "student", + "full_name": "Rodriguez Paredes Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22408, + "fields": { + "user": null, + "account_number": "31402137", + "user_type": "student", + "full_name": "Molina Hernandez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22409, + "fields": { + "user": null, + "account_number": "31401625", + "user_type": "student", + "full_name": "Hernandez Flores Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22410, + "fields": { + "user": null, + "account_number": "31401379", + "user_type": "student", + "full_name": "Alvarez Hernandez Jesus Zabdiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22411, + "fields": { + "user": null, + "account_number": "31400641", + "user_type": "student", + "full_name": "Dominguez Vazquez Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22412, + "fields": { + "user": null, + "account_number": "31335524", + "user_type": "student", + "full_name": "Chavez Salgado David Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22413, + "fields": { + "user": null, + "account_number": "31335437", + "user_type": "student", + "full_name": "Ballesteros Torres Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22414, + "fields": { + "user": null, + "account_number": "31335116", + "user_type": "student", + "full_name": "Reyes Victoria Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22415, + "fields": { + "user": null, + "account_number": "31333201", + "user_type": "student", + "full_name": "Reyes Melo Diana Edith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22416, + "fields": { + "user": null, + "account_number": "31329217", + "user_type": "student", + "full_name": "Vazquez Segura Carlos Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22417, + "fields": { + "user": null, + "account_number": "31328681", + "user_type": "student", + "full_name": "Lara Cazares Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22418, + "fields": { + "user": null, + "account_number": "31328127", + "user_type": "student", + "full_name": "Ruiz Villaseor Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22419, + "fields": { + "user": null, + "account_number": "31325755", + "user_type": "student", + "full_name": "Mellado Garcia Jorge Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22420, + "fields": { + "user": null, + "account_number": "31324476", + "user_type": "student", + "full_name": "Diaz Montoya Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22421, + "fields": { + "user": null, + "account_number": "31320141", + "user_type": "student", + "full_name": "Hernandez Yaez Paulo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22422, + "fields": { + "user": null, + "account_number": "31317877", + "user_type": "student", + "full_name": "Fernandez Campuzano Mara Cassandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22423, + "fields": { + "user": null, + "account_number": "31317398", + "user_type": "student", + "full_name": "Hernandez Avila Sixto Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22424, + "fields": { + "user": null, + "account_number": "31316785", + "user_type": "student", + "full_name": "ESPEJEL REBOLLAR FERNANDO" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22425, + "fields": { + "user": null, + "account_number": "31313903", + "user_type": "student", + "full_name": "Jimenez Riverol Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22426, + "fields": { + "user": null, + "account_number": "31311929", + "user_type": "student", + "full_name": "SANCHEZ MARROQUIN JESUS ADAN" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22427, + "fields": { + "user": null, + "account_number": "31311065", + "user_type": "student", + "full_name": "Hernandez Cabrera Carlos Joaquin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22428, + "fields": { + "user": null, + "account_number": "31309774", + "user_type": "student", + "full_name": "Vazquez Lopez Moises Heli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22429, + "fields": { + "user": null, + "account_number": "31308072", + "user_type": "student", + "full_name": "Oropeza Manzanares Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22430, + "fields": { + "user": null, + "account_number": "31307066", + "user_type": "student", + "full_name": "Farina Galindo Esteban Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22431, + "fields": { + "user": null, + "account_number": "31307001", + "user_type": "student", + "full_name": "Cardenas Perez Juana Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22432, + "fields": { + "user": null, + "account_number": "31306866", + "user_type": "student", + "full_name": "Zarate Morgan Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22433, + "fields": { + "user": null, + "account_number": "31305398", + "user_type": "student", + "full_name": "Torres Trujillo Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22434, + "fields": { + "user": null, + "account_number": "31302534", + "user_type": "student", + "full_name": "Espinosa De La Rosa Erick Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22435, + "fields": { + "user": null, + "account_number": "31253186", + "user_type": "student", + "full_name": "Poblete Naredo Amado Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22436, + "fields": { + "user": null, + "account_number": "31232919", + "user_type": "student", + "full_name": "Ozornio Mendez Jesus Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22437, + "fields": { + "user": null, + "account_number": "31231743", + "user_type": "student", + "full_name": "Velasco Solis Lea Polette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22438, + "fields": { + "user": null, + "account_number": "31229438", + "user_type": "student", + "full_name": "Camacho Rodriguez Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22439, + "fields": { + "user": null, + "account_number": "31228746", + "user_type": "student", + "full_name": "Trejo Solis Jesus Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22440, + "fields": { + "user": null, + "account_number": "31228674", + "user_type": "student", + "full_name": "Rodriguez Escudero Maria Paula" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22441, + "fields": { + "user": null, + "account_number": "31227052", + "user_type": "student", + "full_name": "Aparicio Neri Kevin David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22442, + "fields": { + "user": null, + "account_number": "31223303", + "user_type": "student", + "full_name": "Cabello Muoz Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22443, + "fields": { + "user": null, + "account_number": "31220576", + "user_type": "student", + "full_name": "Alcantara Ortiz Raul Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22444, + "fields": { + "user": null, + "account_number": "31220454", + "user_type": "student", + "full_name": "Ramirez Chavez Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22445, + "fields": { + "user": null, + "account_number": "31218947", + "user_type": "student", + "full_name": "Torres Galindo Gaston Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22446, + "fields": { + "user": null, + "account_number": "31218055", + "user_type": "student", + "full_name": "Segura Galindo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22447, + "fields": { + "user": null, + "account_number": "31215842", + "user_type": "student", + "full_name": "Allende Cortes Ignacio Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22448, + "fields": { + "user": null, + "account_number": "31215777", + "user_type": "student", + "full_name": "Palacios Cortes Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22449, + "fields": { + "user": null, + "account_number": "31214021", + "user_type": "student", + "full_name": "Ortega Lobato Dulce Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22450, + "fields": { + "user": null, + "account_number": "31207190", + "user_type": "student", + "full_name": "Martinez Hernandez Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22451, + "fields": { + "user": null, + "account_number": "31131269", + "user_type": "student", + "full_name": "Sanchez Garcia Xochitl Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22452, + "fields": { + "user": null, + "account_number": "31127764", + "user_type": "student", + "full_name": "Gomez Espinoza Raul Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22453, + "fields": { + "user": null, + "account_number": "31127010", + "user_type": "student", + "full_name": "Sandoval Perez Ricardo Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22454, + "fields": { + "user": null, + "account_number": "31122697", + "user_type": "student", + "full_name": "Garcia Hurtado Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22455, + "fields": { + "user": null, + "account_number": "31119712", + "user_type": "student", + "full_name": "Leyte Coronel Monica Yesenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22456, + "fields": { + "user": null, + "account_number": "31118251", + "user_type": "student", + "full_name": "Galicia Santiago Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22457, + "fields": { + "user": null, + "account_number": "31112751", + "user_type": "student", + "full_name": "Nabor Lira Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22458, + "fields": { + "user": null, + "account_number": "31110871", + "user_type": "student", + "full_name": "Ramirez Ortiz Fernando Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22459, + "fields": { + "user": null, + "account_number": "31108327", + "user_type": "student", + "full_name": "Alva Olalde Rodrigo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22460, + "fields": { + "user": null, + "account_number": "31029968", + "user_type": "student", + "full_name": "Perez Gonzalez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22461, + "fields": { + "user": null, + "account_number": "31015144", + "user_type": "student", + "full_name": "Mendoza Suarez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22462, + "fields": { + "user": null, + "account_number": "31015068", + "user_type": "student", + "full_name": "Martinez Vazquez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22463, + "fields": { + "user": null, + "account_number": "31014991", + "user_type": "student", + "full_name": "Lopez Flores Brisa Guillermina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22464, + "fields": { + "user": null, + "account_number": "31014265", + "user_type": "student", + "full_name": "Gonzalez Alducin Maria Teresa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22465, + "fields": { + "user": null, + "account_number": "31008024", + "user_type": "student", + "full_name": "Gonzalez Ramos Nestor Gibran" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22466, + "fields": { + "user": null, + "account_number": "31007736", + "user_type": "student", + "full_name": "Flores Moreno Ari Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22467, + "fields": { + "user": null, + "account_number": "30832168", + "user_type": "student", + "full_name": "Salguero Romero Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22468, + "fields": { + "user": null, + "account_number": "30823378", + "user_type": "student", + "full_name": "Ramirez Bautista Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22469, + "fields": { + "user": null, + "account_number": "30809623", + "user_type": "student", + "full_name": "Mendoza Cortes Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22470, + "fields": { + "user": null, + "account_number": "30802808", + "user_type": "student", + "full_name": "Aguilar Murillo Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22471, + "fields": { + "user": null, + "account_number": "30711383", + "user_type": "student", + "full_name": "Angel Palmillas Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22472, + "fields": { + "user": null, + "account_number": "30661923", + "user_type": "student", + "full_name": "Delgadillo Rojas Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22473, + "fields": { + "user": null, + "account_number": "30615720", + "user_type": "student", + "full_name": "Monreal Tovar Victor Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22474, + "fields": { + "user": null, + "account_number": "30526837", + "user_type": "student", + "full_name": "Martinez Ramirez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22475, + "fields": { + "user": null, + "account_number": "30507673", + "user_type": "student", + "full_name": "Bauelos Rangel Martha Esther" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22476, + "fields": { + "user": null, + "account_number": "11100173", + "user_type": "student", + "full_name": "Andrade Vidal Fernando Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22477, + "fields": { + "user": null, + "account_number": "41720018", + "user_type": "student", + "full_name": "Gonzalez Lopez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22478, + "fields": { + "user": null, + "account_number": "41710677", + "user_type": "student", + "full_name": "Barquin Jimenez Israel Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22479, + "fields": { + "user": null, + "account_number": "41710593", + "user_type": "student", + "full_name": "Gonzalez Lopez Cynthia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22480, + "fields": { + "user": null, + "account_number": "41710474", + "user_type": "student", + "full_name": "Ruiz Velazquez Jaime Abisai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22481, + "fields": { + "user": null, + "account_number": "41710429", + "user_type": "student", + "full_name": "Perez Arias Lirio Aylin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22482, + "fields": { + "user": null, + "account_number": "41710428", + "user_type": "student", + "full_name": "Rodriguez Vazquez Jerson Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22483, + "fields": { + "user": null, + "account_number": "41710311", + "user_type": "student", + "full_name": "Romero GarduÐo Juan Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22484, + "fields": { + "user": null, + "account_number": "41710098", + "user_type": "student", + "full_name": "Morales Lambarri Fernando Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22485, + "fields": { + "user": null, + "account_number": "41710082", + "user_type": "student", + "full_name": "Espinosa Aguilar Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22486, + "fields": { + "user": null, + "account_number": "41709967", + "user_type": "student", + "full_name": "Ruedas Prado Luisa Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22487, + "fields": { + "user": null, + "account_number": "41709922", + "user_type": "student", + "full_name": "Fernandez Ortiz Rebeca Alejandra Gab" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22488, + "fields": { + "user": null, + "account_number": "41709824", + "user_type": "student", + "full_name": "Garcia Nava Oswaldo Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22489, + "fields": { + "user": null, + "account_number": "41709814", + "user_type": "student", + "full_name": "Corona Lopez Jacqueline Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22490, + "fields": { + "user": null, + "account_number": "41709742", + "user_type": "student", + "full_name": "Esteva Luis Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22491, + "fields": { + "user": null, + "account_number": "41709633", + "user_type": "student", + "full_name": "Ayala Huerta Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22492, + "fields": { + "user": null, + "account_number": "41709567", + "user_type": "student", + "full_name": "Campos Escobedo Daniel Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22493, + "fields": { + "user": null, + "account_number": "41709555", + "user_type": "student", + "full_name": "Cruz Canchola Nolberida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22494, + "fields": { + "user": null, + "account_number": "41709414", + "user_type": "student", + "full_name": "Ruiz Tapia Adrian Federico" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22495, + "fields": { + "user": null, + "account_number": "41709388", + "user_type": "student", + "full_name": "Martinez BolaÐos Luis Magdiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22496, + "fields": { + "user": null, + "account_number": "41709329", + "user_type": "student", + "full_name": "Ramirez Salvador Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22497, + "fields": { + "user": null, + "account_number": "41709276", + "user_type": "student", + "full_name": "Zapata Correa Jossie Ivana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22498, + "fields": { + "user": null, + "account_number": "41709219", + "user_type": "student", + "full_name": "Cazares Garcia Denisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22499, + "fields": { + "user": null, + "account_number": "41709152", + "user_type": "student", + "full_name": "Nava Vazquez Guadalupe Zobeida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22500, + "fields": { + "user": null, + "account_number": "41709002", + "user_type": "student", + "full_name": "Ruiz Mendoza Jesus Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22501, + "fields": { + "user": null, + "account_number": "41708929", + "user_type": "student", + "full_name": "Borjan Ramirez Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22502, + "fields": { + "user": null, + "account_number": "41708842", + "user_type": "student", + "full_name": "Gonzalez Hernandez Juan Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22503, + "fields": { + "user": null, + "account_number": "41708784", + "user_type": "student", + "full_name": "Ramos Guerrero Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22504, + "fields": { + "user": null, + "account_number": "41708645", + "user_type": "student", + "full_name": "Perez Soria Valtiare Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22505, + "fields": { + "user": null, + "account_number": "41708614", + "user_type": "student", + "full_name": "BaliÐas Lira Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22506, + "fields": { + "user": null, + "account_number": "41708574", + "user_type": "student", + "full_name": "Bobadilla Monroy Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22507, + "fields": { + "user": null, + "account_number": "41708524", + "user_type": "student", + "full_name": "Alcantara Salvitano Diego Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22508, + "fields": { + "user": null, + "account_number": "41708441", + "user_type": "student", + "full_name": "Tapia Sanchez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22509, + "fields": { + "user": null, + "account_number": "41708379", + "user_type": "student", + "full_name": "Rico Lopez Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22510, + "fields": { + "user": null, + "account_number": "41708283", + "user_type": "student", + "full_name": "Hernandez Alvarado Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22511, + "fields": { + "user": null, + "account_number": "41708135", + "user_type": "student", + "full_name": "Boves Arellano Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22512, + "fields": { + "user": null, + "account_number": "41708070", + "user_type": "student", + "full_name": "Quiroz Carranza Francia Jareth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22513, + "fields": { + "user": null, + "account_number": "41708015", + "user_type": "student", + "full_name": "Rivas Gallegos Maylet Aketzali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22514, + "fields": { + "user": null, + "account_number": "00417080", + "user_type": "student", + "full_name": "Lopez Lara Bianca Gisela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22515, + "fields": { + "user": null, + "account_number": "41707763", + "user_type": "student", + "full_name": "Becerril Cruz Blanca Esthela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22516, + "fields": { + "user": null, + "account_number": "41707700", + "user_type": "student", + "full_name": "Ortega Hernandez Arturo Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22517, + "fields": { + "user": null, + "account_number": "41707682", + "user_type": "student", + "full_name": "Hernandez Rivera Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22518, + "fields": { + "user": null, + "account_number": "41707650", + "user_type": "student", + "full_name": "Viveros Romero Jesus Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22519, + "fields": { + "user": null, + "account_number": "41707647", + "user_type": "student", + "full_name": "Rojas Ramirez Emmanuel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22520, + "fields": { + "user": null, + "account_number": "41707581", + "user_type": "student", + "full_name": "Belman Martinez Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22521, + "fields": { + "user": null, + "account_number": "41707528", + "user_type": "student", + "full_name": "Cabrera Valdivia Eidan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22522, + "fields": { + "user": null, + "account_number": "41707397", + "user_type": "student", + "full_name": "Bautista Martinez Alexis Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22523, + "fields": { + "user": null, + "account_number": "41707236", + "user_type": "student", + "full_name": "Morales Viveros Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22524, + "fields": { + "user": null, + "account_number": "41707207", + "user_type": "student", + "full_name": "Ramirez Enriquez Rosa Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22525, + "fields": { + "user": null, + "account_number": "41707172", + "user_type": "student", + "full_name": "Medel Bravo Margarita" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22526, + "fields": { + "user": null, + "account_number": "41706964", + "user_type": "student", + "full_name": "Solano Roman Marisela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22527, + "fields": { + "user": null, + "account_number": "41706938", + "user_type": "student", + "full_name": "Rodriguez Rubio Maricruz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22528, + "fields": { + "user": null, + "account_number": "41706817", + "user_type": "student", + "full_name": "Vazquez Rojas Jose David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22529, + "fields": { + "user": null, + "account_number": "41706771", + "user_type": "student", + "full_name": "Colina Galvan Horacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22530, + "fields": { + "user": null, + "account_number": "41706717", + "user_type": "student", + "full_name": "Oaxaca Zepeda Karla Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22531, + "fields": { + "user": null, + "account_number": "41706671", + "user_type": "student", + "full_name": "Romero Cornejo Erick Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22532, + "fields": { + "user": null, + "account_number": "41706594", + "user_type": "student", + "full_name": "PeÐa Silva Jesus Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22533, + "fields": { + "user": null, + "account_number": "41706532", + "user_type": "student", + "full_name": "Solano Morales Emmanuel Usai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22534, + "fields": { + "user": null, + "account_number": "41706392", + "user_type": "student", + "full_name": "Quiroz Ricaud Claudia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22535, + "fields": { + "user": null, + "account_number": "41706388", + "user_type": "student", + "full_name": "Galicia Aguilar Carlos Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22536, + "fields": { + "user": null, + "account_number": "41706361", + "user_type": "student", + "full_name": "Santillan Sanchez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22537, + "fields": { + "user": null, + "account_number": "41706295", + "user_type": "student", + "full_name": "Laguna Cruz Ana Lilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22538, + "fields": { + "user": null, + "account_number": "41706252", + "user_type": "student", + "full_name": "Hernandez Villegas Jose Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22539, + "fields": { + "user": null, + "account_number": "41706228", + "user_type": "student", + "full_name": "Zainos Garcia Samuel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22540, + "fields": { + "user": null, + "account_number": "41706191", + "user_type": "student", + "full_name": "Gonzalez Barcenas Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22541, + "fields": { + "user": null, + "account_number": "41706036", + "user_type": "student", + "full_name": "Barron Orozco Gabriela Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22542, + "fields": { + "user": null, + "account_number": "41706030", + "user_type": "student", + "full_name": "Alcantara Ortega Diana Stefany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22543, + "fields": { + "user": null, + "account_number": "41705987", + "user_type": "student", + "full_name": "Moreno Cruz Tatiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22544, + "fields": { + "user": null, + "account_number": "41705875", + "user_type": "student", + "full_name": "Cruz NuÐez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22545, + "fields": { + "user": null, + "account_number": "41705806", + "user_type": "student", + "full_name": "Cortes Gutierrez Juan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22546, + "fields": { + "user": null, + "account_number": "41705697", + "user_type": "student", + "full_name": "Cuevas Lopez Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22547, + "fields": { + "user": null, + "account_number": "41705684", + "user_type": "student", + "full_name": "Ramirez Gonzalez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22548, + "fields": { + "user": null, + "account_number": "41705400", + "user_type": "student", + "full_name": "Vazquez Moya Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22549, + "fields": { + "user": null, + "account_number": "41705353", + "user_type": "student", + "full_name": "Figueroa Estrada Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22550, + "fields": { + "user": null, + "account_number": "41705254", + "user_type": "student", + "full_name": "Flores Martinez Alan Joseph" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22551, + "fields": { + "user": null, + "account_number": "41705132", + "user_type": "student", + "full_name": "Onofre Santiago Dennis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22552, + "fields": { + "user": null, + "account_number": "41704971", + "user_type": "student", + "full_name": "Cruz Tolentino Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22553, + "fields": { + "user": null, + "account_number": "41704845", + "user_type": "student", + "full_name": "Ortiz Herrera Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22554, + "fields": { + "user": null, + "account_number": "41704795", + "user_type": "student", + "full_name": "Rodriguez Fausto Jose Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22555, + "fields": { + "user": null, + "account_number": "41704785", + "user_type": "student", + "full_name": "Abdelrrague Manzanares Caleb Elihud" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22556, + "fields": { + "user": null, + "account_number": "41704599", + "user_type": "student", + "full_name": "Ramirez Coronel Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22557, + "fields": { + "user": null, + "account_number": "41704528", + "user_type": "student", + "full_name": "Aguilar Alfonso Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22558, + "fields": { + "user": null, + "account_number": "41704450", + "user_type": "student", + "full_name": "Ramirez Sotelo Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22559, + "fields": { + "user": null, + "account_number": "41704395", + "user_type": "student", + "full_name": "Angeles Angeles Diego Felix" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22560, + "fields": { + "user": null, + "account_number": "41704343", + "user_type": "student", + "full_name": "Claudio Garcia Alma Yaneli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22561, + "fields": { + "user": null, + "account_number": "41704267", + "user_type": "student", + "full_name": "Alva Cuevas Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22562, + "fields": { + "user": null, + "account_number": "41704006", + "user_type": "student", + "full_name": "Garcia Sierra Stephany Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22563, + "fields": { + "user": null, + "account_number": "41703999", + "user_type": "student", + "full_name": "Torres Velazquez Rodolfo Abel Baruch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22564, + "fields": { + "user": null, + "account_number": "41703837", + "user_type": "student", + "full_name": "Diaz Perez Jaqueline Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22565, + "fields": { + "user": null, + "account_number": "41703757", + "user_type": "student", + "full_name": "Cardoso Guadarrama Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22566, + "fields": { + "user": null, + "account_number": "41703755", + "user_type": "student", + "full_name": "Rio Campos Becerra Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22567, + "fields": { + "user": null, + "account_number": "41703705", + "user_type": "student", + "full_name": "Nogueda Macias Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22568, + "fields": { + "user": null, + "account_number": "41703598", + "user_type": "student", + "full_name": "Velazquez Cruz Saul Efren" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22569, + "fields": { + "user": null, + "account_number": "41703591", + "user_type": "student", + "full_name": "Meza Macias Jaqueline Irene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22570, + "fields": { + "user": null, + "account_number": "41703449", + "user_type": "student", + "full_name": "Ordaz Rivera Carlos Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22571, + "fields": { + "user": null, + "account_number": "41703445", + "user_type": "student", + "full_name": "Embriz Moreno Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22572, + "fields": { + "user": null, + "account_number": "41703428", + "user_type": "student", + "full_name": "Zarza Lopez Ramses" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22573, + "fields": { + "user": null, + "account_number": "41703360", + "user_type": "student", + "full_name": "Saavedra Soto Ivan Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22574, + "fields": { + "user": null, + "account_number": "41703324", + "user_type": "student", + "full_name": "Martinez Acevedo Diego Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22575, + "fields": { + "user": null, + "account_number": "41703280", + "user_type": "student", + "full_name": "Martinez Castillo Mary Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22576, + "fields": { + "user": null, + "account_number": "41703226", + "user_type": "student", + "full_name": "Sandoval Ramirez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22577, + "fields": { + "user": null, + "account_number": "41703154", + "user_type": "student", + "full_name": "Morales Zapata Mario Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22578, + "fields": { + "user": null, + "account_number": "41703010", + "user_type": "student", + "full_name": "Ramirez Garcia Cristian Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22579, + "fields": { + "user": null, + "account_number": "41702930", + "user_type": "student", + "full_name": "IbaÐez Marroquin Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22580, + "fields": { + "user": null, + "account_number": "41702868", + "user_type": "student", + "full_name": "Martinez Aquino Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22581, + "fields": { + "user": null, + "account_number": "41702807", + "user_type": "student", + "full_name": "Reyes Cabrera Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22582, + "fields": { + "user": null, + "account_number": "41702766", + "user_type": "student", + "full_name": "Rodriguez Ornelas Oscar Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22583, + "fields": { + "user": null, + "account_number": "41702638", + "user_type": "student", + "full_name": "Trejo Resendiz Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22584, + "fields": { + "user": null, + "account_number": "41702630", + "user_type": "student", + "full_name": "Aguilera Ancona Naibi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22585, + "fields": { + "user": null, + "account_number": "41702621", + "user_type": "student", + "full_name": "Jaramillo Cruz Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22586, + "fields": { + "user": null, + "account_number": "41702593", + "user_type": "student", + "full_name": "Cortes Gonzalez Daniel Anton" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22587, + "fields": { + "user": null, + "account_number": "41702552", + "user_type": "student", + "full_name": "Miranda Landeros Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22588, + "fields": { + "user": null, + "account_number": "41702444", + "user_type": "student", + "full_name": "Rosales Carbajal Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22589, + "fields": { + "user": null, + "account_number": "41702364", + "user_type": "student", + "full_name": "Giron Ferrer Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22590, + "fields": { + "user": null, + "account_number": "41702352", + "user_type": "student", + "full_name": "Martinez Reyes Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22591, + "fields": { + "user": null, + "account_number": "41702317", + "user_type": "student", + "full_name": "Cruz Granados Bruno" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22592, + "fields": { + "user": null, + "account_number": "41702298", + "user_type": "student", + "full_name": "Suarez Martinez Michael Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22593, + "fields": { + "user": null, + "account_number": "41702283", + "user_type": "student", + "full_name": "Segundo Ramirez Jesus Orlando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22594, + "fields": { + "user": null, + "account_number": "41702081", + "user_type": "student", + "full_name": "Vazquez Flores Maria Antonia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22595, + "fields": { + "user": null, + "account_number": "41702046", + "user_type": "student", + "full_name": "Maya Picazo Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22596, + "fields": { + "user": null, + "account_number": "41701882", + "user_type": "student", + "full_name": "Hernandez Rodriguez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22597, + "fields": { + "user": null, + "account_number": "41701726", + "user_type": "student", + "full_name": "Riveros Hernandez Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22598, + "fields": { + "user": null, + "account_number": "41701665", + "user_type": "student", + "full_name": "Estrada Juarez Jonnathan Said" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22599, + "fields": { + "user": null, + "account_number": "41701651", + "user_type": "student", + "full_name": "Aguilar Castelan Luis Nemorio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22600, + "fields": { + "user": null, + "account_number": "41701636", + "user_type": "student", + "full_name": "Hernandez Gomez Jose Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22601, + "fields": { + "user": null, + "account_number": "41701626", + "user_type": "student", + "full_name": "Hilarto Sanchez Jorge Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22602, + "fields": { + "user": null, + "account_number": "41701613", + "user_type": "student", + "full_name": "Bautista Santiago Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22603, + "fields": { + "user": null, + "account_number": "41701599", + "user_type": "student", + "full_name": "Becerril Sanchez Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22604, + "fields": { + "user": null, + "account_number": "41701592", + "user_type": "student", + "full_name": "Molina Velasco Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22605, + "fields": { + "user": null, + "account_number": "41701533", + "user_type": "student", + "full_name": "Barrios Dominguez Holdair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22606, + "fields": { + "user": null, + "account_number": "41701483", + "user_type": "student", + "full_name": "Lopez Navarro Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22607, + "fields": { + "user": null, + "account_number": "41701468", + "user_type": "student", + "full_name": "Guzman Flores Erick Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22608, + "fields": { + "user": null, + "account_number": "41701171", + "user_type": "student", + "full_name": "Perez Pantoja Erika Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22609, + "fields": { + "user": null, + "account_number": "41701057", + "user_type": "student", + "full_name": "Rojas Sanchez Mitzi Ali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22610, + "fields": { + "user": null, + "account_number": "41701002", + "user_type": "student", + "full_name": "Cruz Rodriguez Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22611, + "fields": { + "user": null, + "account_number": "41700868", + "user_type": "student", + "full_name": "Fajardo Rojas Edgar Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22612, + "fields": { + "user": null, + "account_number": "41700856", + "user_type": "student", + "full_name": "Vazquez Hernandez Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22613, + "fields": { + "user": null, + "account_number": "41700707", + "user_type": "student", + "full_name": "Guerrero Martinez Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22614, + "fields": { + "user": null, + "account_number": "41700580", + "user_type": "student", + "full_name": "Gonzalez Vazquez Manuel Kiyoshi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22615, + "fields": { + "user": null, + "account_number": "41700562", + "user_type": "student", + "full_name": "Gonzalez Peguero Hank Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22616, + "fields": { + "user": null, + "account_number": "41700561", + "user_type": "student", + "full_name": "Gutierrez Arteaga Jennifer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22617, + "fields": { + "user": null, + "account_number": "41700284", + "user_type": "student", + "full_name": "Madrigal PeÐa Emily Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22618, + "fields": { + "user": null, + "account_number": "41700275", + "user_type": "student", + "full_name": "Perez Lopez Brandon Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22619, + "fields": { + "user": null, + "account_number": "41700230", + "user_type": "student", + "full_name": "Barriga Sanchez Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22620, + "fields": { + "user": null, + "account_number": "41700190", + "user_type": "student", + "full_name": "Garma Garcia Gibran Lincoln" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22621, + "fields": { + "user": null, + "account_number": "41700013", + "user_type": "student", + "full_name": "Marin Tenorio Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22622, + "fields": { + "user": null, + "account_number": "41614965", + "user_type": "student", + "full_name": "Guzman Barrera Ismael Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22623, + "fields": { + "user": null, + "account_number": "41611937", + "user_type": "student", + "full_name": "Calzada Martinez Ingrid Michell" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22624, + "fields": { + "user": null, + "account_number": "41604918", + "user_type": "student", + "full_name": "GarduÐo Martinez Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22625, + "fields": { + "user": null, + "account_number": "41600549", + "user_type": "student", + "full_name": "PiÐa Guerrero Viviana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22626, + "fields": { + "user": null, + "account_number": "41514556", + "user_type": "student", + "full_name": "Segundo Perez Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22627, + "fields": { + "user": null, + "account_number": "41500675", + "user_type": "student", + "full_name": "Lopez Martinez Ana Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22628, + "fields": { + "user": null, + "account_number": "41302082", + "user_type": "student", + "full_name": "Lugo Torres Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22629, + "fields": { + "user": null, + "account_number": "40502679", + "user_type": "student", + "full_name": "Martinez Diaz Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22630, + "fields": { + "user": null, + "account_number": "31470167", + "user_type": "student", + "full_name": "Dominguez Zamora Edgar Daniel Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22631, + "fields": { + "user": null, + "account_number": "31465741", + "user_type": "student", + "full_name": "Fernandez Mendoza Kevin Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22632, + "fields": { + "user": null, + "account_number": "31460819", + "user_type": "student", + "full_name": "Vazquez Alejandre Mariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22633, + "fields": { + "user": null, + "account_number": "31460497", + "user_type": "student", + "full_name": "Diaz Coria Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22634, + "fields": { + "user": null, + "account_number": "31460306", + "user_type": "student", + "full_name": "Bonilla Hernandez Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22635, + "fields": { + "user": null, + "account_number": "31460157", + "user_type": "student", + "full_name": "Vazquez Huerta Carlos Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22636, + "fields": { + "user": null, + "account_number": "31458329", + "user_type": "student", + "full_name": "Mendoza Flores Eduardo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22637, + "fields": { + "user": null, + "account_number": "31451618", + "user_type": "student", + "full_name": "Garcia Lebrija Raul David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22638, + "fields": { + "user": null, + "account_number": "31450700", + "user_type": "student", + "full_name": "Ramirez Fernandez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22639, + "fields": { + "user": null, + "account_number": "31435697", + "user_type": "student", + "full_name": "Arellano Uresti Dulce Yadira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22640, + "fields": { + "user": null, + "account_number": "31435019", + "user_type": "student", + "full_name": "Banti Serna Brandon Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22641, + "fields": { + "user": null, + "account_number": "31434702", + "user_type": "student", + "full_name": "Sarmiento Vivar David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22642, + "fields": { + "user": null, + "account_number": "31434652", + "user_type": "student", + "full_name": "Rodriguez Santiago Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22643, + "fields": { + "user": null, + "account_number": "31434566", + "user_type": "student", + "full_name": "Sanchez Sanchez Brenda Nallely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22644, + "fields": { + "user": null, + "account_number": "31434453", + "user_type": "student", + "full_name": "Martinez Abarca Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22645, + "fields": { + "user": null, + "account_number": "31434221", + "user_type": "student", + "full_name": "Celis Vargas Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22646, + "fields": { + "user": null, + "account_number": "31432895", + "user_type": "student", + "full_name": "Reyes Navarro Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22647, + "fields": { + "user": null, + "account_number": "31432850", + "user_type": "student", + "full_name": "Martinez Hernandez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22648, + "fields": { + "user": null, + "account_number": "31432311", + "user_type": "student", + "full_name": "Trejo Illescas Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22649, + "fields": { + "user": null, + "account_number": "31432066", + "user_type": "student", + "full_name": "PeÐa Hernandez Leonardo Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22650, + "fields": { + "user": null, + "account_number": "31430100", + "user_type": "student", + "full_name": "Quirino MuÐoz Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22651, + "fields": { + "user": null, + "account_number": "31429376", + "user_type": "student", + "full_name": "Rocandio Rosales Diana Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22652, + "fields": { + "user": null, + "account_number": "31428688", + "user_type": "student", + "full_name": "Gonzalez Lucas Felipe Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22653, + "fields": { + "user": null, + "account_number": "31428656", + "user_type": "student", + "full_name": "Dominguez Davila Oscar David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22654, + "fields": { + "user": null, + "account_number": "31427706", + "user_type": "student", + "full_name": "Cipriano Martinez Yulissa Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22655, + "fields": { + "user": null, + "account_number": "31427624", + "user_type": "student", + "full_name": "Cervantes Lopez Mariana Amparo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22656, + "fields": { + "user": null, + "account_number": "31427591", + "user_type": "student", + "full_name": "Badillo Sanchez Dulce Adbel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22657, + "fields": { + "user": null, + "account_number": "31426608", + "user_type": "student", + "full_name": "Guapo Limas Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22658, + "fields": { + "user": null, + "account_number": "31426294", + "user_type": "student", + "full_name": "Gutierrez Rivera Yael Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22659, + "fields": { + "user": null, + "account_number": "31425893", + "user_type": "student", + "full_name": "Lechuga Ochoa Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22660, + "fields": { + "user": null, + "account_number": "31425766", + "user_type": "student", + "full_name": "Nava Aguilar Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22661, + "fields": { + "user": null, + "account_number": "31425472", + "user_type": "student", + "full_name": "Vega Martinez Max" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22662, + "fields": { + "user": null, + "account_number": "31425354", + "user_type": "student", + "full_name": "Valdovino Delgado Uriel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22663, + "fields": { + "user": null, + "account_number": "31425215", + "user_type": "student", + "full_name": "Valerio Mateo Eduardo De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22664, + "fields": { + "user": null, + "account_number": "31425080", + "user_type": "student", + "full_name": "Rojas Gonzalez Alberto Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22665, + "fields": { + "user": null, + "account_number": "31424834", + "user_type": "student", + "full_name": "Trujano Miranda Ruben Elihu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22666, + "fields": { + "user": null, + "account_number": "31424181", + "user_type": "student", + "full_name": "Santiago Cubas Laura Yoali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22667, + "fields": { + "user": null, + "account_number": "31423301", + "user_type": "student", + "full_name": "Carbajal Mares Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22668, + "fields": { + "user": null, + "account_number": "31422014", + "user_type": "student", + "full_name": "Plancarte Delgado Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22669, + "fields": { + "user": null, + "account_number": "31421857", + "user_type": "student", + "full_name": "Camarillo Aguilar Laura Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22670, + "fields": { + "user": null, + "account_number": "31421563", + "user_type": "student", + "full_name": "Marquez Morales Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22671, + "fields": { + "user": null, + "account_number": "31421553", + "user_type": "student", + "full_name": "Jimenez Mancilla Azul Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22672, + "fields": { + "user": null, + "account_number": "31420520", + "user_type": "student", + "full_name": "Piliado Sarmiento Juan Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22673, + "fields": { + "user": null, + "account_number": "31420376", + "user_type": "student", + "full_name": "Mendez Lopez Bryan Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22674, + "fields": { + "user": null, + "account_number": "31420134", + "user_type": "student", + "full_name": "Abascal Cruz Carlos Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22675, + "fields": { + "user": null, + "account_number": "31420091", + "user_type": "student", + "full_name": "Arreguin Perez Marcos Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22676, + "fields": { + "user": null, + "account_number": "31419110", + "user_type": "student", + "full_name": "Perez Moreno Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22677, + "fields": { + "user": null, + "account_number": "31417901", + "user_type": "student", + "full_name": "Guerra CastaÐeda Teresa Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22678, + "fields": { + "user": null, + "account_number": "31417863", + "user_type": "student", + "full_name": "Diaz San Roman Sergio Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22679, + "fields": { + "user": null, + "account_number": "31417377", + "user_type": "student", + "full_name": "Vazquez Eslava Anie Lizette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22680, + "fields": { + "user": null, + "account_number": "31417374", + "user_type": "student", + "full_name": "YaÐez Cruz Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22681, + "fields": { + "user": null, + "account_number": "31417259", + "user_type": "student", + "full_name": "AvendaÐo Martinez Mariana Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22682, + "fields": { + "user": null, + "account_number": "31417137", + "user_type": "student", + "full_name": "Sanchez Mayorga Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22683, + "fields": { + "user": null, + "account_number": "31415973", + "user_type": "student", + "full_name": "Andrade Santiago Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22684, + "fields": { + "user": null, + "account_number": "31415932", + "user_type": "student", + "full_name": "Vazquez Robledo Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22685, + "fields": { + "user": null, + "account_number": "31415906", + "user_type": "student", + "full_name": "Velasco Torres Patricia Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22686, + "fields": { + "user": null, + "account_number": "31415780", + "user_type": "student", + "full_name": "Sanchez Murguia Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22687, + "fields": { + "user": null, + "account_number": "31415652", + "user_type": "student", + "full_name": "Montero Herrera Luis Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22688, + "fields": { + "user": null, + "account_number": "31415587", + "user_type": "student", + "full_name": "Kohel Islas Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22689, + "fields": { + "user": null, + "account_number": "31414936", + "user_type": "student", + "full_name": "Pantoja Quiroz Jorge Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22690, + "fields": { + "user": null, + "account_number": "31414135", + "user_type": "student", + "full_name": "Rios Chirino Hassan Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22691, + "fields": { + "user": null, + "account_number": "31413198", + "user_type": "student", + "full_name": "Gutierrez Lopez David Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22692, + "fields": { + "user": null, + "account_number": "31413116", + "user_type": "student", + "full_name": "Gutierrez Alvarez Del Castillo Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22693, + "fields": { + "user": null, + "account_number": "31412739", + "user_type": "student", + "full_name": "Rendon Sanchez Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22694, + "fields": { + "user": null, + "account_number": "31412690", + "user_type": "student", + "full_name": "Rosas Hernandez Nahim" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22695, + "fields": { + "user": null, + "account_number": "31412346", + "user_type": "student", + "full_name": "Huerta Linares Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22696, + "fields": { + "user": null, + "account_number": "31411451", + "user_type": "student", + "full_name": "Cervantes Gomez Elisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22697, + "fields": { + "user": null, + "account_number": "31410857", + "user_type": "student", + "full_name": "Miranda Franco Humberto Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22698, + "fields": { + "user": null, + "account_number": "31410614", + "user_type": "student", + "full_name": "Perez Vargas Juan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22699, + "fields": { + "user": null, + "account_number": "31410579", + "user_type": "student", + "full_name": "OcaÐa Amezcua Christopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22700, + "fields": { + "user": null, + "account_number": "31410544", + "user_type": "student", + "full_name": "Martinez Reyes Jose Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22701, + "fields": { + "user": null, + "account_number": "31410464", + "user_type": "student", + "full_name": "Martinez YaÐez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22702, + "fields": { + "user": null, + "account_number": "31409764", + "user_type": "student", + "full_name": "Guzman Luna Aseret" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22703, + "fields": { + "user": null, + "account_number": "31409603", + "user_type": "student", + "full_name": "Ramirez Aniceto Victor Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22704, + "fields": { + "user": null, + "account_number": "31408866", + "user_type": "student", + "full_name": "Frappe Guerrero Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22705, + "fields": { + "user": null, + "account_number": "31407657", + "user_type": "student", + "full_name": "Zamora Carreon Gabriela Eugenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22706, + "fields": { + "user": null, + "account_number": "31406918", + "user_type": "student", + "full_name": "Reyes Bringas Gerardo Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22707, + "fields": { + "user": null, + "account_number": "31405817", + "user_type": "student", + "full_name": "Duran Hernandez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22708, + "fields": { + "user": null, + "account_number": "31403459", + "user_type": "student", + "full_name": "Luna Pareja Said Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22709, + "fields": { + "user": null, + "account_number": "31403259", + "user_type": "student", + "full_name": "Granados Chavez Mayleth Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22710, + "fields": { + "user": null, + "account_number": "31403181", + "user_type": "student", + "full_name": "Garcia Soto Claudia Lisette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22711, + "fields": { + "user": null, + "account_number": "31403045", + "user_type": "student", + "full_name": "De Jesus Martinez Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22712, + "fields": { + "user": null, + "account_number": "31402797", + "user_type": "student", + "full_name": "Ramirez George Daniel Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22713, + "fields": { + "user": null, + "account_number": "31401851", + "user_type": "student", + "full_name": "Lira Gonzalez Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22714, + "fields": { + "user": null, + "account_number": "31401395", + "user_type": "student", + "full_name": "Arias Contreras Areli Suleima" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22715, + "fields": { + "user": null, + "account_number": "31401392", + "user_type": "student", + "full_name": "Bernal Del Angel Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22716, + "fields": { + "user": null, + "account_number": "31401348", + "user_type": "student", + "full_name": "Alvarado Ramos Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22717, + "fields": { + "user": null, + "account_number": "31400865", + "user_type": "student", + "full_name": "Gomez Cabrera Marco Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22718, + "fields": { + "user": null, + "account_number": "31366063", + "user_type": "student", + "full_name": "Guerrero Almanza Rogelio Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22719, + "fields": { + "user": null, + "account_number": "31366056", + "user_type": "student", + "full_name": "Castro Yong Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22720, + "fields": { + "user": null, + "account_number": "31363249", + "user_type": "student", + "full_name": "MuÐiz Pulido Ricardo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22721, + "fields": { + "user": null, + "account_number": "31360518", + "user_type": "student", + "full_name": "Garcia Corona Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22722, + "fields": { + "user": null, + "account_number": "31359000", + "user_type": "student", + "full_name": "Borja Block Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22723, + "fields": { + "user": null, + "account_number": "31335530", + "user_type": "student", + "full_name": "Contreras Loredo Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22724, + "fields": { + "user": null, + "account_number": "31335364", + "user_type": "student", + "full_name": "Aldama Falcon Bruno Efren" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22725, + "fields": { + "user": null, + "account_number": "31334640", + "user_type": "student", + "full_name": "Viveros Barrera Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22726, + "fields": { + "user": null, + "account_number": "31334507", + "user_type": "student", + "full_name": "Navarrete Ramirez Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22727, + "fields": { + "user": null, + "account_number": "31334048", + "user_type": "student", + "full_name": "NuÐez Cortes Eric Vicente" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22728, + "fields": { + "user": null, + "account_number": "31333744", + "user_type": "student", + "full_name": "Carlos Moyssen Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22729, + "fields": { + "user": null, + "account_number": "31332304", + "user_type": "student", + "full_name": "Rodea Morales Isai Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22730, + "fields": { + "user": null, + "account_number": "31331855", + "user_type": "student", + "full_name": "Anaya Arcos Gloria Nallely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22731, + "fields": { + "user": null, + "account_number": "31331825", + "user_type": "student", + "full_name": "Moreno Martinez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22732, + "fields": { + "user": null, + "account_number": "31331527", + "user_type": "student", + "full_name": "Cardenas Villarruel Alan Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22733, + "fields": { + "user": null, + "account_number": "31331294", + "user_type": "student", + "full_name": "Alvarez Ayala Jahaziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22734, + "fields": { + "user": null, + "account_number": "31331133", + "user_type": "student", + "full_name": "Hernandez Irineo Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22735, + "fields": { + "user": null, + "account_number": "31330421", + "user_type": "student", + "full_name": "Morales Santos Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22736, + "fields": { + "user": null, + "account_number": "31330119", + "user_type": "student", + "full_name": "Guerrero Arreola Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22737, + "fields": { + "user": null, + "account_number": "31330060", + "user_type": "student", + "full_name": "Franco Resenos Victor Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22738, + "fields": { + "user": null, + "account_number": "31329472", + "user_type": "student", + "full_name": "Covarrubias Lopez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22739, + "fields": { + "user": null, + "account_number": "31329210", + "user_type": "student", + "full_name": "Ramos Manriquez Luis Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22740, + "fields": { + "user": null, + "account_number": "31328886", + "user_type": "student", + "full_name": "Lopez Viveros Jaime Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22741, + "fields": { + "user": null, + "account_number": "31328860", + "user_type": "student", + "full_name": "Senties PeÐa Emilio Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22742, + "fields": { + "user": null, + "account_number": "31328736", + "user_type": "student", + "full_name": "Sanchez Hernandez Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22743, + "fields": { + "user": null, + "account_number": "31328317", + "user_type": "student", + "full_name": "Rios Hernandez Alan Oman" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22744, + "fields": { + "user": null, + "account_number": "31328099", + "user_type": "student", + "full_name": "Rojas Mejia Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22745, + "fields": { + "user": null, + "account_number": "31325886", + "user_type": "student", + "full_name": "PiÐa Cisneros Leonardo Dante" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22746, + "fields": { + "user": null, + "account_number": "31325541", + "user_type": "student", + "full_name": "Rosas Gonzalez Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22747, + "fields": { + "user": null, + "account_number": "31325392", + "user_type": "student", + "full_name": "Ramirez Gonzalez Dulce Lizette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22748, + "fields": { + "user": null, + "account_number": "31325237", + "user_type": "student", + "full_name": "Velazquez Martinez Ana Celeste" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22749, + "fields": { + "user": null, + "account_number": "31324787", + "user_type": "student", + "full_name": "Morales Colin Edson" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22750, + "fields": { + "user": null, + "account_number": "31324672", + "user_type": "student", + "full_name": "Islas Lopez Estefanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22751, + "fields": { + "user": null, + "account_number": "31324592", + "user_type": "student", + "full_name": "Gonzalez Sosa Dulce Maria De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22752, + "fields": { + "user": null, + "account_number": "31324236", + "user_type": "student", + "full_name": "Hernandez Rodriguez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22753, + "fields": { + "user": null, + "account_number": "31323992", + "user_type": "student", + "full_name": "Colin Hernandez Ramon Akzayakatl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22754, + "fields": { + "user": null, + "account_number": "31323476", + "user_type": "student", + "full_name": "Moncada Alvarado Angel Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22755, + "fields": { + "user": null, + "account_number": "31323164", + "user_type": "student", + "full_name": "PiÐa Arellano Frida Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22756, + "fields": { + "user": null, + "account_number": "31322186", + "user_type": "student", + "full_name": "Hernandez Ortiz Karla Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22757, + "fields": { + "user": null, + "account_number": "31321972", + "user_type": "student", + "full_name": "Garcin Alvarado Joshua Jaim" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22758, + "fields": { + "user": null, + "account_number": "31321768", + "user_type": "student", + "full_name": "Chias Cruz Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22759, + "fields": { + "user": null, + "account_number": "31321718", + "user_type": "student", + "full_name": "Chacon Ramirez Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22760, + "fields": { + "user": null, + "account_number": "31321331", + "user_type": "student", + "full_name": "Lopez Cocone Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22761, + "fields": { + "user": null, + "account_number": "31321163", + "user_type": "student", + "full_name": "Diaz Rico Diego Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22762, + "fields": { + "user": null, + "account_number": "31320266", + "user_type": "student", + "full_name": "Lopez Rodriguez Diego Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22763, + "fields": { + "user": null, + "account_number": "31319395", + "user_type": "student", + "full_name": "Munguia Galicia Gonzalo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22764, + "fields": { + "user": null, + "account_number": "31319076", + "user_type": "student", + "full_name": "Macario Ramirez Erick Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22765, + "fields": { + "user": null, + "account_number": "31318662", + "user_type": "student", + "full_name": "Ladislao Aldana Diego Olin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22766, + "fields": { + "user": null, + "account_number": "31318328", + "user_type": "student", + "full_name": "Mora Torres Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22767, + "fields": { + "user": null, + "account_number": "31317873", + "user_type": "student", + "full_name": "Davila Soria Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22768, + "fields": { + "user": null, + "account_number": "31317853", + "user_type": "student", + "full_name": "Calderon Perez Raul Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22769, + "fields": { + "user": null, + "account_number": "31317512", + "user_type": "student", + "full_name": "PeÐa Navarro Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22770, + "fields": { + "user": null, + "account_number": "31317344", + "user_type": "student", + "full_name": "Godinez Monroy Mario Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22771, + "fields": { + "user": null, + "account_number": "31317073", + "user_type": "student", + "full_name": "Hernandez Garcia Patricio Ricardo Gua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22772, + "fields": { + "user": null, + "account_number": "31316693", + "user_type": "student", + "full_name": "Ramirez Santillan Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22773, + "fields": { + "user": null, + "account_number": "31316063", + "user_type": "student", + "full_name": "Solano Mosqueda Rolando Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22774, + "fields": { + "user": null, + "account_number": "31315899", + "user_type": "student", + "full_name": "Nava Tiela Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22775, + "fields": { + "user": null, + "account_number": "31315875", + "user_type": "student", + "full_name": "Perez Chavez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22776, + "fields": { + "user": null, + "account_number": "31315504", + "user_type": "student", + "full_name": "Salcedo Arriaga Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22777, + "fields": { + "user": null, + "account_number": "31315248", + "user_type": "student", + "full_name": "Mendoza Hernandez Ulises Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22778, + "fields": { + "user": null, + "account_number": "31315135", + "user_type": "student", + "full_name": "Batun BolaÐos Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22779, + "fields": { + "user": null, + "account_number": "31315077", + "user_type": "student", + "full_name": "Torres Velasco Irvin Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22780, + "fields": { + "user": null, + "account_number": "31314731", + "user_type": "student", + "full_name": "Cruz Morales Andrea Raquel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22781, + "fields": { + "user": null, + "account_number": "31314054", + "user_type": "student", + "full_name": "Perez Gonzalez Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22782, + "fields": { + "user": null, + "account_number": "31313633", + "user_type": "student", + "full_name": "Acosta Roque Mani Zeltzin Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22783, + "fields": { + "user": null, + "account_number": "31313312", + "user_type": "student", + "full_name": "MuÐoz Herrera Carlos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22784, + "fields": { + "user": null, + "account_number": "31313154", + "user_type": "student", + "full_name": "Jaime Tobon Cinthya Nelly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22785, + "fields": { + "user": null, + "account_number": "31312262", + "user_type": "student", + "full_name": "Calzada Gonzalez Pamela Darian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22786, + "fields": { + "user": null, + "account_number": "31311805", + "user_type": "student", + "full_name": "Reyes Martinez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22787, + "fields": { + "user": null, + "account_number": "31311716", + "user_type": "student", + "full_name": "Padilla Gaona Jorge Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22788, + "fields": { + "user": null, + "account_number": "31311477", + "user_type": "student", + "full_name": "Luna Hernandez Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22789, + "fields": { + "user": null, + "account_number": "31309919", + "user_type": "student", + "full_name": "Rodriguez Rodriguez Cristian Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22790, + "fields": { + "user": null, + "account_number": "31309780", + "user_type": "student", + "full_name": "Segundo Bautista Diego Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22791, + "fields": { + "user": null, + "account_number": "31309607", + "user_type": "student", + "full_name": "Cruz Aguirre Dalia Estrella" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22792, + "fields": { + "user": null, + "account_number": "31309307", + "user_type": "student", + "full_name": "Reyes Cruz Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22793, + "fields": { + "user": null, + "account_number": "31309007", + "user_type": "student", + "full_name": "Migueles Trejo Edgar Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22794, + "fields": { + "user": null, + "account_number": "31308688", + "user_type": "student", + "full_name": "Mondragon Perez Monica Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22795, + "fields": { + "user": null, + "account_number": "31308363", + "user_type": "student", + "full_name": "Guerra Perez Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22796, + "fields": { + "user": null, + "account_number": "31308360", + "user_type": "student", + "full_name": "Garcilazo Diaz Jose Tristan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22797, + "fields": { + "user": null, + "account_number": "31307439", + "user_type": "student", + "full_name": "Suverza Velazquez Hector Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22798, + "fields": { + "user": null, + "account_number": "31307437", + "user_type": "student", + "full_name": "Sosa Lopez Miguel Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22799, + "fields": { + "user": null, + "account_number": "31307197", + "user_type": "student", + "full_name": "Gonzalez Rangel Laura Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22800, + "fields": { + "user": null, + "account_number": "31306863", + "user_type": "student", + "full_name": "Zambrano Hernandez Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22801, + "fields": { + "user": null, + "account_number": "31306832", + "user_type": "student", + "full_name": "Solano Mondragon Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22802, + "fields": { + "user": null, + "account_number": "31305999", + "user_type": "student", + "full_name": "Balderas Jimenez Braulio Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22803, + "fields": { + "user": null, + "account_number": "31305503", + "user_type": "student", + "full_name": "Alafita Vazquez Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22804, + "fields": { + "user": null, + "account_number": "31305167", + "user_type": "student", + "full_name": "Su Torres Gabriela Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22805, + "fields": { + "user": null, + "account_number": "31304741", + "user_type": "student", + "full_name": "Bautista Padron Oscar Raymundo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22806, + "fields": { + "user": null, + "account_number": "31304622", + "user_type": "student", + "full_name": "Aguilar Alonso Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22807, + "fields": { + "user": null, + "account_number": "31304255", + "user_type": "student", + "full_name": "Pineda Del Angel Pedro Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22808, + "fields": { + "user": null, + "account_number": "31304126", + "user_type": "student", + "full_name": "Melchor Salinas Ithuriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22809, + "fields": { + "user": null, + "account_number": "31303880", + "user_type": "student", + "full_name": "Galaviz Villalobos Angel Vladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22810, + "fields": { + "user": null, + "account_number": "31303480", + "user_type": "student", + "full_name": "Cano Dominguez Edgar Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22811, + "fields": { + "user": null, + "account_number": "31303154", + "user_type": "student", + "full_name": "Ramirez Salazar Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22812, + "fields": { + "user": null, + "account_number": "31302945", + "user_type": "student", + "full_name": "Juarez Cruz Oscar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22813, + "fields": { + "user": null, + "account_number": "31302851", + "user_type": "student", + "full_name": "Garcia Perez Carmen Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22814, + "fields": { + "user": null, + "account_number": "31302708", + "user_type": "student", + "full_name": "Carmona NuÐez Cesar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22815, + "fields": { + "user": null, + "account_number": "31302277", + "user_type": "student", + "full_name": "Cienfuegos Vega Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22816, + "fields": { + "user": null, + "account_number": "31301723", + "user_type": "student", + "full_name": "Baez Mendez Irvin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22817, + "fields": { + "user": null, + "account_number": "31301023", + "user_type": "student", + "full_name": "Valero Lemus Giovana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22818, + "fields": { + "user": null, + "account_number": "31300636", + "user_type": "student", + "full_name": "Hernandez Ramirez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22819, + "fields": { + "user": null, + "account_number": "31300460", + "user_type": "student", + "full_name": "Diaz Velazquez Alejandro Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22820, + "fields": { + "user": null, + "account_number": "31300115", + "user_type": "student", + "full_name": "Garcia Martinez Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22821, + "fields": { + "user": null, + "account_number": "31272034", + "user_type": "student", + "full_name": "Bautista Garcia Alejandro Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22822, + "fields": { + "user": null, + "account_number": "31259686", + "user_type": "student", + "full_name": "Espindola Alcantara Jorge Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22823, + "fields": { + "user": null, + "account_number": "31234538", + "user_type": "student", + "full_name": "Ramirez Rodriguez Ian Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22824, + "fields": { + "user": null, + "account_number": "31231657", + "user_type": "student", + "full_name": "Romero Lopez Erick Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22825, + "fields": { + "user": null, + "account_number": "31228201", + "user_type": "student", + "full_name": "Tan Jeremias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22826, + "fields": { + "user": null, + "account_number": "31224883", + "user_type": "student", + "full_name": "Lopez Arias Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22827, + "fields": { + "user": null, + "account_number": "31224190", + "user_type": "student", + "full_name": "Palafox Deisenroth Eduardo Gerhard" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22828, + "fields": { + "user": null, + "account_number": "31223905", + "user_type": "student", + "full_name": "Garcia Jimenez Diego Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22829, + "fields": { + "user": null, + "account_number": "31218368", + "user_type": "student", + "full_name": "Cruz Dominguez Alan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22830, + "fields": { + "user": null, + "account_number": "31201115", + "user_type": "student", + "full_name": "Peralta Correa Jose Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22831, + "fields": { + "user": null, + "account_number": "31200026", + "user_type": "student", + "full_name": "Aguillon Jimenez Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22832, + "fields": { + "user": null, + "account_number": "31113571", + "user_type": "student", + "full_name": "Aquino Sanchez Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22833, + "fields": { + "user": null, + "account_number": "31111578", + "user_type": "student", + "full_name": "Jimenez Garcia Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22834, + "fields": { + "user": null, + "account_number": "31109768", + "user_type": "student", + "full_name": "Paredes Gonzalez Francisco Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22835, + "fields": { + "user": null, + "account_number": "31014400", + "user_type": "student", + "full_name": "Ortega Medina Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22836, + "fields": { + "user": null, + "account_number": "31011516", + "user_type": "student", + "full_name": "Cruz Perez Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22837, + "fields": { + "user": null, + "account_number": "31003961", + "user_type": "student", + "full_name": "Gomar Rosales Ivan Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22838, + "fields": { + "user": null, + "account_number": "31001813", + "user_type": "student", + "full_name": "Castillo Garcia Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22839, + "fields": { + "user": null, + "account_number": "30913952", + "user_type": "student", + "full_name": "Gomez Velazquez Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22840, + "fields": { + "user": null, + "account_number": "30901317", + "user_type": "student", + "full_name": "Alfaro Olivares Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22841, + "fields": { + "user": null, + "account_number": "30623306", + "user_type": "student", + "full_name": "Ruiz Reyes John Edwing" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22842, + "fields": { + "user": null, + "account_number": "30321459", + "user_type": "student", + "full_name": "Martinez Ibarra Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22843, + "fields": { + "user": null, + "account_number": "41611042", + "user_type": "student", + "full_name": "Cardenas Olvera Bryan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22844, + "fields": { + "user": null, + "account_number": "41611031", + "user_type": "student", + "full_name": "Avila Ortiz Paola Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22845, + "fields": { + "user": null, + "account_number": "41610882", + "user_type": "student", + "full_name": "Mendoza Frias Arlette Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22846, + "fields": { + "user": null, + "account_number": "41610705", + "user_type": "student", + "full_name": "Israel Palos Etienne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22847, + "fields": { + "user": null, + "account_number": "41610676", + "user_type": "student", + "full_name": "Olvera Leon Rebeca" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22848, + "fields": { + "user": null, + "account_number": "41610602", + "user_type": "student", + "full_name": "Cazares Garcia Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22849, + "fields": { + "user": null, + "account_number": "41610551", + "user_type": "student", + "full_name": "Guerrero Garcia Said Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22850, + "fields": { + "user": null, + "account_number": "41610516", + "user_type": "student", + "full_name": "Campos Cano Diego Cristopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22851, + "fields": { + "user": null, + "account_number": "41610454", + "user_type": "student", + "full_name": "Herrera Torres Alex Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22852, + "fields": { + "user": null, + "account_number": "41610433", + "user_type": "student", + "full_name": "Paredes Gurria Luis Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22853, + "fields": { + "user": null, + "account_number": "41610330", + "user_type": "student", + "full_name": "Juarez Blanco Javier Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22854, + "fields": { + "user": null, + "account_number": "41610327", + "user_type": "student", + "full_name": "Gonzalez Martinez Ezequiel Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22855, + "fields": { + "user": null, + "account_number": "41610279", + "user_type": "student", + "full_name": "De La Garza Cordero Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22856, + "fields": { + "user": null, + "account_number": "41610227", + "user_type": "student", + "full_name": "Balbuena Espinoza De Los Monteros Angeherib" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22857, + "fields": { + "user": null, + "account_number": "41610126", + "user_type": "student", + "full_name": "Blanquet Sanchez Karla Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22858, + "fields": { + "user": null, + "account_number": "41610113", + "user_type": "student", + "full_name": "Villerias Calderon Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22859, + "fields": { + "user": null, + "account_number": "41610111", + "user_type": "student", + "full_name": "Arana Alvarez Magdalena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22860, + "fields": { + "user": null, + "account_number": "41610085", + "user_type": "student", + "full_name": "Moncayo Dominguez Esaul Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22861, + "fields": { + "user": null, + "account_number": "41609965", + "user_type": "student", + "full_name": "Hernandez Carrillo Mariana Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22862, + "fields": { + "user": null, + "account_number": "41609960", + "user_type": "student", + "full_name": "Silva Gabriel Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22863, + "fields": { + "user": null, + "account_number": "41609934", + "user_type": "student", + "full_name": "Davila Rios Emmanuel Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22864, + "fields": { + "user": null, + "account_number": "41609909", + "user_type": "student", + "full_name": "Martinez Lopez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22865, + "fields": { + "user": null, + "account_number": "41609896", + "user_type": "student", + "full_name": "Pineda Padilla Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22866, + "fields": { + "user": null, + "account_number": "41609893", + "user_type": "student", + "full_name": "Juarez Bautista Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22867, + "fields": { + "user": null, + "account_number": "41609859", + "user_type": "student", + "full_name": "Delgado Alonso Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22868, + "fields": { + "user": null, + "account_number": "41609830", + "user_type": "student", + "full_name": "Franco Villanueva Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22869, + "fields": { + "user": null, + "account_number": "41609782", + "user_type": "student", + "full_name": "Sandoval Sandoval Denisse Vanesa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22870, + "fields": { + "user": null, + "account_number": "41609772", + "user_type": "student", + "full_name": "Camilo Cesareo Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22871, + "fields": { + "user": null, + "account_number": "41609694", + "user_type": "student", + "full_name": "Vazquez Roa Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22872, + "fields": { + "user": null, + "account_number": "41609657", + "user_type": "student", + "full_name": "Contreras Molina Vannesa Samanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22873, + "fields": { + "user": null, + "account_number": "41609645", + "user_type": "student", + "full_name": "Alcocer Villalobos Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22874, + "fields": { + "user": null, + "account_number": "41609621", + "user_type": "student", + "full_name": "Valle Rodriguez Victor Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22875, + "fields": { + "user": null, + "account_number": "41609593", + "user_type": "student", + "full_name": "Flores Cortes Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22876, + "fields": { + "user": null, + "account_number": "41609532", + "user_type": "student", + "full_name": "Gonzalez Sainz Sergio Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22877, + "fields": { + "user": null, + "account_number": "41609494", + "user_type": "student", + "full_name": "Camacho Ramirez Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22878, + "fields": { + "user": null, + "account_number": "41609460", + "user_type": "student", + "full_name": "De La Luz Cruz Ixallana Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22879, + "fields": { + "user": null, + "account_number": "41609386", + "user_type": "student", + "full_name": "Carlos Orozco Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22880, + "fields": { + "user": null, + "account_number": "41609381", + "user_type": "student", + "full_name": "Gamez Suarez Jose Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22881, + "fields": { + "user": null, + "account_number": "41609322", + "user_type": "student", + "full_name": "Martinez Laureano Hugo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22882, + "fields": { + "user": null, + "account_number": "41609313", + "user_type": "student", + "full_name": "Herrera Maldonado Alberto Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22883, + "fields": { + "user": null, + "account_number": "41609260", + "user_type": "student", + "full_name": "Martinez Lemus Efreen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22884, + "fields": { + "user": null, + "account_number": "41609251", + "user_type": "student", + "full_name": "Keymolen Lora Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22885, + "fields": { + "user": null, + "account_number": "41609183", + "user_type": "student", + "full_name": "Gonzalez Vazquez Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22886, + "fields": { + "user": null, + "account_number": "41609127", + "user_type": "student", + "full_name": "Franco Aguilar Isis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22887, + "fields": { + "user": null, + "account_number": "41609105", + "user_type": "student", + "full_name": "Montoya Cadena Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22888, + "fields": { + "user": null, + "account_number": "41609075", + "user_type": "student", + "full_name": "Lucas Luna Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22889, + "fields": { + "user": null, + "account_number": "41609034", + "user_type": "student", + "full_name": "Ramirez Gonzalez Kathia Fabiola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22890, + "fields": { + "user": null, + "account_number": "41609027", + "user_type": "student", + "full_name": "Garcia Gutierrez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22891, + "fields": { + "user": null, + "account_number": "41608970", + "user_type": "student", + "full_name": "Martinez Torres Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22892, + "fields": { + "user": null, + "account_number": "41608932", + "user_type": "student", + "full_name": "Monroy Lopez Jesus Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22893, + "fields": { + "user": null, + "account_number": "41608847", + "user_type": "student", + "full_name": "Medina Martinez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22894, + "fields": { + "user": null, + "account_number": "41608844", + "user_type": "student", + "full_name": "Leon Burguete Jose Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22895, + "fields": { + "user": null, + "account_number": "41608797", + "user_type": "student", + "full_name": "Veles Hernandez Andrea Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22896, + "fields": { + "user": null, + "account_number": "41608693", + "user_type": "student", + "full_name": "Parra Pascual Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22897, + "fields": { + "user": null, + "account_number": "41608586", + "user_type": "student", + "full_name": "Cruz Lopez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22898, + "fields": { + "user": null, + "account_number": "41608557", + "user_type": "student", + "full_name": "Olivera Barrera Irving Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22899, + "fields": { + "user": null, + "account_number": "41608423", + "user_type": "student", + "full_name": "Mendoza Rodriguez Angel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22900, + "fields": { + "user": null, + "account_number": "41608398", + "user_type": "student", + "full_name": "Del Angel Hernandez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22901, + "fields": { + "user": null, + "account_number": "41608282", + "user_type": "student", + "full_name": "Parra Sanchez Armando Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22902, + "fields": { + "user": null, + "account_number": "41608083", + "user_type": "student", + "full_name": "Madrigal Flores Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22903, + "fields": { + "user": null, + "account_number": "41607820", + "user_type": "student", + "full_name": "Armadillo Martinez Luis Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22904, + "fields": { + "user": null, + "account_number": "41607794", + "user_type": "student", + "full_name": "Guzman Gutierrez Mario Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22905, + "fields": { + "user": null, + "account_number": "41607680", + "user_type": "student", + "full_name": "Garcia Beltran Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22906, + "fields": { + "user": null, + "account_number": "41607641", + "user_type": "student", + "full_name": "De La Cruz Valdes Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22907, + "fields": { + "user": null, + "account_number": "41607370", + "user_type": "student", + "full_name": "Castro Trujillo Enrique Vidal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22908, + "fields": { + "user": null, + "account_number": "41607151", + "user_type": "student", + "full_name": "Cruz Ramirez Omar Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22909, + "fields": { + "user": null, + "account_number": "41607051", + "user_type": "student", + "full_name": "Cordova Julian Montserrat Gema" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22910, + "fields": { + "user": null, + "account_number": "41606716", + "user_type": "student", + "full_name": "Michel Mata Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22911, + "fields": { + "user": null, + "account_number": "41606646", + "user_type": "student", + "full_name": "Vigueras Hernandez Diana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22912, + "fields": { + "user": null, + "account_number": "41606543", + "user_type": "student", + "full_name": "Zacarias Marquez Delfino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22913, + "fields": { + "user": null, + "account_number": "41606517", + "user_type": "student", + "full_name": "ZermeÑo Garcia Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22914, + "fields": { + "user": null, + "account_number": "41606498", + "user_type": "student", + "full_name": "Pulido Martinez Sharissa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22915, + "fields": { + "user": null, + "account_number": "41606437", + "user_type": "student", + "full_name": "Cajigal Estrada Amara Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22916, + "fields": { + "user": null, + "account_number": "41606295", + "user_type": "student", + "full_name": "MontaÑo Calvo Jose Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22917, + "fields": { + "user": null, + "account_number": "41606293", + "user_type": "student", + "full_name": "Diaz Perez Jocelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22918, + "fields": { + "user": null, + "account_number": "41606247", + "user_type": "student", + "full_name": "Soto Valle Angulo Genaro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22919, + "fields": { + "user": null, + "account_number": "41606246", + "user_type": "student", + "full_name": "Gallardo Castruita Miguel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22920, + "fields": { + "user": null, + "account_number": "41606184", + "user_type": "student", + "full_name": "Barrera Ortiz Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22921, + "fields": { + "user": null, + "account_number": "41606091", + "user_type": "student", + "full_name": "Carmona Aguilar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22922, + "fields": { + "user": null, + "account_number": "41606013", + "user_type": "student", + "full_name": "Garnica Carrillo Karla Regina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22923, + "fields": { + "user": null, + "account_number": "41605890", + "user_type": "student", + "full_name": "Trujillo Reyes Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22924, + "fields": { + "user": null, + "account_number": "41605827", + "user_type": "student", + "full_name": "Hernandez Gonzalez Stephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22925, + "fields": { + "user": null, + "account_number": "41605688", + "user_type": "student", + "full_name": "Lopez Perdomo Evelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22926, + "fields": { + "user": null, + "account_number": "41605527", + "user_type": "student", + "full_name": "Almaguer Vazquez Edna Susana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22927, + "fields": { + "user": null, + "account_number": "41605468", + "user_type": "student", + "full_name": "Cruz Najera Monica Elena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22928, + "fields": { + "user": null, + "account_number": "41605411", + "user_type": "student", + "full_name": "Gonzalez Mendoza Gerardo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22929, + "fields": { + "user": null, + "account_number": "41605240", + "user_type": "student", + "full_name": "Manzano Martinez Matilde" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22930, + "fields": { + "user": null, + "account_number": "41604910", + "user_type": "student", + "full_name": "Gallegos Ocampo Fernando Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22931, + "fields": { + "user": null, + "account_number": "41604817", + "user_type": "student", + "full_name": "Gomez Reynoso Dalia Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22932, + "fields": { + "user": null, + "account_number": "41604785", + "user_type": "student", + "full_name": "Gonzalez Vera Maribel Nicolasa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22933, + "fields": { + "user": null, + "account_number": "41604759", + "user_type": "student", + "full_name": "Herrera Gonzalez Pedro Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22934, + "fields": { + "user": null, + "account_number": "41604740", + "user_type": "student", + "full_name": "Alvarado Aguilar Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22935, + "fields": { + "user": null, + "account_number": "41604703", + "user_type": "student", + "full_name": "Arenas Lobato Jordan Natanael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22936, + "fields": { + "user": null, + "account_number": "41604701", + "user_type": "student", + "full_name": "Mendoza Ramirez Yessica Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22937, + "fields": { + "user": null, + "account_number": "41604693", + "user_type": "student", + "full_name": "Martinez Morales Maria Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22938, + "fields": { + "user": null, + "account_number": "41604653", + "user_type": "student", + "full_name": "Valdez Maya Aldo Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22939, + "fields": { + "user": null, + "account_number": "41604522", + "user_type": "student", + "full_name": "Lopez Hernandez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22940, + "fields": { + "user": null, + "account_number": "41604359", + "user_type": "student", + "full_name": "Lopez Lugo Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22941, + "fields": { + "user": null, + "account_number": "41604299", + "user_type": "student", + "full_name": "PeÑaloza Guzman Luis Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22942, + "fields": { + "user": null, + "account_number": "41604225", + "user_type": "student", + "full_name": "Aguilar Guzman Jose Cristobal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22943, + "fields": { + "user": null, + "account_number": "41604205", + "user_type": "student", + "full_name": "Teran Franco Alejandro Elihu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22944, + "fields": { + "user": null, + "account_number": "41604167", + "user_type": "student", + "full_name": "Rayo Hidalgo Luis Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22945, + "fields": { + "user": null, + "account_number": "41604125", + "user_type": "student", + "full_name": "Padilla Arteaga Gerardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22946, + "fields": { + "user": null, + "account_number": "41603992", + "user_type": "student", + "full_name": "Almeraya Sibaja Raul Salomon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22947, + "fields": { + "user": null, + "account_number": "41603916", + "user_type": "student", + "full_name": "Hernandez Martinez Gonzalo Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22948, + "fields": { + "user": null, + "account_number": "41603867", + "user_type": "student", + "full_name": "Ramirez Martinez Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22949, + "fields": { + "user": null, + "account_number": "41603721", + "user_type": "student", + "full_name": "Tenorio Hernandez Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22950, + "fields": { + "user": null, + "account_number": "41603680", + "user_type": "student", + "full_name": "Osorio Catalan Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22951, + "fields": { + "user": null, + "account_number": "41603662", + "user_type": "student", + "full_name": "Neri Genera Luis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22952, + "fields": { + "user": null, + "account_number": "41603433", + "user_type": "student", + "full_name": "Guerrero Leyva Alma Magalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22953, + "fields": { + "user": null, + "account_number": "41603245", + "user_type": "student", + "full_name": "Del Angel Santiago Karla Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22954, + "fields": { + "user": null, + "account_number": "41603031", + "user_type": "student", + "full_name": "Lopez Rios Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22955, + "fields": { + "user": null, + "account_number": "41602937", + "user_type": "student", + "full_name": "Gonzalez Arias Nicolas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22956, + "fields": { + "user": null, + "account_number": "41602875", + "user_type": "student", + "full_name": "Aleman Rocha Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22957, + "fields": { + "user": null, + "account_number": "41602834", + "user_type": "student", + "full_name": "Medina Arias Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22958, + "fields": { + "user": null, + "account_number": "41602818", + "user_type": "student", + "full_name": "Lopez YaÑez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22959, + "fields": { + "user": null, + "account_number": "41602627", + "user_type": "student", + "full_name": "Venancio Cruz Jesus Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22960, + "fields": { + "user": null, + "account_number": "41602614", + "user_type": "student", + "full_name": "Mejia Alcantara Ivan Isaias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22961, + "fields": { + "user": null, + "account_number": "41602591", + "user_type": "student", + "full_name": "Avila Tovar Nery Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22962, + "fields": { + "user": null, + "account_number": "41602571", + "user_type": "student", + "full_name": "Cortes Fernandez Maria Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22963, + "fields": { + "user": null, + "account_number": "41602506", + "user_type": "student", + "full_name": "Perez Rosario Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22964, + "fields": { + "user": null, + "account_number": "41602463", + "user_type": "student", + "full_name": "Rios Garcia Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22965, + "fields": { + "user": null, + "account_number": "41602404", + "user_type": "student", + "full_name": "Fuentes Lopez Alondra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22966, + "fields": { + "user": null, + "account_number": "41602334", + "user_type": "student", + "full_name": "Perez Olaya Victor Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22967, + "fields": { + "user": null, + "account_number": "41602305", + "user_type": "student", + "full_name": "Cruz Perez Edgar Didier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22968, + "fields": { + "user": null, + "account_number": "41602287", + "user_type": "student", + "full_name": "Casas Salinas Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22969, + "fields": { + "user": null, + "account_number": "41602264", + "user_type": "student", + "full_name": "Hernandez Martinez Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22970, + "fields": { + "user": null, + "account_number": "41602196", + "user_type": "student", + "full_name": "Serrano Palacios David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22971, + "fields": { + "user": null, + "account_number": "41602135", + "user_type": "student", + "full_name": "Almaraz Ramirez Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22972, + "fields": { + "user": null, + "account_number": "41602097", + "user_type": "student", + "full_name": "Hernandez Escudero Luis Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22973, + "fields": { + "user": null, + "account_number": "41601862", + "user_type": "student", + "full_name": "Miranda Mendoza Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22974, + "fields": { + "user": null, + "account_number": "41601698", + "user_type": "student", + "full_name": "Matt Padilla Gema Susana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22975, + "fields": { + "user": null, + "account_number": "41601682", + "user_type": "student", + "full_name": "Ortiz MuÑoz Karina Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22976, + "fields": { + "user": null, + "account_number": "41601617", + "user_type": "student", + "full_name": "Ponce Ayala Jose Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22977, + "fields": { + "user": null, + "account_number": "41601597", + "user_type": "student", + "full_name": "Galindo Ramirez Maria Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22978, + "fields": { + "user": null, + "account_number": "41601594", + "user_type": "student", + "full_name": "Espinoza Santiago Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22979, + "fields": { + "user": null, + "account_number": "41601585", + "user_type": "student", + "full_name": "Vite Vega Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22980, + "fields": { + "user": null, + "account_number": "41601530", + "user_type": "student", + "full_name": "Fernandez Rodriguez Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22981, + "fields": { + "user": null, + "account_number": "41601510", + "user_type": "student", + "full_name": "Ruiz Lima Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22982, + "fields": { + "user": null, + "account_number": "41601470", + "user_type": "student", + "full_name": "CastaÑeda Trujillo Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22983, + "fields": { + "user": null, + "account_number": "41601462", + "user_type": "student", + "full_name": "CariÑo Gonzalez Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22984, + "fields": { + "user": null, + "account_number": "41601380", + "user_type": "student", + "full_name": "Lopez Ramirez Brenda Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22985, + "fields": { + "user": null, + "account_number": "41601327", + "user_type": "student", + "full_name": "Gaytan Trejo Angel Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22986, + "fields": { + "user": null, + "account_number": "41601300", + "user_type": "student", + "full_name": "Equihua Linares Carlos Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22987, + "fields": { + "user": null, + "account_number": "41601275", + "user_type": "student", + "full_name": "Xotla Velasco Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22988, + "fields": { + "user": null, + "account_number": "41601262", + "user_type": "student", + "full_name": "Laureano De Jesus Tania Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22989, + "fields": { + "user": null, + "account_number": "41601185", + "user_type": "student", + "full_name": "Rodriguez Rodriguez Pamela Nathiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22990, + "fields": { + "user": null, + "account_number": "41601128", + "user_type": "student", + "full_name": "Garcia Gonzalez Kethbin Dzain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22991, + "fields": { + "user": null, + "account_number": "41601118", + "user_type": "student", + "full_name": "Tapia Castillo Monserrath Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22992, + "fields": { + "user": null, + "account_number": "41601079", + "user_type": "student", + "full_name": "Barrios Sanchez Carlos Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22993, + "fields": { + "user": null, + "account_number": "41601073", + "user_type": "student", + "full_name": "Chavez Bernardo Osmar Bryan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22994, + "fields": { + "user": null, + "account_number": "41601067", + "user_type": "student", + "full_name": "Hernandez Lopez Marianela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22995, + "fields": { + "user": null, + "account_number": "41600981", + "user_type": "student", + "full_name": "Guzman Ventura Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22996, + "fields": { + "user": null, + "account_number": "41600972", + "user_type": "student", + "full_name": "Aguilar Lozano Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22997, + "fields": { + "user": null, + "account_number": "41600969", + "user_type": "student", + "full_name": "Garcia Perea Gustavo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22998, + "fields": { + "user": null, + "account_number": "41600964", + "user_type": "student", + "full_name": "Monroy Triana Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 22999, + "fields": { + "user": null, + "account_number": "41600949", + "user_type": "student", + "full_name": "Loaeza Maciel Jose Augusto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23000, + "fields": { + "user": null, + "account_number": "41600927", + "user_type": "student", + "full_name": "Ortega Mosqueda Martha Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23001, + "fields": { + "user": null, + "account_number": "41600845", + "user_type": "student", + "full_name": "Ceron Diaz Karen Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23002, + "fields": { + "user": null, + "account_number": "41600768", + "user_type": "student", + "full_name": "Diaz Montero Luis Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23003, + "fields": { + "user": null, + "account_number": "41600753", + "user_type": "student", + "full_name": "Sanchez Lopez Eduardo Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23004, + "fields": { + "user": null, + "account_number": "41600678", + "user_type": "student", + "full_name": "NuÑez Diaz Karen Rebeca" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23005, + "fields": { + "user": null, + "account_number": "41600673", + "user_type": "student", + "full_name": "Valle Rios Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23006, + "fields": { + "user": null, + "account_number": "41600653", + "user_type": "student", + "full_name": "Aguilar Alcibar Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23007, + "fields": { + "user": null, + "account_number": "41600559", + "user_type": "student", + "full_name": "Orozco Ines Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23008, + "fields": { + "user": null, + "account_number": "41600523", + "user_type": "student", + "full_name": "Martinez Montoya Illyana X Tabae" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23009, + "fields": { + "user": null, + "account_number": "41600493", + "user_type": "student", + "full_name": "Preciado Alvarez Jorge Said" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23010, + "fields": { + "user": null, + "account_number": "41600435", + "user_type": "student", + "full_name": "Catalan Garcia Claudia Yaret" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23011, + "fields": { + "user": null, + "account_number": "41600434", + "user_type": "student", + "full_name": "Sanchez Martinez Vladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23012, + "fields": { + "user": null, + "account_number": "41600428", + "user_type": "student", + "full_name": "Sanchez Millan Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23013, + "fields": { + "user": null, + "account_number": "41600415", + "user_type": "student", + "full_name": "Aza Peralta Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23014, + "fields": { + "user": null, + "account_number": "41600392", + "user_type": "student", + "full_name": "Islas Marin Jose Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23015, + "fields": { + "user": null, + "account_number": "41600222", + "user_type": "student", + "full_name": "Lara Santos Francisco Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23016, + "fields": { + "user": null, + "account_number": "41600167", + "user_type": "student", + "full_name": "Vazquez Torres Cesar Aldhair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23017, + "fields": { + "user": null, + "account_number": "41600115", + "user_type": "student", + "full_name": "Hernandez Ortiz Reynaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23018, + "fields": { + "user": null, + "account_number": "41505721", + "user_type": "student", + "full_name": "Nieves Sanchez Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23019, + "fields": { + "user": null, + "account_number": "41304707", + "user_type": "student", + "full_name": "Espinosa Arias Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23020, + "fields": { + "user": null, + "account_number": "41302067", + "user_type": "student", + "full_name": "Gomez Reyes Luis Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23021, + "fields": { + "user": null, + "account_number": "40808408", + "user_type": "student", + "full_name": "Ocampo Hernandez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23022, + "fields": { + "user": null, + "account_number": "31370873", + "user_type": "student", + "full_name": "Reyes Roman Victor Manuel Franci" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23023, + "fields": { + "user": null, + "account_number": "31370722", + "user_type": "student", + "full_name": "PeÑa Ibarra Ana Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23024, + "fields": { + "user": null, + "account_number": "31370466", + "user_type": "student", + "full_name": "Saavedra Aguilar Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23025, + "fields": { + "user": null, + "account_number": "31367970", + "user_type": "student", + "full_name": "Quintana Gamboa Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23026, + "fields": { + "user": null, + "account_number": "31364458", + "user_type": "student", + "full_name": "Reyes Del Angel Oscar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23027, + "fields": { + "user": null, + "account_number": "31335480", + "user_type": "student", + "full_name": "Chino Gregorio Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23028, + "fields": { + "user": null, + "account_number": "31335269", + "user_type": "student", + "full_name": "Flores Garcia Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23029, + "fields": { + "user": null, + "account_number": "31334970", + "user_type": "student", + "full_name": "Orozco Del Angel Paola Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23030, + "fields": { + "user": null, + "account_number": "31334492", + "user_type": "student", + "full_name": "NuÑez Paramo Gabriel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23031, + "fields": { + "user": null, + "account_number": "31334426", + "user_type": "student", + "full_name": "Mancilla Lara Edgar Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23032, + "fields": { + "user": null, + "account_number": "31334117", + "user_type": "student", + "full_name": "Resendiz Garrido Brayan Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23033, + "fields": { + "user": null, + "account_number": "31332351", + "user_type": "student", + "full_name": "Sanchez Najera Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23034, + "fields": { + "user": null, + "account_number": "31331724", + "user_type": "student", + "full_name": "Gomez Trinidad Carlos Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23035, + "fields": { + "user": null, + "account_number": "31329346", + "user_type": "student", + "full_name": "Herrera Cuautle Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23036, + "fields": { + "user": null, + "account_number": "31328754", + "user_type": "student", + "full_name": "Valencia Lopez Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23037, + "fields": { + "user": null, + "account_number": "31328704", + "user_type": "student", + "full_name": "Martinez Tellez Claudia Rubi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23038, + "fields": { + "user": null, + "account_number": "31328591", + "user_type": "student", + "full_name": "Anaya Esquivel Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23039, + "fields": { + "user": null, + "account_number": "31328381", + "user_type": "student", + "full_name": "Torres Guerrero Dennis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23040, + "fields": { + "user": null, + "account_number": "31327897", + "user_type": "student", + "full_name": "Ramirez Alfaro Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23041, + "fields": { + "user": null, + "account_number": "31325885", + "user_type": "student", + "full_name": "Perez Villegas Rolando Alessander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23042, + "fields": { + "user": null, + "account_number": "31325840", + "user_type": "student", + "full_name": "Pastelin Ortiz Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23043, + "fields": { + "user": null, + "account_number": "31325799", + "user_type": "student", + "full_name": "Mayen Rodriguez Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23044, + "fields": { + "user": null, + "account_number": "31324561", + "user_type": "student", + "full_name": "Gutierrez Murillo Ilse Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23045, + "fields": { + "user": null, + "account_number": "31321468", + "user_type": "student", + "full_name": "Solano Gonzalez Axel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23046, + "fields": { + "user": null, + "account_number": "31321280", + "user_type": "student", + "full_name": "Hinojosa Valdes Osvaldo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23047, + "fields": { + "user": null, + "account_number": "31321076", + "user_type": "student", + "full_name": "Cuevas Mora Cesar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23048, + "fields": { + "user": null, + "account_number": "31317220", + "user_type": "student", + "full_name": "Mata Hernandez Carlos David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23049, + "fields": { + "user": null, + "account_number": "31315931", + "user_type": "student", + "full_name": "Olvera Ramirez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23050, + "fields": { + "user": null, + "account_number": "31315734", + "user_type": "student", + "full_name": "Lopez Velasco Jose Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23051, + "fields": { + "user": null, + "account_number": "31315720", + "user_type": "student", + "full_name": "Juarez AvendaÑo Astrid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23052, + "fields": { + "user": null, + "account_number": "31313575", + "user_type": "student", + "full_name": "Rosas Villegas David Josimar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23053, + "fields": { + "user": null, + "account_number": "31309414", + "user_type": "student", + "full_name": "Casales Medina Jaime" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23054, + "fields": { + "user": null, + "account_number": "31308583", + "user_type": "student", + "full_name": "Jaen Zamora Lucila Del Socorro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23055, + "fields": { + "user": null, + "account_number": "31308318", + "user_type": "student", + "full_name": "Flores Hernandez Juan Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23056, + "fields": { + "user": null, + "account_number": "31307902", + "user_type": "student", + "full_name": "Martinez Esquivel Sergio Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23057, + "fields": { + "user": null, + "account_number": "31307241", + "user_type": "student", + "full_name": "Hernandez Montes Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23058, + "fields": { + "user": null, + "account_number": "31306663", + "user_type": "student", + "full_name": "Lopez Herrera David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23059, + "fields": { + "user": null, + "account_number": "31302802", + "user_type": "student", + "full_name": "Garcia Esqueda David Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23060, + "fields": { + "user": null, + "account_number": "31301620", + "user_type": "student", + "full_name": "Alvarado Rojas Manuel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23061, + "fields": { + "user": null, + "account_number": "31300896", + "user_type": "student", + "full_name": "Aguilar Pelcastre Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23062, + "fields": { + "user": null, + "account_number": "31260589", + "user_type": "student", + "full_name": "Perez Montiel Yemahina Yanette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23063, + "fields": { + "user": null, + "account_number": "31235479", + "user_type": "student", + "full_name": "ZuÑiga Cruz Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23064, + "fields": { + "user": null, + "account_number": "31234922", + "user_type": "student", + "full_name": "Rendon Diaz David Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23065, + "fields": { + "user": null, + "account_number": "31233204", + "user_type": "student", + "full_name": "Alvarado Martinez Miguel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23066, + "fields": { + "user": null, + "account_number": "31232615", + "user_type": "student", + "full_name": "Gonzalez Hernandez Jose Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23067, + "fields": { + "user": null, + "account_number": "31232485", + "user_type": "student", + "full_name": "Dominguez Pardo Reynaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23068, + "fields": { + "user": null, + "account_number": "31231939", + "user_type": "student", + "full_name": "Enriquez Mendez Oscar Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23069, + "fields": { + "user": null, + "account_number": "31231538", + "user_type": "student", + "full_name": "Martinez Herrera Erick Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23070, + "fields": { + "user": null, + "account_number": "31230296", + "user_type": "student", + "full_name": "Rangel Rerjis Christopher Mitch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23071, + "fields": { + "user": null, + "account_number": "31229518", + "user_type": "student", + "full_name": "Correa Alfaro Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23072, + "fields": { + "user": null, + "account_number": "31229292", + "user_type": "student", + "full_name": "Garcia Hernandez Meztli Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23073, + "fields": { + "user": null, + "account_number": "31229220", + "user_type": "student", + "full_name": "Cisneros Ruiz Omar Yosafat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23074, + "fields": { + "user": null, + "account_number": "31229092", + "user_type": "student", + "full_name": "Alcantara Aguilera Rodrigo Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23075, + "fields": { + "user": null, + "account_number": "31227946", + "user_type": "student", + "full_name": "Noli Hernandez Mauricio Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23076, + "fields": { + "user": null, + "account_number": "31227916", + "user_type": "student", + "full_name": "Mercado Hernandez Carlos Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23077, + "fields": { + "user": null, + "account_number": "31227313", + "user_type": "student", + "full_name": "Castell Gonzalez Carlos Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23078, + "fields": { + "user": null, + "account_number": "31226338", + "user_type": "student", + "full_name": "Huitron Lovera Fidel Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23079, + "fields": { + "user": null, + "account_number": "31226110", + "user_type": "student", + "full_name": "Orihuela Fuerte Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23080, + "fields": { + "user": null, + "account_number": "31226099", + "user_type": "student", + "full_name": "Navarrete Soriano Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23081, + "fields": { + "user": null, + "account_number": "31225694", + "user_type": "student", + "full_name": "Mendoza Varela Erick Santiago" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23082, + "fields": { + "user": null, + "account_number": "31225229", + "user_type": "student", + "full_name": "MuÑoz Gaistardo Neri Iram" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23083, + "fields": { + "user": null, + "account_number": "31224818", + "user_type": "student", + "full_name": "Gonzalez Gutierrez Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23084, + "fields": { + "user": null, + "account_number": "31223977", + "user_type": "student", + "full_name": "Guzman Bonilla Alfredo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23085, + "fields": { + "user": null, + "account_number": "31223413", + "user_type": "student", + "full_name": "Zavala Santana Karla Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23086, + "fields": { + "user": null, + "account_number": "31222910", + "user_type": "student", + "full_name": "Morales Resendiz Alan Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23087, + "fields": { + "user": null, + "account_number": "31222660", + "user_type": "student", + "full_name": "NuÑez Luna Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23088, + "fields": { + "user": null, + "account_number": "31222109", + "user_type": "student", + "full_name": "Pineda Jimenez Aram Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23089, + "fields": { + "user": null, + "account_number": "31220819", + "user_type": "student", + "full_name": "Ruiz Romero Salvador Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23090, + "fields": { + "user": null, + "account_number": "31220536", + "user_type": "student", + "full_name": "Solis Ojeda Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23091, + "fields": { + "user": null, + "account_number": "31220173", + "user_type": "student", + "full_name": "Gonzalez Bautista Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23092, + "fields": { + "user": null, + "account_number": "31219334", + "user_type": "student", + "full_name": "Guerrero Olvera Grecia Isela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23093, + "fields": { + "user": null, + "account_number": "31218434", + "user_type": "student", + "full_name": "Fuentes Segura David Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23094, + "fields": { + "user": null, + "account_number": "31218121", + "user_type": "student", + "full_name": "Vidal Mendoza Elizabeth Nataly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23095, + "fields": { + "user": null, + "account_number": "31217470", + "user_type": "student", + "full_name": "Hernandez Cruz Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23096, + "fields": { + "user": null, + "account_number": "31217342", + "user_type": "student", + "full_name": "Gonzalez Madrazo Rogelio Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23097, + "fields": { + "user": null, + "account_number": "31215956", + "user_type": "student", + "full_name": "Cleofas Ramos Jose David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23098, + "fields": { + "user": null, + "account_number": "31215285", + "user_type": "student", + "full_name": "CataÑo Miranda Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23099, + "fields": { + "user": null, + "account_number": "31214028", + "user_type": "student", + "full_name": "Piscil Rubio Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23100, + "fields": { + "user": null, + "account_number": "31213794", + "user_type": "student", + "full_name": "Martinez Gonzalez Carlos Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23101, + "fields": { + "user": null, + "account_number": "31213196", + "user_type": "student", + "full_name": "Talavera Ramos Bruno" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23102, + "fields": { + "user": null, + "account_number": "31213155", + "user_type": "student", + "full_name": "Acosta Hernandez Jesus Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23103, + "fields": { + "user": null, + "account_number": "31213093", + "user_type": "student", + "full_name": "Arrona Ledesma German" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23104, + "fields": { + "user": null, + "account_number": "31212738", + "user_type": "student", + "full_name": "Cocoletzi Cabrera Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23105, + "fields": { + "user": null, + "account_number": "31212536", + "user_type": "student", + "full_name": "Arenas Martinez Amanda Rubi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23106, + "fields": { + "user": null, + "account_number": "31212095", + "user_type": "student", + "full_name": "Perez Aparicio David Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23107, + "fields": { + "user": null, + "account_number": "31211716", + "user_type": "student", + "full_name": "Calderon Diaz Antoni Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23108, + "fields": { + "user": null, + "account_number": "31211414", + "user_type": "student", + "full_name": "Lazaro Aquino Eduardo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23109, + "fields": { + "user": null, + "account_number": "31211350", + "user_type": "student", + "full_name": "Gabriel Soto Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23110, + "fields": { + "user": null, + "account_number": "31210685", + "user_type": "student", + "full_name": "Moran Victoria Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23111, + "fields": { + "user": null, + "account_number": "31210380", + "user_type": "student", + "full_name": "Colin CastaÑeda Diego Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23112, + "fields": { + "user": null, + "account_number": "31210223", + "user_type": "student", + "full_name": "Aranda Soriano Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23113, + "fields": { + "user": null, + "account_number": "31210051", + "user_type": "student", + "full_name": "Arana Rayon Lesly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23114, + "fields": { + "user": null, + "account_number": "31209966", + "user_type": "student", + "full_name": "Vega Garcia Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23115, + "fields": { + "user": null, + "account_number": "31208753", + "user_type": "student", + "full_name": "Ramos Romero Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23116, + "fields": { + "user": null, + "account_number": "31208475", + "user_type": "student", + "full_name": "Diaz Rosas Erick Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23117, + "fields": { + "user": null, + "account_number": "31207988", + "user_type": "student", + "full_name": "Cruz Martinez Vanessa Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23118, + "fields": { + "user": null, + "account_number": "31207868", + "user_type": "student", + "full_name": "Aldama Marquez Jose Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23119, + "fields": { + "user": null, + "account_number": "31207650", + "user_type": "student", + "full_name": "Arellano Hernandez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23120, + "fields": { + "user": null, + "account_number": "31207411", + "user_type": "student", + "full_name": "Alaniz Hernandez Gabriel Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23121, + "fields": { + "user": null, + "account_number": "31206572", + "user_type": "student", + "full_name": "Rodriguez Modesto Carlos Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23122, + "fields": { + "user": null, + "account_number": "31206127", + "user_type": "student", + "full_name": "Yudico Gonzalez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23123, + "fields": { + "user": null, + "account_number": "31205733", + "user_type": "student", + "full_name": "Jaime Velazquez Gilberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23124, + "fields": { + "user": null, + "account_number": "31204727", + "user_type": "student", + "full_name": "Jimenez Lima Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23125, + "fields": { + "user": null, + "account_number": "31204207", + "user_type": "student", + "full_name": "Gutierrez Martinez Alonso Yaaziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23126, + "fields": { + "user": null, + "account_number": "31204134", + "user_type": "student", + "full_name": "Diaz Navarro Ulises Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23127, + "fields": { + "user": null, + "account_number": "31204119", + "user_type": "student", + "full_name": "Carrion Garcia Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23128, + "fields": { + "user": null, + "account_number": "31204108", + "user_type": "student", + "full_name": "CastaÑeda Rosales Carlo Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23129, + "fields": { + "user": null, + "account_number": "31203330", + "user_type": "student", + "full_name": "Tolentino Torres Angel Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23130, + "fields": { + "user": null, + "account_number": "31203328", + "user_type": "student", + "full_name": "Sosa Flores Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23131, + "fields": { + "user": null, + "account_number": "31203309", + "user_type": "student", + "full_name": "Rodriguez Rangel Erick Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23132, + "fields": { + "user": null, + "account_number": "31203081", + "user_type": "student", + "full_name": "Gonzalez Vazquez Leon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23133, + "fields": { + "user": null, + "account_number": "31203067", + "user_type": "student", + "full_name": "Funes Ramirez Aldo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23134, + "fields": { + "user": null, + "account_number": "31202902", + "user_type": "student", + "full_name": "Rodriguez Colorado Giovanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23135, + "fields": { + "user": null, + "account_number": "31201807", + "user_type": "student", + "full_name": "Alanis Ibarra Martin Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23136, + "fields": { + "user": null, + "account_number": "31201609", + "user_type": "student", + "full_name": "Miguel Mendoza Wanda Yadira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23137, + "fields": { + "user": null, + "account_number": "31201336", + "user_type": "student", + "full_name": "Fuentes Montoya Joel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23138, + "fields": { + "user": null, + "account_number": "31201141", + "user_type": "student", + "full_name": "Orozco Oropeza Ruben Michel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23139, + "fields": { + "user": null, + "account_number": "31200979", + "user_type": "student", + "full_name": "Mendoza Conde Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23140, + "fields": { + "user": null, + "account_number": "31200097", + "user_type": "student", + "full_name": "Pineda Daza Luis Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23141, + "fields": { + "user": null, + "account_number": "31172191", + "user_type": "student", + "full_name": "Cruz Alatorre Andrea Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23142, + "fields": { + "user": null, + "account_number": "31163234", + "user_type": "student", + "full_name": "Valdez LarraÑaga Sergio Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23143, + "fields": { + "user": null, + "account_number": "31134113", + "user_type": "student", + "full_name": "Salazar Pesquera Nohemy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23144, + "fields": { + "user": null, + "account_number": "31134052", + "user_type": "student", + "full_name": "PiÑon Olivarez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23145, + "fields": { + "user": null, + "account_number": "31129546", + "user_type": "student", + "full_name": "Moreno Bautista Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23146, + "fields": { + "user": null, + "account_number": "31129352", + "user_type": "student", + "full_name": "Batista Trujillo David Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23147, + "fields": { + "user": null, + "account_number": "31128041", + "user_type": "student", + "full_name": "Arreola Gomez Marcos Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23148, + "fields": { + "user": null, + "account_number": "31127599", + "user_type": "student", + "full_name": "Delgado Juarez Soledad Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23149, + "fields": { + "user": null, + "account_number": "31127208", + "user_type": "student", + "full_name": "Sanchez Palma Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23150, + "fields": { + "user": null, + "account_number": "31126847", + "user_type": "student", + "full_name": "Sanchez Ramos Angel Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23151, + "fields": { + "user": null, + "account_number": "31124977", + "user_type": "student", + "full_name": "Morales Morales Jonathan Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23152, + "fields": { + "user": null, + "account_number": "31122968", + "user_type": "student", + "full_name": "Gutierrez Napoles Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23153, + "fields": { + "user": null, + "account_number": "31121149", + "user_type": "student", + "full_name": "Lopez Flores Ana Karen Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23154, + "fields": { + "user": null, + "account_number": "31121113", + "user_type": "student", + "full_name": "Hernandez Fajardo Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23155, + "fields": { + "user": null, + "account_number": "31120549", + "user_type": "student", + "full_name": "Rivera Alvarez Fernando Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23156, + "fields": { + "user": null, + "account_number": "31120505", + "user_type": "student", + "full_name": "Bravo Ramirez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23157, + "fields": { + "user": null, + "account_number": "31120166", + "user_type": "student", + "full_name": "Salazar Ruiz Luis Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23158, + "fields": { + "user": null, + "account_number": "31120136", + "user_type": "student", + "full_name": "Rosas Garcia Victor Atzayatzin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23159, + "fields": { + "user": null, + "account_number": "31119401", + "user_type": "student", + "full_name": "Rangel Carrillo Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23160, + "fields": { + "user": null, + "account_number": "31119163", + "user_type": "student", + "full_name": "Ortega Gomez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23161, + "fields": { + "user": null, + "account_number": "31118722", + "user_type": "student", + "full_name": "Gonzalez Naranjo Daniel Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23162, + "fields": { + "user": null, + "account_number": "31117477", + "user_type": "student", + "full_name": "Leon Santoyo Moises Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23163, + "fields": { + "user": null, + "account_number": "31116514", + "user_type": "student", + "full_name": "Hernandez Barranca Daniel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23164, + "fields": { + "user": null, + "account_number": "31116463", + "user_type": "student", + "full_name": "Herrera Quan Keyvin Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23165, + "fields": { + "user": null, + "account_number": "31115716", + "user_type": "student", + "full_name": "Chavez Molina Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23166, + "fields": { + "user": null, + "account_number": "31114679", + "user_type": "student", + "full_name": "Pascual Hernandez Sofia Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23167, + "fields": { + "user": null, + "account_number": "31114480", + "user_type": "student", + "full_name": "Lopez Serrano Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23168, + "fields": { + "user": null, + "account_number": "31113060", + "user_type": "student", + "full_name": "Brito Vargas Jose Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23169, + "fields": { + "user": null, + "account_number": "31113001", + "user_type": "student", + "full_name": "Alarcon Carreon Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23170, + "fields": { + "user": null, + "account_number": "31112900", + "user_type": "student", + "full_name": "Zamora Garnica Irlanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23171, + "fields": { + "user": null, + "account_number": "31112356", + "user_type": "student", + "full_name": "Vargas Paniagua Axel Bogharth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23172, + "fields": { + "user": null, + "account_number": "31112286", + "user_type": "student", + "full_name": "Solis Ortiz Victor Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23173, + "fields": { + "user": null, + "account_number": "31112071", + "user_type": "student", + "full_name": "Tovar Garcia Angel Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23174, + "fields": { + "user": null, + "account_number": "31110807", + "user_type": "student", + "full_name": "Montiel Hernandez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23175, + "fields": { + "user": null, + "account_number": "31110650", + "user_type": "student", + "full_name": "Guerrero Anzures Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23176, + "fields": { + "user": null, + "account_number": "31107398", + "user_type": "student", + "full_name": "Campos Cardoso Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23177, + "fields": { + "user": null, + "account_number": "31107072", + "user_type": "student", + "full_name": "Aguilar Cruz Nanci Carina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23178, + "fields": { + "user": null, + "account_number": "31106458", + "user_type": "student", + "full_name": "Huertas Garcia Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23179, + "fields": { + "user": null, + "account_number": "31105536", + "user_type": "student", + "full_name": "Vega Rojas Chantal Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23180, + "fields": { + "user": null, + "account_number": "31103252", + "user_type": "student", + "full_name": "Sandoval Miranda Valentin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23181, + "fields": { + "user": null, + "account_number": "31103079", + "user_type": "student", + "full_name": "Gutierrez Oropeza Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23182, + "fields": { + "user": null, + "account_number": "31100865", + "user_type": "student", + "full_name": "Heredia Miranda Janethe Arlette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23183, + "fields": { + "user": null, + "account_number": "31056130", + "user_type": "student", + "full_name": "Guzman Sanchez Emiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23184, + "fields": { + "user": null, + "account_number": "31030650", + "user_type": "student", + "full_name": "Vargas Guerrero Aletsse Citlali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23185, + "fields": { + "user": null, + "account_number": "31028588", + "user_type": "student", + "full_name": "Hernandez Barrera Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23186, + "fields": { + "user": null, + "account_number": "31028444", + "user_type": "student", + "full_name": "Lopez Trujillo Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23187, + "fields": { + "user": null, + "account_number": "31027214", + "user_type": "student", + "full_name": "Lopez Salinas Francisco Miztli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23188, + "fields": { + "user": null, + "account_number": "31021903", + "user_type": "student", + "full_name": "Hernandez MagaÑa Xenki" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23189, + "fields": { + "user": null, + "account_number": "31020271", + "user_type": "student", + "full_name": "PeÑa Benitez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23190, + "fields": { + "user": null, + "account_number": "31019179", + "user_type": "student", + "full_name": "Calitl Garcia Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23191, + "fields": { + "user": null, + "account_number": "31017559", + "user_type": "student", + "full_name": "Moreno Gonzalez Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23192, + "fields": { + "user": null, + "account_number": "31016714", + "user_type": "student", + "full_name": "Triana Gonzalez Ingrid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23193, + "fields": { + "user": null, + "account_number": "31016488", + "user_type": "student", + "full_name": "Tolentino Sanchez Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23194, + "fields": { + "user": null, + "account_number": "31015255", + "user_type": "student", + "full_name": "Velazquez Torres Gladys Belem" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23195, + "fields": { + "user": null, + "account_number": "31008574", + "user_type": "student", + "full_name": "Izquierdo Martinez Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23196, + "fields": { + "user": null, + "account_number": "31002808", + "user_type": "student", + "full_name": "Cruz Placido David Orlando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23197, + "fields": { + "user": null, + "account_number": "31002489", + "user_type": "student", + "full_name": "Agustin Avila Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23198, + "fields": { + "user": null, + "account_number": "30932703", + "user_type": "student", + "full_name": "Vargas Guerrero Jesus Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23199, + "fields": { + "user": null, + "account_number": "30932607", + "user_type": "student", + "full_name": "Tonchi Arenas Jorge Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23200, + "fields": { + "user": null, + "account_number": "30925294", + "user_type": "student", + "full_name": "Martinez Molina Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23201, + "fields": { + "user": null, + "account_number": "30923913", + "user_type": "student", + "full_name": "Hernandez Chamorro Luis Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23202, + "fields": { + "user": null, + "account_number": "30914799", + "user_type": "student", + "full_name": "Moreno Martinez Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23203, + "fields": { + "user": null, + "account_number": "30913399", + "user_type": "student", + "full_name": "Serrano Bazan Claudio Arturo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23204, + "fields": { + "user": null, + "account_number": "30907328", + "user_type": "student", + "full_name": "Contreras Duran Karla Vianey" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23205, + "fields": { + "user": null, + "account_number": "30903956", + "user_type": "student", + "full_name": "Casas Cedillo Noel Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23206, + "fields": { + "user": null, + "account_number": "30903741", + "user_type": "student", + "full_name": "Chavez Jimenez Armando Vladimir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23207, + "fields": { + "user": null, + "account_number": "30900635", + "user_type": "student", + "full_name": "Hernandez Gutierrez Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23208, + "fields": { + "user": null, + "account_number": "30862165", + "user_type": "student", + "full_name": "Castillo Perez Dayna Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23209, + "fields": { + "user": null, + "account_number": "30833806", + "user_type": "student", + "full_name": "Fernandez Ortiz Bruno Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23210, + "fields": { + "user": null, + "account_number": "30833622", + "user_type": "student", + "full_name": "Covarrubias Acevedo Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23211, + "fields": { + "user": null, + "account_number": "30826642", + "user_type": "student", + "full_name": "Luna CastaÑeda Abraham Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23212, + "fields": { + "user": null, + "account_number": "30826514", + "user_type": "student", + "full_name": "Gonzalez Flores Diego Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23213, + "fields": { + "user": null, + "account_number": "30825300", + "user_type": "student", + "full_name": "Martinez Calderon Roberto Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23214, + "fields": { + "user": null, + "account_number": "30823311", + "user_type": "student", + "full_name": "Ruiz Garcia Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23215, + "fields": { + "user": null, + "account_number": "30816569", + "user_type": "student", + "full_name": "Cruz Juarez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23216, + "fields": { + "user": null, + "account_number": "30733088", + "user_type": "student", + "full_name": "Alcazar Pineda Jovani Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23217, + "fields": { + "user": null, + "account_number": "30729418", + "user_type": "student", + "full_name": "Xochimit Mendieta Erick Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23218, + "fields": { + "user": null, + "account_number": "30728624", + "user_type": "student", + "full_name": "Valencia Bautista Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23219, + "fields": { + "user": null, + "account_number": "30712576", + "user_type": "student", + "full_name": "Martinez Pantoja Ricardo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23220, + "fields": { + "user": null, + "account_number": "30616350", + "user_type": "student", + "full_name": "MuÑoz Alonzo Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23221, + "fields": { + "user": null, + "account_number": "30613756", + "user_type": "student", + "full_name": "Diaz Hernandez Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23222, + "fields": { + "user": null, + "account_number": "30606714", + "user_type": "student", + "full_name": "Crispin Corrales Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23223, + "fields": { + "user": null, + "account_number": "30520170", + "user_type": "student", + "full_name": "Gonzalez Garcia Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23224, + "fields": { + "user": null, + "account_number": "30520085", + "user_type": "student", + "full_name": "Gama Martinez Daniel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23225, + "fields": { + "user": null, + "account_number": "30412123", + "user_type": "student", + "full_name": "NuÑez Ortiz Esdras David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23226, + "fields": { + "user": null, + "account_number": "30412071", + "user_type": "student", + "full_name": "Garcia Salas Gustavo Aurelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23227, + "fields": { + "user": null, + "account_number": "30322245", + "user_type": "student", + "full_name": "MuÑoz Diaz Ana Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23228, + "fields": { + "user": null, + "account_number": "10800248", + "user_type": "student", + "full_name": "Escutia Roa Melanie Frida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23229, + "fields": { + "user": null, + "account_number": "41549026", + "user_type": "student", + "full_name": "Partida Martinez Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23230, + "fields": { + "user": null, + "account_number": "41513187", + "user_type": "student", + "full_name": "Diaz Gonzalez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23231, + "fields": { + "user": null, + "account_number": "41513167", + "user_type": "student", + "full_name": "Torres Lopez Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23232, + "fields": { + "user": null, + "account_number": "41513127", + "user_type": "student", + "full_name": "Ortega Ramirez Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23233, + "fields": { + "user": null, + "account_number": "41513094", + "user_type": "student", + "full_name": "Santamaria Yermo Evan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23234, + "fields": { + "user": null, + "account_number": "41512999", + "user_type": "student", + "full_name": "Reyes Trejo Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23235, + "fields": { + "user": null, + "account_number": "41512975", + "user_type": "student", + "full_name": "Garcia Leon Jimi Crozy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23236, + "fields": { + "user": null, + "account_number": "41512950", + "user_type": "student", + "full_name": "Perez Montes Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23237, + "fields": { + "user": null, + "account_number": "41512735", + "user_type": "student", + "full_name": "NuÑez Huidobro Ruben Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23238, + "fields": { + "user": null, + "account_number": "41512732", + "user_type": "student", + "full_name": "Gonzalez Rosales Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23239, + "fields": { + "user": null, + "account_number": "41512694", + "user_type": "student", + "full_name": "Rojas Estrada Katia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23240, + "fields": { + "user": null, + "account_number": "41512670", + "user_type": "student", + "full_name": "Barrera Hernandez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23241, + "fields": { + "user": null, + "account_number": "41512628", + "user_type": "student", + "full_name": "MuÑoz Benitez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23242, + "fields": { + "user": null, + "account_number": "41512568", + "user_type": "student", + "full_name": "Serrano Teran Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23243, + "fields": { + "user": null, + "account_number": "41512561", + "user_type": "student", + "full_name": "Gomez Licona Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23244, + "fields": { + "user": null, + "account_number": "41512533", + "user_type": "student", + "full_name": "Gutierrez Lopez Roman" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23245, + "fields": { + "user": null, + "account_number": "41512403", + "user_type": "student", + "full_name": "Mondragon Alvarez Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23246, + "fields": { + "user": null, + "account_number": "41512365", + "user_type": "student", + "full_name": "Chavarria Flores Jose Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23247, + "fields": { + "user": null, + "account_number": "41512333", + "user_type": "student", + "full_name": "Soto Chavez Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23248, + "fields": { + "user": null, + "account_number": "41512315", + "user_type": "student", + "full_name": "Arroyo Romero Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23249, + "fields": { + "user": null, + "account_number": "41512279", + "user_type": "student", + "full_name": "Espinoza Zambrano Brenda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23250, + "fields": { + "user": null, + "account_number": "41512262", + "user_type": "student", + "full_name": "Colorado Hernandez Tonatiuh" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23251, + "fields": { + "user": null, + "account_number": "41512217", + "user_type": "student", + "full_name": "Valdez Ramirez Jose Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23252, + "fields": { + "user": null, + "account_number": "41512207", + "user_type": "student", + "full_name": "De La Cruz Mora Giovanna Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23253, + "fields": { + "user": null, + "account_number": "41512056", + "user_type": "student", + "full_name": "Garzon Hernandez Jose Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23254, + "fields": { + "user": null, + "account_number": "41511684", + "user_type": "student", + "full_name": "MuÑoz Espinoza Paola Anahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23255, + "fields": { + "user": null, + "account_number": "41511658", + "user_type": "student", + "full_name": "Garcia Aguilar Oscar Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23256, + "fields": { + "user": null, + "account_number": "41511605", + "user_type": "student", + "full_name": "Flores Alvarez Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23257, + "fields": { + "user": null, + "account_number": "41511573", + "user_type": "student", + "full_name": "Gazga Melchor Laura Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23258, + "fields": { + "user": null, + "account_number": "41511535", + "user_type": "student", + "full_name": "Martinez Hernandez Tania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23259, + "fields": { + "user": null, + "account_number": "41511506", + "user_type": "student", + "full_name": "MuÑoz Zarate Ramon Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23260, + "fields": { + "user": null, + "account_number": "41511503", + "user_type": "student", + "full_name": "Diaz Arista Bono Stefanno" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23261, + "fields": { + "user": null, + "account_number": "41511437", + "user_type": "student", + "full_name": "Dominguez Ocampo Emith Nicolas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23262, + "fields": { + "user": null, + "account_number": "41511399", + "user_type": "student", + "full_name": "Carrasco Garcia Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23263, + "fields": { + "user": null, + "account_number": "41511364", + "user_type": "student", + "full_name": "Castillo Velasco Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23264, + "fields": { + "user": null, + "account_number": "41511353", + "user_type": "student", + "full_name": "Figueroa Godinez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23265, + "fields": { + "user": null, + "account_number": "41511342", + "user_type": "student", + "full_name": "Morales Hernandez Constantino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23266, + "fields": { + "user": null, + "account_number": "41511328", + "user_type": "student", + "full_name": "Nabor Sanchez Kelly Vianey" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23267, + "fields": { + "user": null, + "account_number": "41511214", + "user_type": "student", + "full_name": "Arriaga Alvarado Josseline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23268, + "fields": { + "user": null, + "account_number": "41511213", + "user_type": "student", + "full_name": "Guerrero Lopez Luis Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23269, + "fields": { + "user": null, + "account_number": "41511211", + "user_type": "student", + "full_name": "Calderon Huitron Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23270, + "fields": { + "user": null, + "account_number": "41511186", + "user_type": "student", + "full_name": "Ramirez Martinez Darwin Evigait" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23271, + "fields": { + "user": null, + "account_number": "41511104", + "user_type": "student", + "full_name": "Martinez Cruzado Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23272, + "fields": { + "user": null, + "account_number": "41511069", + "user_type": "student", + "full_name": "Vallejo NuÑez Erick De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23273, + "fields": { + "user": null, + "account_number": "41511044", + "user_type": "student", + "full_name": "Mayen Romero Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23274, + "fields": { + "user": null, + "account_number": "41511005", + "user_type": "student", + "full_name": "Andres De Jesus Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23275, + "fields": { + "user": null, + "account_number": "41510992", + "user_type": "student", + "full_name": "Cabrera Vasquez Jaime Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23276, + "fields": { + "user": null, + "account_number": "41510781", + "user_type": "student", + "full_name": "Gomez Salas David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23277, + "fields": { + "user": null, + "account_number": "41510768", + "user_type": "student", + "full_name": "Fonseca Cisneros Osmar Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23278, + "fields": { + "user": null, + "account_number": "41510747", + "user_type": "student", + "full_name": "Peralta Garcia Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23279, + "fields": { + "user": null, + "account_number": "41510741", + "user_type": "student", + "full_name": "Pulido Martinez Oscar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23280, + "fields": { + "user": null, + "account_number": "41510728", + "user_type": "student", + "full_name": "Echevarria Islas Norma Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23281, + "fields": { + "user": null, + "account_number": "41510722", + "user_type": "student", + "full_name": "Santiago Prado Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23282, + "fields": { + "user": null, + "account_number": "41510721", + "user_type": "student", + "full_name": "Hernandez Coronel Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23283, + "fields": { + "user": null, + "account_number": "41510696", + "user_type": "student", + "full_name": "Rodriguez Cabrera Brenda Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23284, + "fields": { + "user": null, + "account_number": "41510600", + "user_type": "student", + "full_name": "Rios Cansino Luis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23285, + "fields": { + "user": null, + "account_number": "41510576", + "user_type": "student", + "full_name": "Camacho Suarez Carlos Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23286, + "fields": { + "user": null, + "account_number": "41510544", + "user_type": "student", + "full_name": "Astorga Diaz Og Norberto Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23287, + "fields": { + "user": null, + "account_number": "41510531", + "user_type": "student", + "full_name": "Belman Torres Akira Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23288, + "fields": { + "user": null, + "account_number": "41510353", + "user_type": "student", + "full_name": "Tapia Sales Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23289, + "fields": { + "user": null, + "account_number": "41510329", + "user_type": "student", + "full_name": "Miranda Lopez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23290, + "fields": { + "user": null, + "account_number": "41510295", + "user_type": "student", + "full_name": "Marcos Arroyo Alan Willivalo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23291, + "fields": { + "user": null, + "account_number": "41510292", + "user_type": "student", + "full_name": "Carmona Nicanor Elvis Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23292, + "fields": { + "user": null, + "account_number": "41510171", + "user_type": "student", + "full_name": "Jimenez Limon Cesar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23293, + "fields": { + "user": null, + "account_number": "41510145", + "user_type": "student", + "full_name": "Gomez Osornio Hada" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23294, + "fields": { + "user": null, + "account_number": "41510136", + "user_type": "student", + "full_name": "Romero Barragan Erick Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23295, + "fields": { + "user": null, + "account_number": "41510128", + "user_type": "student", + "full_name": "Bermejo Guerrero Miguel Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23296, + "fields": { + "user": null, + "account_number": "41510105", + "user_type": "student", + "full_name": "Rodriguez Rubio Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23297, + "fields": { + "user": null, + "account_number": "41510003", + "user_type": "student", + "full_name": "Garcia Cruz Fidel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23298, + "fields": { + "user": null, + "account_number": "41509993", + "user_type": "student", + "full_name": "Albarran Martinez David Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23299, + "fields": { + "user": null, + "account_number": "41509970", + "user_type": "student", + "full_name": "Perez Gomez Eric Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23300, + "fields": { + "user": null, + "account_number": "41509840", + "user_type": "student", + "full_name": "Suarez Acosta David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23301, + "fields": { + "user": null, + "account_number": "41509783", + "user_type": "student", + "full_name": "Garcia Rodriguez Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23302, + "fields": { + "user": null, + "account_number": "41509748", + "user_type": "student", + "full_name": "Flores Cruz Israel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23303, + "fields": { + "user": null, + "account_number": "41509694", + "user_type": "student", + "full_name": "Callejas Hernandez Cipriano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23304, + "fields": { + "user": null, + "account_number": "41509688", + "user_type": "student", + "full_name": "Martinez Martinez Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23305, + "fields": { + "user": null, + "account_number": "41509661", + "user_type": "student", + "full_name": "Bautista BolaÑos Carolina Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23306, + "fields": { + "user": null, + "account_number": "41509639", + "user_type": "student", + "full_name": "Sanchez Juarez Jose Emlilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23307, + "fields": { + "user": null, + "account_number": "41509635", + "user_type": "student", + "full_name": "Garcia Callejas Edgar Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23308, + "fields": { + "user": null, + "account_number": "41509601", + "user_type": "student", + "full_name": "Baltazar Garcia Brandon Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23309, + "fields": { + "user": null, + "account_number": "41509560", + "user_type": "student", + "full_name": "Sanchez Alcantara Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23310, + "fields": { + "user": null, + "account_number": "41509533", + "user_type": "student", + "full_name": "Galeote Sanchez Ana Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23311, + "fields": { + "user": null, + "account_number": "41509444", + "user_type": "student", + "full_name": "Casasola Rodriguez Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23312, + "fields": { + "user": null, + "account_number": "41509321", + "user_type": "student", + "full_name": "GudiÑo Marquez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23313, + "fields": { + "user": null, + "account_number": "41509316", + "user_type": "student", + "full_name": "Reveles Martinez Zoe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23314, + "fields": { + "user": null, + "account_number": "41509192", + "user_type": "student", + "full_name": "Jimenez Pineda Maria Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23315, + "fields": { + "user": null, + "account_number": "41509085", + "user_type": "student", + "full_name": "Sanchez Ortiz Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23316, + "fields": { + "user": null, + "account_number": "41509057", + "user_type": "student", + "full_name": "Garcia Magallanes Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23317, + "fields": { + "user": null, + "account_number": "41509053", + "user_type": "student", + "full_name": "Lopez Vanegas Hugo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23318, + "fields": { + "user": null, + "account_number": "41508982", + "user_type": "student", + "full_name": "Miranda Santos Jose Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23319, + "fields": { + "user": null, + "account_number": "41508967", + "user_type": "student", + "full_name": "Hernandez Landeros Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23320, + "fields": { + "user": null, + "account_number": "41508958", + "user_type": "student", + "full_name": "Lara Hernandez Susana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23321, + "fields": { + "user": null, + "account_number": "41508834", + "user_type": "student", + "full_name": "Veloz Gutierrez Jazmin Montserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23322, + "fields": { + "user": null, + "account_number": "41508822", + "user_type": "student", + "full_name": "Contreras Plaza Maria Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23323, + "fields": { + "user": null, + "account_number": "41508806", + "user_type": "student", + "full_name": "Aguirre Gil Victor Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23324, + "fields": { + "user": null, + "account_number": "41508639", + "user_type": "student", + "full_name": "Uribe Jimenez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23325, + "fields": { + "user": null, + "account_number": "41508624", + "user_type": "student", + "full_name": "Sanchez Contreras Jonathan Jair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23326, + "fields": { + "user": null, + "account_number": "41508619", + "user_type": "student", + "full_name": "Sanchez Kenel Brenda Asuncion" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23327, + "fields": { + "user": null, + "account_number": "41508590", + "user_type": "student", + "full_name": "Garcia Trejo Mario Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23328, + "fields": { + "user": null, + "account_number": "41508571", + "user_type": "student", + "full_name": "Valenzuela Jimenez Maria Del Rocio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23329, + "fields": { + "user": null, + "account_number": "41508477", + "user_type": "student", + "full_name": "Hernandez Torres Fatuma Junxia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23330, + "fields": { + "user": null, + "account_number": "41508456", + "user_type": "student", + "full_name": "Mayorga Lopez Oswaldo Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23331, + "fields": { + "user": null, + "account_number": "41508328", + "user_type": "student", + "full_name": "Delgado Gonzalez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23332, + "fields": { + "user": null, + "account_number": "41508311", + "user_type": "student", + "full_name": "Laguna Lobato Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23333, + "fields": { + "user": null, + "account_number": "41508274", + "user_type": "student", + "full_name": "Velazquez De La Rosa Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23334, + "fields": { + "user": null, + "account_number": "41508267", + "user_type": "student", + "full_name": "Ortega De Los Santos Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23335, + "fields": { + "user": null, + "account_number": "41508250", + "user_type": "student", + "full_name": "Salazar Silva Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23336, + "fields": { + "user": null, + "account_number": "41508240", + "user_type": "student", + "full_name": "Guerrero Ferrusca Nayely Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23337, + "fields": { + "user": null, + "account_number": "41508216", + "user_type": "student", + "full_name": "Sandoval Calderon Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23338, + "fields": { + "user": null, + "account_number": "41508124", + "user_type": "student", + "full_name": "Moedano Reyes Amairany Zuleyma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23339, + "fields": { + "user": null, + "account_number": "41508036", + "user_type": "student", + "full_name": "Prado Pedro Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23340, + "fields": { + "user": null, + "account_number": "41508023", + "user_type": "student", + "full_name": "Hernandez Amador Jessica Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23341, + "fields": { + "user": null, + "account_number": "41507987", + "user_type": "student", + "full_name": "Madrigal Perez Ramiro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23342, + "fields": { + "user": null, + "account_number": "41507950", + "user_type": "student", + "full_name": "Fabian Perez Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23343, + "fields": { + "user": null, + "account_number": "41507913", + "user_type": "student", + "full_name": "Hernandez Martinez Ismael Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23344, + "fields": { + "user": null, + "account_number": "41507784", + "user_type": "student", + "full_name": "Cruz Martinez Mauri Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23345, + "fields": { + "user": null, + "account_number": "41507482", + "user_type": "student", + "full_name": "Caballero Ponce Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23346, + "fields": { + "user": null, + "account_number": "41507430", + "user_type": "student", + "full_name": "Jimenez NuÑez Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23347, + "fields": { + "user": null, + "account_number": "41507207", + "user_type": "student", + "full_name": "Barajas Ochoa Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23348, + "fields": { + "user": null, + "account_number": "41507190", + "user_type": "student", + "full_name": "Lortia Prado Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23349, + "fields": { + "user": null, + "account_number": "41507175", + "user_type": "student", + "full_name": "Olvera Delagado Jose Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23350, + "fields": { + "user": null, + "account_number": "41506980", + "user_type": "student", + "full_name": "Moreno Salinas Sandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23351, + "fields": { + "user": null, + "account_number": "41506961", + "user_type": "student", + "full_name": "Lopez Lopez Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23352, + "fields": { + "user": null, + "account_number": "41506555", + "user_type": "student", + "full_name": "Rosas Bautista Fernando Yovany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23353, + "fields": { + "user": null, + "account_number": "41506518", + "user_type": "student", + "full_name": "Santana Colin Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23354, + "fields": { + "user": null, + "account_number": "41506511", + "user_type": "student", + "full_name": "Gonzalez Sevilla Magdalena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23355, + "fields": { + "user": null, + "account_number": "41505832", + "user_type": "student", + "full_name": "Favila Dimas David Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23356, + "fields": { + "user": null, + "account_number": "41505829", + "user_type": "student", + "full_name": "Rosas Gonzalez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23357, + "fields": { + "user": null, + "account_number": "41505722", + "user_type": "student", + "full_name": "Medina Lozano Nereyda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23358, + "fields": { + "user": null, + "account_number": "41505669", + "user_type": "student", + "full_name": "Moreno Torres Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23359, + "fields": { + "user": null, + "account_number": "41505668", + "user_type": "student", + "full_name": "Espejel Aco Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23360, + "fields": { + "user": null, + "account_number": "41505561", + "user_type": "student", + "full_name": "Lopez Morales Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23361, + "fields": { + "user": null, + "account_number": "41505464", + "user_type": "student", + "full_name": "Diaz Martinez Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23362, + "fields": { + "user": null, + "account_number": "41505458", + "user_type": "student", + "full_name": "Garcia Luna Leonardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23363, + "fields": { + "user": null, + "account_number": "41505259", + "user_type": "student", + "full_name": "Antonio Rojas Alexis David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23364, + "fields": { + "user": null, + "account_number": "41505228", + "user_type": "student", + "full_name": "Herrera Mar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23365, + "fields": { + "user": null, + "account_number": "41504707", + "user_type": "student", + "full_name": "Ponce Valencia Luis Donaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23366, + "fields": { + "user": null, + "account_number": "41503469", + "user_type": "student", + "full_name": "Chavez Ochoa Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23367, + "fields": { + "user": null, + "account_number": "41503468", + "user_type": "student", + "full_name": "Martinez PeÑaloza Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23368, + "fields": { + "user": null, + "account_number": "41503462", + "user_type": "student", + "full_name": "Clemente Perez Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23369, + "fields": { + "user": null, + "account_number": "41503460", + "user_type": "student", + "full_name": "Mata CabaÑas Gerardo Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23370, + "fields": { + "user": null, + "account_number": "41503459", + "user_type": "student", + "full_name": "Diaz Gomez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23371, + "fields": { + "user": null, + "account_number": "41503451", + "user_type": "student", + "full_name": "Gonzalez Barrios Jessica Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23372, + "fields": { + "user": null, + "account_number": "41503447", + "user_type": "student", + "full_name": "Gonzalez Reveles Elihu Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23373, + "fields": { + "user": null, + "account_number": "41503446", + "user_type": "student", + "full_name": "Fonseca Flores Pedro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23374, + "fields": { + "user": null, + "account_number": "41503426", + "user_type": "student", + "full_name": "Rivero Tovar Mariano Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23375, + "fields": { + "user": null, + "account_number": "41503425", + "user_type": "student", + "full_name": "Ortega Flores Regina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23376, + "fields": { + "user": null, + "account_number": "41503424", + "user_type": "student", + "full_name": "Ramirez Pineda Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23377, + "fields": { + "user": null, + "account_number": "41503417", + "user_type": "student", + "full_name": "Hernandez Perez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23378, + "fields": { + "user": null, + "account_number": "41503413", + "user_type": "student", + "full_name": "Lopez Nicolas Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23379, + "fields": { + "user": null, + "account_number": "41503393", + "user_type": "student", + "full_name": "Perez Sanchez Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23380, + "fields": { + "user": null, + "account_number": "41503388", + "user_type": "student", + "full_name": "Aleman Hernandez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23381, + "fields": { + "user": null, + "account_number": "41503387", + "user_type": "student", + "full_name": "Ramirez Lopez Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23382, + "fields": { + "user": null, + "account_number": "41503363", + "user_type": "student", + "full_name": "Sanchez Sandoval Estela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23383, + "fields": { + "user": null, + "account_number": "41503360", + "user_type": "student", + "full_name": "Castro Cardona Edgar Irvin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23384, + "fields": { + "user": null, + "account_number": "41503349", + "user_type": "student", + "full_name": "Sanchez Vicente Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23385, + "fields": { + "user": null, + "account_number": "41503346", + "user_type": "student", + "full_name": "Martinez Huerta Diego Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23386, + "fields": { + "user": null, + "account_number": "41503343", + "user_type": "student", + "full_name": "Cortes Catorce Sayuri" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23387, + "fields": { + "user": null, + "account_number": "41503331", + "user_type": "student", + "full_name": "Castillo Ramos Ana Luisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23388, + "fields": { + "user": null, + "account_number": "41503325", + "user_type": "student", + "full_name": "Santos Escamilla Angel Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23389, + "fields": { + "user": null, + "account_number": "41503320", + "user_type": "student", + "full_name": "Gonzalez Rodriguez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23390, + "fields": { + "user": null, + "account_number": "41503299", + "user_type": "student", + "full_name": "Antonio Hernandez Lilia Eugenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23391, + "fields": { + "user": null, + "account_number": "41503290", + "user_type": "student", + "full_name": "Mayoral Almaraz Brenda Salud" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23392, + "fields": { + "user": null, + "account_number": "41503288", + "user_type": "student", + "full_name": "Sevillano Carmona Ricardo Jahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23393, + "fields": { + "user": null, + "account_number": "41503287", + "user_type": "student", + "full_name": "Rasgado Celaya Julio Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23394, + "fields": { + "user": null, + "account_number": "41503231", + "user_type": "student", + "full_name": "Sanchez Ibarra Yaneli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23395, + "fields": { + "user": null, + "account_number": "41503218", + "user_type": "student", + "full_name": "Cruz Sandoval Emmanuel Benito" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23396, + "fields": { + "user": null, + "account_number": "41503205", + "user_type": "student", + "full_name": "Rodriguez Rodriguez Fidel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23397, + "fields": { + "user": null, + "account_number": "41503204", + "user_type": "student", + "full_name": "Olguin Razo Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23398, + "fields": { + "user": null, + "account_number": "41503202", + "user_type": "student", + "full_name": "Mayen Rios Maria Luisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23399, + "fields": { + "user": null, + "account_number": "41503192", + "user_type": "student", + "full_name": "Lara Castillo Brenda Joselin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23400, + "fields": { + "user": null, + "account_number": "41503190", + "user_type": "student", + "full_name": "Chavez Gomez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23401, + "fields": { + "user": null, + "account_number": "41503187", + "user_type": "student", + "full_name": "Salazar Peralta Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23402, + "fields": { + "user": null, + "account_number": "41503182", + "user_type": "student", + "full_name": "Cruz Reyes Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23403, + "fields": { + "user": null, + "account_number": "41503181", + "user_type": "student", + "full_name": "CastaÑeda Mendoza Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23404, + "fields": { + "user": null, + "account_number": "41503160", + "user_type": "student", + "full_name": "Gonzalez Vargas Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23405, + "fields": { + "user": null, + "account_number": "41503158", + "user_type": "student", + "full_name": "Gallegos Galicia Nayle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23406, + "fields": { + "user": null, + "account_number": "41503142", + "user_type": "student", + "full_name": "Galvan Sandoval Diego Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23407, + "fields": { + "user": null, + "account_number": "41503123", + "user_type": "student", + "full_name": "Mata Morales Tania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23408, + "fields": { + "user": null, + "account_number": "41503115", + "user_type": "student", + "full_name": "Solis Coria Eduardo Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23409, + "fields": { + "user": null, + "account_number": "41503107", + "user_type": "student", + "full_name": "Vela Garcia Vanessa Janete" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23410, + "fields": { + "user": null, + "account_number": "41503092", + "user_type": "student", + "full_name": "Gonzalez Blancas Leslie Janine" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23411, + "fields": { + "user": null, + "account_number": "41503082", + "user_type": "student", + "full_name": "Martinez Mendez Alan Giovanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23412, + "fields": { + "user": null, + "account_number": "41503069", + "user_type": "student", + "full_name": "Olivares Bautista Maria Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23413, + "fields": { + "user": null, + "account_number": "41503065", + "user_type": "student", + "full_name": "Delgado Perez Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23414, + "fields": { + "user": null, + "account_number": "41503062", + "user_type": "student", + "full_name": "Zavala Chavez Marco Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23415, + "fields": { + "user": null, + "account_number": "41503049", + "user_type": "student", + "full_name": "Monroy Garcia Karla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23416, + "fields": { + "user": null, + "account_number": "41503044", + "user_type": "student", + "full_name": "Hurtado Escalera Jacqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23417, + "fields": { + "user": null, + "account_number": "41503022", + "user_type": "student", + "full_name": "Reyes Sanabria Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23418, + "fields": { + "user": null, + "account_number": "41503019", + "user_type": "student", + "full_name": "Estrella Garcia Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23419, + "fields": { + "user": null, + "account_number": "41502963", + "user_type": "student", + "full_name": "Aguilar NiÑo Arantxa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23420, + "fields": { + "user": null, + "account_number": "41502934", + "user_type": "student", + "full_name": "Hernandez Cruz Joan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23421, + "fields": { + "user": null, + "account_number": "41502810", + "user_type": "student", + "full_name": "Ramos Martinez Braulio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23422, + "fields": { + "user": null, + "account_number": "41502807", + "user_type": "student", + "full_name": "Lopez Ruiz Daniela Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23423, + "fields": { + "user": null, + "account_number": "41502772", + "user_type": "student", + "full_name": "Perez Cervantes Angel Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23424, + "fields": { + "user": null, + "account_number": "41502760", + "user_type": "student", + "full_name": "Hernandez IbaÑez Heriberto Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23425, + "fields": { + "user": null, + "account_number": "41502755", + "user_type": "student", + "full_name": "Cordova Rojas Jessica Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23426, + "fields": { + "user": null, + "account_number": "41502734", + "user_type": "student", + "full_name": "Machado Bermudez Maria Dolores" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23427, + "fields": { + "user": null, + "account_number": "41502693", + "user_type": "student", + "full_name": "Ortega Roa Salma Katia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23428, + "fields": { + "user": null, + "account_number": "41502680", + "user_type": "student", + "full_name": "Diaz Luna Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23429, + "fields": { + "user": null, + "account_number": "41502672", + "user_type": "student", + "full_name": "De La Rosa Valadez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23430, + "fields": { + "user": null, + "account_number": "41502621", + "user_type": "student", + "full_name": "Lopez Gaitan Gustavo Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23431, + "fields": { + "user": null, + "account_number": "41502613", + "user_type": "student", + "full_name": "Alba Montiel Dan Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23432, + "fields": { + "user": null, + "account_number": "41502599", + "user_type": "student", + "full_name": "Uribe Grajales Alan Edilberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23433, + "fields": { + "user": null, + "account_number": "41502582", + "user_type": "student", + "full_name": "Dominguez Hernandez Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23434, + "fields": { + "user": null, + "account_number": "41502528", + "user_type": "student", + "full_name": "Bautista Velazquez Perla Citlali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23435, + "fields": { + "user": null, + "account_number": "41502524", + "user_type": "student", + "full_name": "Cano Rico Juan Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23436, + "fields": { + "user": null, + "account_number": "41502478", + "user_type": "student", + "full_name": "Montoya Martinez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23437, + "fields": { + "user": null, + "account_number": "41502458", + "user_type": "student", + "full_name": "Rodriguez Chavez Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23438, + "fields": { + "user": null, + "account_number": "41502410", + "user_type": "student", + "full_name": "Santiago Marquez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23439, + "fields": { + "user": null, + "account_number": "41502148", + "user_type": "student", + "full_name": "Reyes Calderon Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23440, + "fields": { + "user": null, + "account_number": "41501725", + "user_type": "student", + "full_name": "Soto Alvarado Jose Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23441, + "fields": { + "user": null, + "account_number": "41501661", + "user_type": "student", + "full_name": "Melendez Guadarrama Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23442, + "fields": { + "user": null, + "account_number": "41501633", + "user_type": "student", + "full_name": "Angel Mariano Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23443, + "fields": { + "user": null, + "account_number": "41500582", + "user_type": "student", + "full_name": "Delgado Acosta Guillermo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23444, + "fields": { + "user": null, + "account_number": "41500566", + "user_type": "student", + "full_name": "Nolasco Rosas Francisco Allan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23445, + "fields": { + "user": null, + "account_number": "41500560", + "user_type": "student", + "full_name": "Gonzalez Mendoza Sonia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23446, + "fields": { + "user": null, + "account_number": "41413805", + "user_type": "student", + "full_name": "Diaz Martinez Daniel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23447, + "fields": { + "user": null, + "account_number": "41408766", + "user_type": "student", + "full_name": "Ramirez Rivera Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23448, + "fields": { + "user": null, + "account_number": "41407958", + "user_type": "student", + "full_name": "Huerta Zamora Carlos Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23449, + "fields": { + "user": null, + "account_number": "41405068", + "user_type": "student", + "full_name": "Escorcia Garcia Angel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23450, + "fields": { + "user": null, + "account_number": "41404475", + "user_type": "student", + "full_name": "Dominguez Santoyo Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23451, + "fields": { + "user": null, + "account_number": "41401171", + "user_type": "student", + "full_name": "Aguilar Santiago Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23452, + "fields": { + "user": null, + "account_number": "41212520", + "user_type": "student", + "full_name": "Garcia Fernandez Flavio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23453, + "fields": { + "user": null, + "account_number": "41208528", + "user_type": "student", + "full_name": "Heras Osorno Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23454, + "fields": { + "user": null, + "account_number": "31351848", + "user_type": "student", + "full_name": "Arroyo Oviedo Vinik Uitzil Kytze" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23455, + "fields": { + "user": null, + "account_number": "31262251", + "user_type": "student", + "full_name": "Murillo Aceves Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23456, + "fields": { + "user": null, + "account_number": "31260564", + "user_type": "student", + "full_name": "Alceda Beltran Edgar Ian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23457, + "fields": { + "user": null, + "account_number": "31258676", + "user_type": "student", + "full_name": "Ayala Alonso Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23458, + "fields": { + "user": null, + "account_number": "31258367", + "user_type": "student", + "full_name": "Ortu¤o Hernandez Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23459, + "fields": { + "user": null, + "account_number": "31253956", + "user_type": "student", + "full_name": "OtaÑez Gonzalez Jose Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23460, + "fields": { + "user": null, + "account_number": "31235207", + "user_type": "student", + "full_name": "Terrones Fuentes Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23461, + "fields": { + "user": null, + "account_number": "31233245", + "user_type": "student", + "full_name": "BriseÑo Bartolon Jesus Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23462, + "fields": { + "user": null, + "account_number": "31233228", + "user_type": "student", + "full_name": "Berzunza Rodriguez Alondra Vanianinetl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23463, + "fields": { + "user": null, + "account_number": "31233162", + "user_type": "student", + "full_name": "Vazquez Osorio Akari Harumi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23464, + "fields": { + "user": null, + "account_number": "31232972", + "user_type": "student", + "full_name": "Rodriguez Balderas Edson Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23465, + "fields": { + "user": null, + "account_number": "31231716", + "user_type": "student", + "full_name": "Rodriguez Valdovinos Andrea Arlette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23466, + "fields": { + "user": null, + "account_number": "31231709", + "user_type": "student", + "full_name": "Rangel Olivares Thelma Karime" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23467, + "fields": { + "user": null, + "account_number": "31231708", + "user_type": "student", + "full_name": "Ramirez Maya Zahid Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23468, + "fields": { + "user": null, + "account_number": "31229161", + "user_type": "student", + "full_name": "CastaÑeda Landa Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23469, + "fields": { + "user": null, + "account_number": "31224763", + "user_type": "student", + "full_name": "Flores Alba Arely Estephany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23470, + "fields": { + "user": null, + "account_number": "31224037", + "user_type": "student", + "full_name": "Jimenez Reyes Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23471, + "fields": { + "user": null, + "account_number": "31224017", + "user_type": "student", + "full_name": "Herrera Arroyo Jimena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23472, + "fields": { + "user": null, + "account_number": "31223721", + "user_type": "student", + "full_name": "Zarraga Cruz Clemente Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23473, + "fields": { + "user": null, + "account_number": "31222684", + "user_type": "student", + "full_name": "PeÑafiel Milan Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23474, + "fields": { + "user": null, + "account_number": "31222631", + "user_type": "student", + "full_name": "OcaÑa Morales Leticia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23475, + "fields": { + "user": null, + "account_number": "31221719", + "user_type": "student", + "full_name": "Lopez Barahona Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23476, + "fields": { + "user": null, + "account_number": "31219692", + "user_type": "student", + "full_name": "Sanchez Gutierrez Hugo Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23477, + "fields": { + "user": null, + "account_number": "31219268", + "user_type": "student", + "full_name": "Estrada Barrientos Alexis Jafet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23478, + "fields": { + "user": null, + "account_number": "31218632", + "user_type": "student", + "full_name": "Lopez Alonso Eva Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23479, + "fields": { + "user": null, + "account_number": "31216959", + "user_type": "student", + "full_name": "Hernandez Aguilar Sandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23480, + "fields": { + "user": null, + "account_number": "31216331", + "user_type": "student", + "full_name": "Garcia Arenas Celeste" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23481, + "fields": { + "user": null, + "account_number": "31216313", + "user_type": "student", + "full_name": "Gutierrez Guadarrama Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23482, + "fields": { + "user": null, + "account_number": "31215900", + "user_type": "student", + "full_name": "Becerril Gonzalez Erick Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23483, + "fields": { + "user": null, + "account_number": "31215280", + "user_type": "student", + "full_name": "Carrera Chazari Luis Rey" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23484, + "fields": { + "user": null, + "account_number": "31215266", + "user_type": "student", + "full_name": "Becerril Martinez Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23485, + "fields": { + "user": null, + "account_number": "31214718", + "user_type": "student", + "full_name": "Velazquez Gonzalez Diana Yadira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23486, + "fields": { + "user": null, + "account_number": "31213855", + "user_type": "student", + "full_name": "Moreno Zavala Karla Monzerrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23487, + "fields": { + "user": null, + "account_number": "31213801", + "user_type": "student", + "full_name": "Mayen Pantaleon Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23488, + "fields": { + "user": null, + "account_number": "31210697", + "user_type": "student", + "full_name": "Martinez Hernandez Diana Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23489, + "fields": { + "user": null, + "account_number": "31209905", + "user_type": "student", + "full_name": "Sandoval Valdez Daniela Mayte" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23490, + "fields": { + "user": null, + "account_number": "31209587", + "user_type": "student", + "full_name": "Chavez Fuentes Angel Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23491, + "fields": { + "user": null, + "account_number": "31208127", + "user_type": "student", + "full_name": "Cruz Vazquez Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23492, + "fields": { + "user": null, + "account_number": "31207305", + "user_type": "student", + "full_name": "Alegria Robles Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23493, + "fields": { + "user": null, + "account_number": "31205917", + "user_type": "student", + "full_name": "Sanchez Elizalde Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23494, + "fields": { + "user": null, + "account_number": "31205104", + "user_type": "student", + "full_name": "Lopez Perez Aime Cristina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23495, + "fields": { + "user": null, + "account_number": "31205055", + "user_type": "student", + "full_name": "Luna Malvaez Carlos Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23496, + "fields": { + "user": null, + "account_number": "31204622", + "user_type": "student", + "full_name": "Lopez Cuellar Ricardo Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23497, + "fields": { + "user": null, + "account_number": "31203357", + "user_type": "student", + "full_name": "Alvarez Espinosa De Los Monteros Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23498, + "fields": { + "user": null, + "account_number": "31201574", + "user_type": "student", + "full_name": "Martinez Rodriguez Daniela Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23499, + "fields": { + "user": null, + "account_number": "31200007", + "user_type": "student", + "full_name": "Rojas Gonzalez Doncan Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23500, + "fields": { + "user": null, + "account_number": "31167810", + "user_type": "student", + "full_name": "Mendez Vega Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23501, + "fields": { + "user": null, + "account_number": "31133721", + "user_type": "student", + "full_name": "Alcantara Ferra Roberto Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23502, + "fields": { + "user": null, + "account_number": "31131615", + "user_type": "student", + "full_name": "Aguilar Lara Haydee" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23503, + "fields": { + "user": null, + "account_number": "31130735", + "user_type": "student", + "full_name": "Pineda Alvarado Isai Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23504, + "fields": { + "user": null, + "account_number": "31130595", + "user_type": "student", + "full_name": "Martinez Garcia Diana Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23505, + "fields": { + "user": null, + "account_number": "31130567", + "user_type": "student", + "full_name": "Martinez Santiago Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23506, + "fields": { + "user": null, + "account_number": "31130471", + "user_type": "student", + "full_name": "Vega Arellano Erick Silverio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23507, + "fields": { + "user": null, + "account_number": "31129182", + "user_type": "student", + "full_name": "Hernandez Rojas Daniel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23508, + "fields": { + "user": null, + "account_number": "31127641", + "user_type": "student", + "full_name": "Godinez Serrano Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23509, + "fields": { + "user": null, + "account_number": "31127460", + "user_type": "student", + "full_name": "Centeno Rubio Cristian Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23510, + "fields": { + "user": null, + "account_number": "31122843", + "user_type": "student", + "full_name": "De Jesus Paredes Martha Dennis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23511, + "fields": { + "user": null, + "account_number": "31122561", + "user_type": "student", + "full_name": "Jimenez Tovar Jesus Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23512, + "fields": { + "user": null, + "account_number": "31122425", + "user_type": "student", + "full_name": "Hernandez De La Cruz Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23513, + "fields": { + "user": null, + "account_number": "31119064", + "user_type": "student", + "full_name": "Martinez Escalante Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23514, + "fields": { + "user": null, + "account_number": "31117685", + "user_type": "student", + "full_name": "Pogrebnyak Andriy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23515, + "fields": { + "user": null, + "account_number": "31116850", + "user_type": "student", + "full_name": "Villanueva Ortiz Edith Amaranta" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23516, + "fields": { + "user": null, + "account_number": "31114189", + "user_type": "student", + "full_name": "Vargas Huaracha Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23517, + "fields": { + "user": null, + "account_number": "31110935", + "user_type": "student", + "full_name": "Godinez PiÑa Griselda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23518, + "fields": { + "user": null, + "account_number": "31110930", + "user_type": "student", + "full_name": "Garcia Rodriguez Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23519, + "fields": { + "user": null, + "account_number": "31108868", + "user_type": "student", + "full_name": "Trujillo Romero Alan Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23520, + "fields": { + "user": null, + "account_number": "31108571", + "user_type": "student", + "full_name": "Ibarra Navarro Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23521, + "fields": { + "user": null, + "account_number": "31105573", + "user_type": "student", + "full_name": "Olivares Ramirez Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23522, + "fields": { + "user": null, + "account_number": "31101503", + "user_type": "student", + "full_name": "Sanchez Mejia Sandra Perla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23523, + "fields": { + "user": null, + "account_number": "31058818", + "user_type": "student", + "full_name": "Moreno Acosta Danya Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23524, + "fields": { + "user": null, + "account_number": "31033081", + "user_type": "student", + "full_name": "UreÑa Gama Luis Donaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23525, + "fields": { + "user": null, + "account_number": "31030114", + "user_type": "student", + "full_name": "Novales Lovera Ileana Regina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23526, + "fields": { + "user": null, + "account_number": "31021501", + "user_type": "student", + "full_name": "Pico Lara Alberto Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23527, + "fields": { + "user": null, + "account_number": "31013048", + "user_type": "student", + "full_name": "Ocomatl Velazquez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23528, + "fields": { + "user": null, + "account_number": "31012655", + "user_type": "student", + "full_name": "Novelo Montiel Eliott Hans" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23529, + "fields": { + "user": null, + "account_number": "31009480", + "user_type": "student", + "full_name": "GarduÑo Ochoa Solama" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23530, + "fields": { + "user": null, + "account_number": "31005851", + "user_type": "student", + "full_name": "Barrera Plancarte Penelope Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23531, + "fields": { + "user": null, + "account_number": "31001653", + "user_type": "student", + "full_name": "Alvarez Marin Mario Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23532, + "fields": { + "user": null, + "account_number": "31000348", + "user_type": "student", + "full_name": "Contreras Becerril Veronica Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23533, + "fields": { + "user": null, + "account_number": "30934604", + "user_type": "student", + "full_name": "Barbecho Urbina Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23534, + "fields": { + "user": null, + "account_number": "30931648", + "user_type": "student", + "full_name": "Tapia Ortega Sescia Celina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23535, + "fields": { + "user": null, + "account_number": "30931536", + "user_type": "student", + "full_name": "Suarez Ponce Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23536, + "fields": { + "user": null, + "account_number": "30927450", + "user_type": "student", + "full_name": "Mora Benitez Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23537, + "fields": { + "user": null, + "account_number": "30927078", + "user_type": "student", + "full_name": "Trejo Moreno Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23538, + "fields": { + "user": null, + "account_number": "30927046", + "user_type": "student", + "full_name": "Toribio Campos Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23539, + "fields": { + "user": null, + "account_number": "30925311", + "user_type": "student", + "full_name": "Mc Namara Gomez Karla Noemi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23540, + "fields": { + "user": null, + "account_number": "30921831", + "user_type": "student", + "full_name": "Islas Mendez Brando Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23541, + "fields": { + "user": null, + "account_number": "30917601", + "user_type": "student", + "full_name": "Hernandez Hernandez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23542, + "fields": { + "user": null, + "account_number": "30914861", + "user_type": "student", + "full_name": "Molina Gutierrez Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23543, + "fields": { + "user": null, + "account_number": "30909571", + "user_type": "student", + "full_name": "Aragon Arriaga Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23544, + "fields": { + "user": null, + "account_number": "30909486", + "user_type": "student", + "full_name": "Leyva Lopez Gustavo Ashley" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23545, + "fields": { + "user": null, + "account_number": "30907971", + "user_type": "student", + "full_name": "Garcia Camarena Wilevaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23546, + "fields": { + "user": null, + "account_number": "30906266", + "user_type": "student", + "full_name": "Anguiano Lara Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23547, + "fields": { + "user": null, + "account_number": "30829385", + "user_type": "student", + "full_name": "Manriquez Cano Kevin Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23548, + "fields": { + "user": null, + "account_number": "30828770", + "user_type": "student", + "full_name": "Martinez Velazquez Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23549, + "fields": { + "user": null, + "account_number": "30825581", + "user_type": "student", + "full_name": "Gonzalez Perez Oscar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23550, + "fields": { + "user": null, + "account_number": "30818798", + "user_type": "student", + "full_name": "Aguirre Soto Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23551, + "fields": { + "user": null, + "account_number": "30813223", + "user_type": "student", + "full_name": "Montoya Valdez Carmen Denisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23552, + "fields": { + "user": null, + "account_number": "30807570", + "user_type": "student", + "full_name": "Francisco Hernandez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23553, + "fields": { + "user": null, + "account_number": "30805263", + "user_type": "student", + "full_name": "Gutierrez Gonzalez Eder" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23554, + "fields": { + "user": null, + "account_number": "30800472", + "user_type": "student", + "full_name": "Gomez Galindo Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23555, + "fields": { + "user": null, + "account_number": "30800358", + "user_type": "student", + "full_name": "Cruz Navarrete Cristina Alinne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23556, + "fields": { + "user": null, + "account_number": "30728395", + "user_type": "student", + "full_name": "Sanchez Gonzalez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23557, + "fields": { + "user": null, + "account_number": "30727789", + "user_type": "student", + "full_name": "Rodriguez Anaya Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23558, + "fields": { + "user": null, + "account_number": "30720399", + "user_type": "student", + "full_name": "Ramirez Meza Abdiel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23559, + "fields": { + "user": null, + "account_number": "30709258", + "user_type": "student", + "full_name": "Guajardo Vela Carlos Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23560, + "fields": { + "user": null, + "account_number": "30708555", + "user_type": "student", + "full_name": "Hernandez Hernandez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23561, + "fields": { + "user": null, + "account_number": "30634419", + "user_type": "student", + "full_name": "Cruz Rivas Jessica Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23562, + "fields": { + "user": null, + "account_number": "30629121", + "user_type": "student", + "full_name": "Ortega Martinez Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23563, + "fields": { + "user": null, + "account_number": "30627564", + "user_type": "student", + "full_name": "Sanchez Muci¤o Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23564, + "fields": { + "user": null, + "account_number": "30614814", + "user_type": "student", + "full_name": "Castillo Pineda Angel Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23565, + "fields": { + "user": null, + "account_number": "30613537", + "user_type": "student", + "full_name": "Antonio Jeronimo Briseida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23566, + "fields": { + "user": null, + "account_number": "30527997", + "user_type": "student", + "full_name": "Macin Vanegas Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23567, + "fields": { + "user": null, + "account_number": "30516088", + "user_type": "student", + "full_name": "Velazquez Mora Juan Francisco Acatl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23568, + "fields": { + "user": null, + "account_number": "30417089", + "user_type": "student", + "full_name": "Alvear Jimenez Abraham Huitzilopochtli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23569, + "fields": { + "user": null, + "account_number": "30412703", + "user_type": "student", + "full_name": "Rodriguez Vazquez Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23570, + "fields": { + "user": null, + "account_number": "30324688", + "user_type": "student", + "full_name": "Ochoa Rodriguez Hector Edwin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23571, + "fields": { + "user": null, + "account_number": "30313433", + "user_type": "student", + "full_name": "Moreno Gonzalez Victor Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23572, + "fields": { + "user": null, + "account_number": "09928413", + "user_type": "student", + "full_name": "Ramos Valdes Luis Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23573, + "fields": { + "user": null, + "account_number": "09903248", + "user_type": "student", + "full_name": "Aguilar Salazar Fortino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23574, + "fields": { + "user": null, + "account_number": "09516447", + "user_type": "student", + "full_name": "Sanchez Castillo Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23575, + "fields": { + "user": null, + "account_number": "41449038", + "user_type": "student", + "full_name": "Ramirez Velasquez Julian Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23576, + "fields": { + "user": null, + "account_number": "41412860", + "user_type": "student", + "full_name": "Betancourt Acosta Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23577, + "fields": { + "user": null, + "account_number": "41411170", + "user_type": "student", + "full_name": "Antonio GarduÑo Junior" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23578, + "fields": { + "user": null, + "account_number": "41411093", + "user_type": "student", + "full_name": "Sanchez Gazpar Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23579, + "fields": { + "user": null, + "account_number": "41411078", + "user_type": "student", + "full_name": "Jurado Sandoval Pedro Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23580, + "fields": { + "user": null, + "account_number": "41411062", + "user_type": "student", + "full_name": "Fernadez Apolinar Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23581, + "fields": { + "user": null, + "account_number": "41411041", + "user_type": "student", + "full_name": "Rios Gonzalez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23582, + "fields": { + "user": null, + "account_number": "41411037", + "user_type": "student", + "full_name": "Gabriel Zamora Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23583, + "fields": { + "user": null, + "account_number": "41411003", + "user_type": "student", + "full_name": "Perez Franco Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23584, + "fields": { + "user": null, + "account_number": "41410983", + "user_type": "student", + "full_name": "Sanchez Sanchez Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23585, + "fields": { + "user": null, + "account_number": "41410952", + "user_type": "student", + "full_name": "Sanchez Alvizo Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23586, + "fields": { + "user": null, + "account_number": "41410864", + "user_type": "student", + "full_name": "Ramirez Salas Jonathan Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23587, + "fields": { + "user": null, + "account_number": "41410763", + "user_type": "student", + "full_name": "Olvera Rojas Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23588, + "fields": { + "user": null, + "account_number": "41410761", + "user_type": "student", + "full_name": "Garcia Ragazzo Zohemi Quetzal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23589, + "fields": { + "user": null, + "account_number": "41410745", + "user_type": "student", + "full_name": "Ortiz Mira Pedro Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23590, + "fields": { + "user": null, + "account_number": "41410717", + "user_type": "student", + "full_name": "Jimenez MuÑiz Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23591, + "fields": { + "user": null, + "account_number": "41410714", + "user_type": "student", + "full_name": "Chavez Bernal Alitzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23592, + "fields": { + "user": null, + "account_number": "41410700", + "user_type": "student", + "full_name": "Perez Moreno Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23593, + "fields": { + "user": null, + "account_number": "41410684", + "user_type": "student", + "full_name": "Herrera Reyes Jose Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23594, + "fields": { + "user": null, + "account_number": "41410680", + "user_type": "student", + "full_name": "Pedraza Huerta Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23595, + "fields": { + "user": null, + "account_number": "41410593", + "user_type": "student", + "full_name": "Quezada Jimenez Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23596, + "fields": { + "user": null, + "account_number": "41410585", + "user_type": "student", + "full_name": "Crispin Lopez Marcela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23597, + "fields": { + "user": null, + "account_number": "41410360", + "user_type": "student", + "full_name": "Paz Fuentes Carlos Erivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23598, + "fields": { + "user": null, + "account_number": "41410326", + "user_type": "student", + "full_name": "Sanchez Lomeli Liliana Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23599, + "fields": { + "user": null, + "account_number": "41410325", + "user_type": "student", + "full_name": "Vazquez Plata Rodrigo Yael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23600, + "fields": { + "user": null, + "account_number": "41410284", + "user_type": "student", + "full_name": "Roman Olmos Maria Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23601, + "fields": { + "user": null, + "account_number": "41410239", + "user_type": "student", + "full_name": "Sombrerero Varona Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23602, + "fields": { + "user": null, + "account_number": "41410225", + "user_type": "student", + "full_name": "Garcia Gonzalez Mireya" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23603, + "fields": { + "user": null, + "account_number": "41410206", + "user_type": "student", + "full_name": "Gonzalez Gonzalez Gibrann" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23604, + "fields": { + "user": null, + "account_number": "41410199", + "user_type": "student", + "full_name": "Jacuinde Flores Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23605, + "fields": { + "user": null, + "account_number": "41410189", + "user_type": "student", + "full_name": "Sosa Hernandez Erika" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23606, + "fields": { + "user": null, + "account_number": "41410187", + "user_type": "student", + "full_name": "Sanchez Escobar Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23607, + "fields": { + "user": null, + "account_number": "41410186", + "user_type": "student", + "full_name": "Cruz Ibarra Jazmin Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23608, + "fields": { + "user": null, + "account_number": "41410179", + "user_type": "student", + "full_name": "Armijo Alvarado Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23609, + "fields": { + "user": null, + "account_number": "41410015", + "user_type": "student", + "full_name": "Reyna Rangel Ignacio Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23610, + "fields": { + "user": null, + "account_number": "41410001", + "user_type": "student", + "full_name": "Garcia DueÑas Erick Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23611, + "fields": { + "user": null, + "account_number": "41409998", + "user_type": "student", + "full_name": "Gonzalez Alvarez Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23612, + "fields": { + "user": null, + "account_number": "41409979", + "user_type": "student", + "full_name": "Abad Najera Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23613, + "fields": { + "user": null, + "account_number": "41409896", + "user_type": "student", + "full_name": "Rivera Dominguez Carlos Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23614, + "fields": { + "user": null, + "account_number": "41409859", + "user_type": "student", + "full_name": "Peraza PiÑa Jorge Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23615, + "fields": { + "user": null, + "account_number": "41409839", + "user_type": "student", + "full_name": "Colmenares Mendoza Oscar Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23616, + "fields": { + "user": null, + "account_number": "41409829", + "user_type": "student", + "full_name": "Ramirez Figueroa Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23617, + "fields": { + "user": null, + "account_number": "41409823", + "user_type": "student", + "full_name": "Lopez Rojas Ana Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23618, + "fields": { + "user": null, + "account_number": "41409812", + "user_type": "student", + "full_name": "Lopez Santiago Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23619, + "fields": { + "user": null, + "account_number": "41409806", + "user_type": "student", + "full_name": "Garmendia Lopez Cristian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23620, + "fields": { + "user": null, + "account_number": "41409781", + "user_type": "student", + "full_name": "Evaristo Marin Abner Zuriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23621, + "fields": { + "user": null, + "account_number": "41409735", + "user_type": "student", + "full_name": "Jimenez Pineda Julio Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23622, + "fields": { + "user": null, + "account_number": "41409724", + "user_type": "student", + "full_name": "Ortega Vite Miguel Angel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23623, + "fields": { + "user": null, + "account_number": "41409635", + "user_type": "student", + "full_name": "Nava Ramirez Cinthia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23624, + "fields": { + "user": null, + "account_number": "41409494", + "user_type": "student", + "full_name": "Huertas Garcia Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23625, + "fields": { + "user": null, + "account_number": "41409425", + "user_type": "student", + "full_name": "Moreno Monroy Sharon Krystal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23626, + "fields": { + "user": null, + "account_number": "41409389", + "user_type": "student", + "full_name": "Flores Ruiz Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23627, + "fields": { + "user": null, + "account_number": "41409358", + "user_type": "student", + "full_name": "Ruiz Garcia Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23628, + "fields": { + "user": null, + "account_number": "41409353", + "user_type": "student", + "full_name": "Vargas Ramirez Ulises Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23629, + "fields": { + "user": null, + "account_number": "41409294", + "user_type": "student", + "full_name": "Valdespino Vega Jesimiel Arbelbirai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23630, + "fields": { + "user": null, + "account_number": "41409223", + "user_type": "student", + "full_name": "Vargas Villavicencio Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23631, + "fields": { + "user": null, + "account_number": "41409221", + "user_type": "student", + "full_name": "Juarez Sanchez Luis Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23632, + "fields": { + "user": null, + "account_number": "41409192", + "user_type": "student", + "full_name": "Jimenez Ruiz Jessica Yadira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23633, + "fields": { + "user": null, + "account_number": "41409187", + "user_type": "student", + "full_name": "Sotero Sanchez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23634, + "fields": { + "user": null, + "account_number": "41409173", + "user_type": "student", + "full_name": "Perez Perez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23635, + "fields": { + "user": null, + "account_number": "41409159", + "user_type": "student", + "full_name": "Baltazar Alejo Daniela Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23636, + "fields": { + "user": null, + "account_number": "41409091", + "user_type": "student", + "full_name": "Sanchez Mauleon Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23637, + "fields": { + "user": null, + "account_number": "41409090", + "user_type": "student", + "full_name": "Ramos Rojas Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23638, + "fields": { + "user": null, + "account_number": "41409083", + "user_type": "student", + "full_name": "Salas Gomez Victor Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23639, + "fields": { + "user": null, + "account_number": "41409081", + "user_type": "student", + "full_name": "Limon Morales Stephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23640, + "fields": { + "user": null, + "account_number": "41408964", + "user_type": "student", + "full_name": "Ramirez Garcia Cinthia Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23641, + "fields": { + "user": null, + "account_number": "41408960", + "user_type": "student", + "full_name": "Escudero Avelino Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23642, + "fields": { + "user": null, + "account_number": "41408959", + "user_type": "student", + "full_name": "Erick Veliz Nava" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23643, + "fields": { + "user": null, + "account_number": "41408950", + "user_type": "student", + "full_name": "Garcia Garcia Edi Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23644, + "fields": { + "user": null, + "account_number": "41408940", + "user_type": "student", + "full_name": "Tapia Rosas Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23645, + "fields": { + "user": null, + "account_number": "41408902", + "user_type": "student", + "full_name": "Lopez Ayala Guillermo Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23646, + "fields": { + "user": null, + "account_number": "41408891", + "user_type": "student", + "full_name": "PeÑaloza Villa Karla Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23647, + "fields": { + "user": null, + "account_number": "41408825", + "user_type": "student", + "full_name": "Garcia Ginez Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23648, + "fields": { + "user": null, + "account_number": "41408814", + "user_type": "student", + "full_name": "Hernandez Jarillo Lizbet Guisela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23649, + "fields": { + "user": null, + "account_number": "41408811", + "user_type": "student", + "full_name": "Hernandez Pallares Sharon Aide" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23650, + "fields": { + "user": null, + "account_number": "41408712", + "user_type": "student", + "full_name": "Rivera Arroyo Diego Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23651, + "fields": { + "user": null, + "account_number": "41408686", + "user_type": "student", + "full_name": "Arazueta Becerra Cynthia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23652, + "fields": { + "user": null, + "account_number": "41408673", + "user_type": "student", + "full_name": "Galvan Corona Ignacio Dan Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23653, + "fields": { + "user": null, + "account_number": "41408660", + "user_type": "student", + "full_name": "Hernandez Sanchez Cynthia Yuridia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23654, + "fields": { + "user": null, + "account_number": "41408648", + "user_type": "student", + "full_name": "Lopez Monroy Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23655, + "fields": { + "user": null, + "account_number": "41408607", + "user_type": "student", + "full_name": "Perez Rangel Martha Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23656, + "fields": { + "user": null, + "account_number": "41408593", + "user_type": "student", + "full_name": "Nieto Fonseca Hector Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23657, + "fields": { + "user": null, + "account_number": "41408577", + "user_type": "student", + "full_name": "Zepeda Martinez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23658, + "fields": { + "user": null, + "account_number": "41408563", + "user_type": "student", + "full_name": "Gonzalez Hernandez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23659, + "fields": { + "user": null, + "account_number": "41408558", + "user_type": "student", + "full_name": "Rodriguez Santiago Angel Ezequiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23660, + "fields": { + "user": null, + "account_number": "41408552", + "user_type": "student", + "full_name": "Reyes Mercado Itzayana Yomali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23661, + "fields": { + "user": null, + "account_number": "41408380", + "user_type": "student", + "full_name": "Villalbazo Nussbaumer Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23662, + "fields": { + "user": null, + "account_number": "41408341", + "user_type": "student", + "full_name": "Ramirez Juarez Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23663, + "fields": { + "user": null, + "account_number": "41408246", + "user_type": "student", + "full_name": "Zarate Anzures Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23664, + "fields": { + "user": null, + "account_number": "41408178", + "user_type": "student", + "full_name": "Malagon Sanchez Daniel Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23665, + "fields": { + "user": null, + "account_number": "41408156", + "user_type": "student", + "full_name": "Alvarez Campos Victor Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23666, + "fields": { + "user": null, + "account_number": "41408106", + "user_type": "student", + "full_name": "Luna Velazquez Nancy Lisset" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23667, + "fields": { + "user": null, + "account_number": "41408060", + "user_type": "student", + "full_name": "Flores Villanueva Emmanuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23668, + "fields": { + "user": null, + "account_number": "41407917", + "user_type": "student", + "full_name": "Lopez Hernandez Fernanda Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23669, + "fields": { + "user": null, + "account_number": "41407845", + "user_type": "student", + "full_name": "Vallejo Gutierrez Luis Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23670, + "fields": { + "user": null, + "account_number": "41407801", + "user_type": "student", + "full_name": "Mendoza Ramirez Lizbet Citlalli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23671, + "fields": { + "user": null, + "account_number": "41407746", + "user_type": "student", + "full_name": "Navarrete Meza Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23672, + "fields": { + "user": null, + "account_number": "41407687", + "user_type": "student", + "full_name": "Barbosa Martinez Sergio Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23673, + "fields": { + "user": null, + "account_number": "41407632", + "user_type": "student", + "full_name": "MontaÑo Hernandez Ana Claudia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23674, + "fields": { + "user": null, + "account_number": "41407610", + "user_type": "student", + "full_name": "Garcia Perez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23675, + "fields": { + "user": null, + "account_number": "41407581", + "user_type": "student", + "full_name": "Ramirez Acosta Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23676, + "fields": { + "user": null, + "account_number": "41407531", + "user_type": "student", + "full_name": "Martinez Rojo Josue Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23677, + "fields": { + "user": null, + "account_number": "41407496", + "user_type": "student", + "full_name": "Herrera Del Angel Diana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23678, + "fields": { + "user": null, + "account_number": "41407495", + "user_type": "student", + "full_name": "Perez Bernal Adan Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23679, + "fields": { + "user": null, + "account_number": "41407433", + "user_type": "student", + "full_name": "Rivero CabaÑas Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23680, + "fields": { + "user": null, + "account_number": "41407409", + "user_type": "student", + "full_name": "Castillo Lopez Felix Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23681, + "fields": { + "user": null, + "account_number": "41407388", + "user_type": "student", + "full_name": "Ancheita Cortez Mario Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23682, + "fields": { + "user": null, + "account_number": "41407386", + "user_type": "student", + "full_name": "Sanchez Robles Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23683, + "fields": { + "user": null, + "account_number": "41407342", + "user_type": "student", + "full_name": "Garcia Balderas Yasmin Moncerrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23684, + "fields": { + "user": null, + "account_number": "41407321", + "user_type": "student", + "full_name": "Ledo MuÑoz Wendy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23685, + "fields": { + "user": null, + "account_number": "41407282", + "user_type": "student", + "full_name": "Padilla Aleman Dania Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23686, + "fields": { + "user": null, + "account_number": "41407276", + "user_type": "student", + "full_name": "Cisneros IbaÑez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23687, + "fields": { + "user": null, + "account_number": "41407264", + "user_type": "student", + "full_name": "Suarez Osornio Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23688, + "fields": { + "user": null, + "account_number": "41407239", + "user_type": "student", + "full_name": "Garcia Lozano Monica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23689, + "fields": { + "user": null, + "account_number": "41407208", + "user_type": "student", + "full_name": "Cruz Tolentino Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23690, + "fields": { + "user": null, + "account_number": "41407159", + "user_type": "student", + "full_name": "Jimenez Castro Kevin Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23691, + "fields": { + "user": null, + "account_number": "41407124", + "user_type": "student", + "full_name": "Jaime Jaimes Jaime" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23692, + "fields": { + "user": null, + "account_number": "41406971", + "user_type": "student", + "full_name": "Martinez Bautista Eliseo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23693, + "fields": { + "user": null, + "account_number": "41406966", + "user_type": "student", + "full_name": "Garcia Lara Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23694, + "fields": { + "user": null, + "account_number": "41406960", + "user_type": "student", + "full_name": "Cedillo Rosillo Michelle Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23695, + "fields": { + "user": null, + "account_number": "41406948", + "user_type": "student", + "full_name": "Morales Lopez Johana Melissa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23696, + "fields": { + "user": null, + "account_number": "41406907", + "user_type": "student", + "full_name": "Cardenas Pineda Korinna Danae" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23697, + "fields": { + "user": null, + "account_number": "41406882", + "user_type": "student", + "full_name": "Reyes Solis Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23698, + "fields": { + "user": null, + "account_number": "41406829", + "user_type": "student", + "full_name": "Torres Marcial David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23699, + "fields": { + "user": null, + "account_number": "41406789", + "user_type": "student", + "full_name": "Bermudez Dominguez Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23700, + "fields": { + "user": null, + "account_number": "41406773", + "user_type": "student", + "full_name": "Reyes Bautista Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23701, + "fields": { + "user": null, + "account_number": "41406708", + "user_type": "student", + "full_name": "CureÑo Monroy Jose Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23702, + "fields": { + "user": null, + "account_number": "41406699", + "user_type": "student", + "full_name": "Valenzuela Lopez Maria Teresa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23703, + "fields": { + "user": null, + "account_number": "41406616", + "user_type": "student", + "full_name": "Ramirez Resendiz Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23704, + "fields": { + "user": null, + "account_number": "41406547", + "user_type": "student", + "full_name": "Rebollar Hernandez Aaron Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23705, + "fields": { + "user": null, + "account_number": "41406522", + "user_type": "student", + "full_name": "Santiago Pacheco Jesus Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23706, + "fields": { + "user": null, + "account_number": "41406463", + "user_type": "student", + "full_name": "Sanchez Ramirez Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23707, + "fields": { + "user": null, + "account_number": "41406426", + "user_type": "student", + "full_name": "Magos Rivera Rafael Quetzal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23708, + "fields": { + "user": null, + "account_number": "41406398", + "user_type": "student", + "full_name": "Gomez Jimenez Sandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23709, + "fields": { + "user": null, + "account_number": "41406320", + "user_type": "student", + "full_name": "Cruz Gonzalez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23710, + "fields": { + "user": null, + "account_number": "41406197", + "user_type": "student", + "full_name": "Arciniega Gonzalez Julian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23711, + "fields": { + "user": null, + "account_number": "41406096", + "user_type": "student", + "full_name": "Casas Saucedo Ilse Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23712, + "fields": { + "user": null, + "account_number": "41406080", + "user_type": "student", + "full_name": "Negron Garcia Alejandro Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23713, + "fields": { + "user": null, + "account_number": "41406022", + "user_type": "student", + "full_name": "Rios Torres Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23714, + "fields": { + "user": null, + "account_number": "41406018", + "user_type": "student", + "full_name": "Rodriguez Velasquez Luis Teodoro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23715, + "fields": { + "user": null, + "account_number": "41406017", + "user_type": "student", + "full_name": "Rivera Herrada Juan Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23716, + "fields": { + "user": null, + "account_number": "41406005", + "user_type": "student", + "full_name": "Lugo Rivera Sandra Del Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23717, + "fields": { + "user": null, + "account_number": "41405971", + "user_type": "student", + "full_name": "Del Bosque Mejia Andres Baruch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23718, + "fields": { + "user": null, + "account_number": "41405956", + "user_type": "student", + "full_name": "Ortiz Martinez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23719, + "fields": { + "user": null, + "account_number": "41405870", + "user_type": "student", + "full_name": "Mayorga Castillo Mariela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23720, + "fields": { + "user": null, + "account_number": "41405759", + "user_type": "student", + "full_name": "Hernandez Morales Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23721, + "fields": { + "user": null, + "account_number": "41405753", + "user_type": "student", + "full_name": "Zarco Nolasco Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23722, + "fields": { + "user": null, + "account_number": "41405412", + "user_type": "student", + "full_name": "Lopez Islas Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23723, + "fields": { + "user": null, + "account_number": "41405394", + "user_type": "student", + "full_name": "Flores Perez Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23724, + "fields": { + "user": null, + "account_number": "41405318", + "user_type": "student", + "full_name": "Contreras Chavez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23725, + "fields": { + "user": null, + "account_number": "41405034", + "user_type": "student", + "full_name": "Nava Montiel Itzayana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23726, + "fields": { + "user": null, + "account_number": "41404888", + "user_type": "student", + "full_name": "CastaÑeda Rea Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23727, + "fields": { + "user": null, + "account_number": "41404806", + "user_type": "student", + "full_name": "Lara Llanderal Diana Erendira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23728, + "fields": { + "user": null, + "account_number": "41404706", + "user_type": "student", + "full_name": "Martinez Rico Francisco Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23729, + "fields": { + "user": null, + "account_number": "41404676", + "user_type": "student", + "full_name": "Maqueda Gonzalez Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23730, + "fields": { + "user": null, + "account_number": "41404510", + "user_type": "student", + "full_name": "Mora Gutierrez Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23731, + "fields": { + "user": null, + "account_number": "41404499", + "user_type": "student", + "full_name": "Campos Gonzalez Adrian Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23732, + "fields": { + "user": null, + "account_number": "41404463", + "user_type": "student", + "full_name": "Matias Zapote Noel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23733, + "fields": { + "user": null, + "account_number": "41404421", + "user_type": "student", + "full_name": "Soto Osornio Arturo Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23734, + "fields": { + "user": null, + "account_number": "41404397", + "user_type": "student", + "full_name": "Cabrera Pico Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23735, + "fields": { + "user": null, + "account_number": "41404273", + "user_type": "student", + "full_name": "Palma Rodriguez Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23736, + "fields": { + "user": null, + "account_number": "41404270", + "user_type": "student", + "full_name": "Saules Lopez Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23737, + "fields": { + "user": null, + "account_number": "41403994", + "user_type": "student", + "full_name": "Herrera Ortega Sergio Abdiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23738, + "fields": { + "user": null, + "account_number": "41403976", + "user_type": "student", + "full_name": "Ramirez Gomez Sarai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23739, + "fields": { + "user": null, + "account_number": "41403963", + "user_type": "student", + "full_name": "Miguel Cardoso Diego Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23740, + "fields": { + "user": null, + "account_number": "41403962", + "user_type": "student", + "full_name": "BaÑos CarreÑo Abdiel Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23741, + "fields": { + "user": null, + "account_number": "41403753", + "user_type": "student", + "full_name": "Montes Diaz Diego Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23742, + "fields": { + "user": null, + "account_number": "41403692", + "user_type": "student", + "full_name": "Baez Canales Joatham Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23743, + "fields": { + "user": null, + "account_number": "41403680", + "user_type": "student", + "full_name": "Orozco Guilbert Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23744, + "fields": { + "user": null, + "account_number": "41403656", + "user_type": "student", + "full_name": "Flores Leon Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23745, + "fields": { + "user": null, + "account_number": "41403627", + "user_type": "student", + "full_name": "Beltran Canto Roberto David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23746, + "fields": { + "user": null, + "account_number": "41403415", + "user_type": "student", + "full_name": "Raul Cornejo Mancilla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23747, + "fields": { + "user": null, + "account_number": "41403320", + "user_type": "student", + "full_name": "Chavero Cuellar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23748, + "fields": { + "user": null, + "account_number": "41403252", + "user_type": "student", + "full_name": "Gomez Verdugo Pedro Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23749, + "fields": { + "user": null, + "account_number": "41403142", + "user_type": "student", + "full_name": "Garcia Martinez Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23750, + "fields": { + "user": null, + "account_number": "41402957", + "user_type": "student", + "full_name": "Hernandez Martinez Cosme" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23751, + "fields": { + "user": null, + "account_number": "41402940", + "user_type": "student", + "full_name": "Rodriguez Becerril David Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23752, + "fields": { + "user": null, + "account_number": "41402910", + "user_type": "student", + "full_name": "Gonzalez Medina Alan Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23753, + "fields": { + "user": null, + "account_number": "41402860", + "user_type": "student", + "full_name": "Cruz Villalobos Carlos Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23754, + "fields": { + "user": null, + "account_number": "41402857", + "user_type": "student", + "full_name": "NuÑez Diaz Diana Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23755, + "fields": { + "user": null, + "account_number": "41402856", + "user_type": "student", + "full_name": "Ortega Tapia Ricardo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23756, + "fields": { + "user": null, + "account_number": "41402795", + "user_type": "student", + "full_name": "Tourne Navarro Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23757, + "fields": { + "user": null, + "account_number": "41402740", + "user_type": "student", + "full_name": "Rivera Hernandez Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23758, + "fields": { + "user": null, + "account_number": "41402729", + "user_type": "student", + "full_name": "Gomez Carreto Cinthya Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23759, + "fields": { + "user": null, + "account_number": "41402725", + "user_type": "student", + "full_name": "Escobar Garcia Justo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23760, + "fields": { + "user": null, + "account_number": "41402720", + "user_type": "student", + "full_name": "Fernandez Hernandez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23761, + "fields": { + "user": null, + "account_number": "41402717", + "user_type": "student", + "full_name": "Cruz Trinidad Jorge Brayan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23762, + "fields": { + "user": null, + "account_number": "41402698", + "user_type": "student", + "full_name": "Vazquez Montoya Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23763, + "fields": { + "user": null, + "account_number": "41402656", + "user_type": "student", + "full_name": "Ramirez Martinez Sarai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23764, + "fields": { + "user": null, + "account_number": "41402462", + "user_type": "student", + "full_name": "Martinez Flores Mariela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23765, + "fields": { + "user": null, + "account_number": "41402431", + "user_type": "student", + "full_name": "Sanchez Martinez Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23766, + "fields": { + "user": null, + "account_number": "41402294", + "user_type": "student", + "full_name": "Ferrer Barrios Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23767, + "fields": { + "user": null, + "account_number": "41402269", + "user_type": "student", + "full_name": "Aquino Robles Kathia Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23768, + "fields": { + "user": null, + "account_number": "41402266", + "user_type": "student", + "full_name": "Barcenas Medina Dayranna Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23769, + "fields": { + "user": null, + "account_number": "41402166", + "user_type": "student", + "full_name": "Martinez Gonzalez Nayeli Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23770, + "fields": { + "user": null, + "account_number": "41402117", + "user_type": "student", + "full_name": "Sanchez De La Cruz Julio David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23771, + "fields": { + "user": null, + "account_number": "41402064", + "user_type": "student", + "full_name": "Marmolejo Perez Jose Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23772, + "fields": { + "user": null, + "account_number": "41402061", + "user_type": "student", + "full_name": "Hernandez Alcantara Kenneth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23773, + "fields": { + "user": null, + "account_number": "41402059", + "user_type": "student", + "full_name": "Cardona Vilchiz Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23774, + "fields": { + "user": null, + "account_number": "41402039", + "user_type": "student", + "full_name": "Ruiz Tec Jessica Airam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23775, + "fields": { + "user": null, + "account_number": "41402028", + "user_type": "student", + "full_name": "Moran Valerio Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23776, + "fields": { + "user": null, + "account_number": "41401748", + "user_type": "student", + "full_name": "Delgado Arias Juan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23777, + "fields": { + "user": null, + "account_number": "41401701", + "user_type": "student", + "full_name": "Pineda Gonzalez Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23778, + "fields": { + "user": null, + "account_number": "41401672", + "user_type": "student", + "full_name": "De La Vega Rabago Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23779, + "fields": { + "user": null, + "account_number": "41401669", + "user_type": "student", + "full_name": "Gonzalez Sanchez Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23780, + "fields": { + "user": null, + "account_number": "41401620", + "user_type": "student", + "full_name": "Leon Flores Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23781, + "fields": { + "user": null, + "account_number": "41401601", + "user_type": "student", + "full_name": "Martinez Molina Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23782, + "fields": { + "user": null, + "account_number": "41401565", + "user_type": "student", + "full_name": "Cruz Juarez Diego Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23783, + "fields": { + "user": null, + "account_number": "41401502", + "user_type": "student", + "full_name": "Lorenzo Hernandez Rosa Isela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23784, + "fields": { + "user": null, + "account_number": "41401439", + "user_type": "student", + "full_name": "Castillo Vazquez Jordan Givet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23785, + "fields": { + "user": null, + "account_number": "41401369", + "user_type": "student", + "full_name": "Martinez Spinoso Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23786, + "fields": { + "user": null, + "account_number": "41401368", + "user_type": "student", + "full_name": "Trinidad Perez Angelo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23787, + "fields": { + "user": null, + "account_number": "41401357", + "user_type": "student", + "full_name": "Ortega Baro Ariadna Quetzally" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23788, + "fields": { + "user": null, + "account_number": "41401227", + "user_type": "student", + "full_name": "Garcia Mejia Victor Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23789, + "fields": { + "user": null, + "account_number": "41401203", + "user_type": "student", + "full_name": "Colin Ortiz Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23790, + "fields": { + "user": null, + "account_number": "41401186", + "user_type": "student", + "full_name": "Hernandez Torres Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23791, + "fields": { + "user": null, + "account_number": "41401177", + "user_type": "student", + "full_name": "Costela Gomez Ana Tamara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23792, + "fields": { + "user": null, + "account_number": "41401134", + "user_type": "student", + "full_name": "Jimenez Flores Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23793, + "fields": { + "user": null, + "account_number": "41401082", + "user_type": "student", + "full_name": "Reyes Sanabria Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23794, + "fields": { + "user": null, + "account_number": "41401062", + "user_type": "student", + "full_name": "Rufino Vazquez Eduardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23795, + "fields": { + "user": null, + "account_number": "41401043", + "user_type": "student", + "full_name": "Contreras Espinosa Lizbeth Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23796, + "fields": { + "user": null, + "account_number": "41401017", + "user_type": "student", + "full_name": "Peralta Curiel Claudia Natali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23797, + "fields": { + "user": null, + "account_number": "41400982", + "user_type": "student", + "full_name": "Fuentes Soto Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23798, + "fields": { + "user": null, + "account_number": "41400768", + "user_type": "student", + "full_name": "Molina Mendoza Gustavo Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23799, + "fields": { + "user": null, + "account_number": "41400767", + "user_type": "student", + "full_name": "Guzman Rodriguez Catalino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23800, + "fields": { + "user": null, + "account_number": "41400712", + "user_type": "student", + "full_name": "Rangel Avalos Felipe De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23801, + "fields": { + "user": null, + "account_number": "41400654", + "user_type": "student", + "full_name": "Castellanos Hernandez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23802, + "fields": { + "user": null, + "account_number": "41400586", + "user_type": "student", + "full_name": "Carreon Cortes Daniel Baruch" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23803, + "fields": { + "user": null, + "account_number": "41400453", + "user_type": "student", + "full_name": "Hernandez Tirado Arturo Erubiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23804, + "fields": { + "user": null, + "account_number": "41400442", + "user_type": "student", + "full_name": "Feliciano Avelino Ivan Raymundo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23805, + "fields": { + "user": null, + "account_number": "41400418", + "user_type": "student", + "full_name": "Hernandez Gonzalez Lisette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23806, + "fields": { + "user": null, + "account_number": "41400414", + "user_type": "student", + "full_name": "Lopez Garcia Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23807, + "fields": { + "user": null, + "account_number": "41400412", + "user_type": "student", + "full_name": "Lopez Lescas Betsabe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23808, + "fields": { + "user": null, + "account_number": "41400404", + "user_type": "student", + "full_name": "Cortes Romero Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23809, + "fields": { + "user": null, + "account_number": "41400401", + "user_type": "student", + "full_name": "Vega Corona Barbara Sarahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23810, + "fields": { + "user": null, + "account_number": "41400394", + "user_type": "student", + "full_name": "Ramirez Acosta Kendra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23811, + "fields": { + "user": null, + "account_number": "41400329", + "user_type": "student", + "full_name": "Gonzalez Rodriguez Alma Nanyeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23812, + "fields": { + "user": null, + "account_number": "41400314", + "user_type": "student", + "full_name": "Ruelas Gomez Emmanuel Yaret" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23813, + "fields": { + "user": null, + "account_number": "41400300", + "user_type": "student", + "full_name": "Rivas Villa Roberto Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23814, + "fields": { + "user": null, + "account_number": "41400294", + "user_type": "student", + "full_name": "Mondragon Ramirez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23815, + "fields": { + "user": null, + "account_number": "41400242", + "user_type": "student", + "full_name": "Santiago Marquez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23816, + "fields": { + "user": null, + "account_number": "41400218", + "user_type": "student", + "full_name": "Valencia Rodriguez Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23817, + "fields": { + "user": null, + "account_number": "41400165", + "user_type": "student", + "full_name": "Sanchez Garcia Martha Adilene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23818, + "fields": { + "user": null, + "account_number": "41110024", + "user_type": "student", + "full_name": "Delgado Flores Arturo Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23819, + "fields": { + "user": null, + "account_number": "41001103", + "user_type": "student", + "full_name": "Castillo Medina Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23820, + "fields": { + "user": null, + "account_number": "40909384", + "user_type": "student", + "full_name": "Fragoso Barrera Reyes" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23821, + "fields": { + "user": null, + "account_number": "40503219", + "user_type": "student", + "full_name": "Zu&iga Gonzalez Eber Tecamatzin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23822, + "fields": { + "user": null, + "account_number": "31170646", + "user_type": "student", + "full_name": "Hernandez MartiÑon Laura Giovanna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23823, + "fields": { + "user": null, + "account_number": "31170480", + "user_type": "student", + "full_name": "Sanchez Rivera Josue Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23824, + "fields": { + "user": null, + "account_number": "31166246", + "user_type": "student", + "full_name": "Granados Cid Victor Mohadib" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23825, + "fields": { + "user": null, + "account_number": "31163947", + "user_type": "student", + "full_name": "Esparza Lomeli Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23826, + "fields": { + "user": null, + "account_number": "31163397", + "user_type": "student", + "full_name": "Flores Oscos Ana Lorena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23827, + "fields": { + "user": null, + "account_number": "31161508", + "user_type": "student", + "full_name": "Flores Paredes Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23828, + "fields": { + "user": null, + "account_number": "31161389", + "user_type": "student", + "full_name": "Cuadrado Vilchis Luis Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23829, + "fields": { + "user": null, + "account_number": "31160682", + "user_type": "student", + "full_name": "Espinosa Lima Limary Azul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23830, + "fields": { + "user": null, + "account_number": "31159186", + "user_type": "student", + "full_name": "Gonzalez Santillan Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23831, + "fields": { + "user": null, + "account_number": "31155299", + "user_type": "student", + "full_name": "Ledon Chavez Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23832, + "fields": { + "user": null, + "account_number": "31133605", + "user_type": "student", + "full_name": "Sanchez Chavez Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23833, + "fields": { + "user": null, + "account_number": "31132606", + "user_type": "student", + "full_name": "Palacios Martinez Edgar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23834, + "fields": { + "user": null, + "account_number": "31131333", + "user_type": "student", + "full_name": "Soberanes Reyes Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23835, + "fields": { + "user": null, + "account_number": "31130803", + "user_type": "student", + "full_name": "Rivas Mendoza Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23836, + "fields": { + "user": null, + "account_number": "31130685", + "user_type": "student", + "full_name": "Mendez Gonzalez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23837, + "fields": { + "user": null, + "account_number": "31128232", + "user_type": "student", + "full_name": "Garcia Reyes Shamir Iran" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23838, + "fields": { + "user": null, + "account_number": "31123113", + "user_type": "student", + "full_name": "Martinez Cantu Cesar Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23839, + "fields": { + "user": null, + "account_number": "31122554", + "user_type": "student", + "full_name": "Leon Martinez Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23840, + "fields": { + "user": null, + "account_number": "31122398", + "user_type": "student", + "full_name": "Garcia Gonzalez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23841, + "fields": { + "user": null, + "account_number": "31122336", + "user_type": "student", + "full_name": "Gomez Ramirez Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23842, + "fields": { + "user": null, + "account_number": "31122335", + "user_type": "student", + "full_name": "Gomez Gutierrez Brandon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23843, + "fields": { + "user": null, + "account_number": "31114332", + "user_type": "student", + "full_name": "Cruz Maya Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23844, + "fields": { + "user": null, + "account_number": "31113668", + "user_type": "student", + "full_name": "Cortes Tomate Vanesa Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23845, + "fields": { + "user": null, + "account_number": "31113654", + "user_type": "student", + "full_name": "Cruz Rodriguez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23846, + "fields": { + "user": null, + "account_number": "31113645", + "user_type": "student", + "full_name": "Cabrera PiÑon Fernando Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23847, + "fields": { + "user": null, + "account_number": "31113608", + "user_type": "student", + "full_name": "Bejarano Gonzalez Hector Mariano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23848, + "fields": { + "user": null, + "account_number": "31113460", + "user_type": "student", + "full_name": "Velasco Villegas Josue Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23849, + "fields": { + "user": null, + "account_number": "31111044", + "user_type": "student", + "full_name": "Lopez Zamora Eduardo Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23850, + "fields": { + "user": null, + "account_number": "31110598", + "user_type": "student", + "full_name": "Delgado Ledesma Kevin Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23851, + "fields": { + "user": null, + "account_number": "31108718", + "user_type": "student", + "full_name": "Olivera Aquino Karla Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23852, + "fields": { + "user": null, + "account_number": "31105454", + "user_type": "student", + "full_name": "Santana Chavez Jenniffer Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23853, + "fields": { + "user": null, + "account_number": "31105442", + "user_type": "student", + "full_name": "Solis Lopez Erick Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23854, + "fields": { + "user": null, + "account_number": "31104152", + "user_type": "student", + "full_name": "Sanchez Malagon Erick Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23855, + "fields": { + "user": null, + "account_number": "31103654", + "user_type": "student", + "full_name": "Hernandez Flores Araceli Sarai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23856, + "fields": { + "user": null, + "account_number": "31102238", + "user_type": "student", + "full_name": "Moctezuma Hernandez Cristian Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23857, + "fields": { + "user": null, + "account_number": "31101935", + "user_type": "student", + "full_name": "ZuÑiga Clemente Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23858, + "fields": { + "user": null, + "account_number": "31101006", + "user_type": "student", + "full_name": "PiÑa Rodriguez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23859, + "fields": { + "user": null, + "account_number": "31100919", + "user_type": "student", + "full_name": "Martinez Maldonado Sharon Yislem" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23860, + "fields": { + "user": null, + "account_number": "31100007", + "user_type": "student", + "full_name": "Suarez Quintero Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23861, + "fields": { + "user": null, + "account_number": "31061166", + "user_type": "student", + "full_name": "Duarte Lopez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23862, + "fields": { + "user": null, + "account_number": "31034800", + "user_type": "student", + "full_name": "Tellez Valverde Gerson Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23863, + "fields": { + "user": null, + "account_number": "31033242", + "user_type": "student", + "full_name": "Valtierra Iparrea Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23864, + "fields": { + "user": null, + "account_number": "31032910", + "user_type": "student", + "full_name": "Villela Hernandez Eva Aline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23865, + "fields": { + "user": null, + "account_number": "31029701", + "user_type": "student", + "full_name": "Perez Lopez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23866, + "fields": { + "user": null, + "account_number": "31029071", + "user_type": "student", + "full_name": "Vera Torales Moises Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23867, + "fields": { + "user": null, + "account_number": "31028715", + "user_type": "student", + "full_name": "Monroy Abarca Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23868, + "fields": { + "user": null, + "account_number": "31027969", + "user_type": "student", + "full_name": "Lambertini Estrada Paolo Alessandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23869, + "fields": { + "user": null, + "account_number": "31025622", + "user_type": "student", + "full_name": "Olvera OrdoÑez Jonathan Evaristo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23870, + "fields": { + "user": null, + "account_number": "31020502", + "user_type": "student", + "full_name": "Tamez Priego Jorge Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23871, + "fields": { + "user": null, + "account_number": "31017026", + "user_type": "student", + "full_name": "Quiroz Santillan Alberto David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23872, + "fields": { + "user": null, + "account_number": "31015923", + "user_type": "student", + "full_name": "Romero Machorro Adan Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23873, + "fields": { + "user": null, + "account_number": "31015411", + "user_type": "student", + "full_name": "Olvera Garcia Erick Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23874, + "fields": { + "user": null, + "account_number": "31013275", + "user_type": "student", + "full_name": "Sanchez Olayo Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23875, + "fields": { + "user": null, + "account_number": "31010364", + "user_type": "student", + "full_name": "Cruz Alvarez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23876, + "fields": { + "user": null, + "account_number": "31009356", + "user_type": "student", + "full_name": "Cano Aznar Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23877, + "fields": { + "user": null, + "account_number": "31008763", + "user_type": "student", + "full_name": "Alvarez Granados Julio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23878, + "fields": { + "user": null, + "account_number": "31008297", + "user_type": "student", + "full_name": "Guzman Tenorio Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23879, + "fields": { + "user": null, + "account_number": "31006473", + "user_type": "student", + "full_name": "Castillo Villegas Alexis Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23880, + "fields": { + "user": null, + "account_number": "31005509", + "user_type": "student", + "full_name": "Alcantara Ramirez Claudia Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23881, + "fields": { + "user": null, + "account_number": "31005453", + "user_type": "student", + "full_name": "Varela Arguelles Yoshio Miyagui" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23882, + "fields": { + "user": null, + "account_number": "31003150", + "user_type": "student", + "full_name": "Hernandez Morales Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23883, + "fields": { + "user": null, + "account_number": "30962986", + "user_type": "student", + "full_name": "Rangel Arredondo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23884, + "fields": { + "user": null, + "account_number": "30955382", + "user_type": "student", + "full_name": "Mendez Zepeda Hector Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23885, + "fields": { + "user": null, + "account_number": "30933391", + "user_type": "student", + "full_name": "Vazquez Galvan Javier Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23886, + "fields": { + "user": null, + "account_number": "30932309", + "user_type": "student", + "full_name": "Sandoval Torres Rolando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23887, + "fields": { + "user": null, + "account_number": "30929530", + "user_type": "student", + "full_name": "Ortega Castro Karina Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23888, + "fields": { + "user": null, + "account_number": "30929049", + "user_type": "student", + "full_name": "Jimenez Saenz Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23889, + "fields": { + "user": null, + "account_number": "30927818", + "user_type": "student", + "full_name": "Perez Rosales Yesenia Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23890, + "fields": { + "user": null, + "account_number": "30926964", + "user_type": "student", + "full_name": "Sandoval Esquivel Irma Teresa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23891, + "fields": { + "user": null, + "account_number": "30913996", + "user_type": "student", + "full_name": "Garcia Cornejo Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23892, + "fields": { + "user": null, + "account_number": "30911370", + "user_type": "student", + "full_name": "Cid Perez Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23893, + "fields": { + "user": null, + "account_number": "30910272", + "user_type": "student", + "full_name": "Cepeda Medina Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23894, + "fields": { + "user": null, + "account_number": "30909246", + "user_type": "student", + "full_name": "Cervantes Alarcon Eduardo Itzamna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23895, + "fields": { + "user": null, + "account_number": "30908710", + "user_type": "student", + "full_name": "Guzman Sanchez Jorge Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23896, + "fields": { + "user": null, + "account_number": "30906034", + "user_type": "student", + "full_name": "Barragan Rodriguez Mario Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23897, + "fields": { + "user": null, + "account_number": "30829389", + "user_type": "student", + "full_name": "Martinez Villanueva David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23898, + "fields": { + "user": null, + "account_number": "30827749", + "user_type": "student", + "full_name": "Serrano Robles Daniel Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23899, + "fields": { + "user": null, + "account_number": "30820851", + "user_type": "student", + "full_name": "Vidal Bravo Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23900, + "fields": { + "user": null, + "account_number": "30818873", + "user_type": "student", + "full_name": "Cortez Velez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23901, + "fields": { + "user": null, + "account_number": "30817368", + "user_type": "student", + "full_name": "Garcia Telesforo Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23902, + "fields": { + "user": null, + "account_number": "30817264", + "user_type": "student", + "full_name": "Fuentes Guido Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23903, + "fields": { + "user": null, + "account_number": "30815919", + "user_type": "student", + "full_name": "Estanislao GudiÑo Eduardo Mishell" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23904, + "fields": { + "user": null, + "account_number": "30815639", + "user_type": "student", + "full_name": "Trejo MagaÑa Saul Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23905, + "fields": { + "user": null, + "account_number": "30815603", + "user_type": "student", + "full_name": "Soriano Cervantes Elma Nidia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23906, + "fields": { + "user": null, + "account_number": "30807024", + "user_type": "student", + "full_name": "Mecott Anaya Rolando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23907, + "fields": { + "user": null, + "account_number": "30727713", + "user_type": "student", + "full_name": "Nieto Hernandez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23908, + "fields": { + "user": null, + "account_number": "30727416", + "user_type": "student", + "full_name": "Hernandez Castillo Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23909, + "fields": { + "user": null, + "account_number": "30720320", + "user_type": "student", + "full_name": "Quiroz Martinez Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23910, + "fields": { + "user": null, + "account_number": "30720310", + "user_type": "student", + "full_name": "OrduÑa Silva Alberto Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23911, + "fields": { + "user": null, + "account_number": "30709219", + "user_type": "student", + "full_name": "Gonzalez Ortiz Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23912, + "fields": { + "user": null, + "account_number": "30708370", + "user_type": "student", + "full_name": "Garcia Ignacio Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23913, + "fields": { + "user": null, + "account_number": "30628138", + "user_type": "student", + "full_name": "Lopez Ramirez Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23914, + "fields": { + "user": null, + "account_number": "30601178", + "user_type": "student", + "full_name": "Aguilar Hurtado Hector Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23915, + "fields": { + "user": null, + "account_number": "30519842", + "user_type": "student", + "full_name": "Medina Chavez Carlos Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23916, + "fields": { + "user": null, + "account_number": "30430135", + "user_type": "student", + "full_name": "Nieves MuÑoz Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23917, + "fields": { + "user": null, + "account_number": "30429793", + "user_type": "student", + "full_name": "Guerra Ortiz Moises Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23918, + "fields": { + "user": null, + "account_number": "30411783", + "user_type": "student", + "full_name": "Alvarado Galarza Norberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23919, + "fields": { + "user": null, + "account_number": "30316740", + "user_type": "student", + "full_name": "Catalan Guadalupe Anayelli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23920, + "fields": { + "user": null, + "account_number": "09740043", + "user_type": "student", + "full_name": "Moreno Jaramillo Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23921, + "fields": { + "user": null, + "account_number": "09416185", + "user_type": "student", + "full_name": "Jimenez Molina Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23922, + "fields": { + "user": null, + "account_number": "09411926", + "user_type": "student", + "full_name": "Herrera Favela Fidel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23923, + "fields": { + "user": null, + "account_number": "41311766", + "user_type": "student", + "full_name": "Perez Villanueva Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23924, + "fields": { + "user": null, + "account_number": "41311748", + "user_type": "student", + "full_name": "De La Cruz Arellano Carmen Virginia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23925, + "fields": { + "user": null, + "account_number": "41311682", + "user_type": "student", + "full_name": "Bartolo Valencia Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23926, + "fields": { + "user": null, + "account_number": "41311675", + "user_type": "student", + "full_name": "Vizueth Ramirez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23927, + "fields": { + "user": null, + "account_number": "41311617", + "user_type": "student", + "full_name": "Lima ViÑas Lidise Yuruem" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23928, + "fields": { + "user": null, + "account_number": "41311610", + "user_type": "student", + "full_name": "Alvarado Rojas Erika Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23929, + "fields": { + "user": null, + "account_number": "41311589", + "user_type": "student", + "full_name": "Manzanilla Allen Carlos Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23930, + "fields": { + "user": null, + "account_number": "41311588", + "user_type": "student", + "full_name": "Zaldivar Valdespino Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23931, + "fields": { + "user": null, + "account_number": "41311583", + "user_type": "student", + "full_name": "Cardenas Castañeda Sergio Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23932, + "fields": { + "user": null, + "account_number": "41311577", + "user_type": "student", + "full_name": "Flores Aguilar Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23933, + "fields": { + "user": null, + "account_number": "41311488", + "user_type": "student", + "full_name": "Contreras Salcido Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23934, + "fields": { + "user": null, + "account_number": "41311456", + "user_type": "student", + "full_name": "Hernandez Mateo Karla Natali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23935, + "fields": { + "user": null, + "account_number": "41311453", + "user_type": "student", + "full_name": "Monroy Huitron Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23936, + "fields": { + "user": null, + "account_number": "41311442", + "user_type": "student", + "full_name": "Lechuga Ramos Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23937, + "fields": { + "user": null, + "account_number": "41311374", + "user_type": "student", + "full_name": "Aguilar Uribe Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23938, + "fields": { + "user": null, + "account_number": "41311360", + "user_type": "student", + "full_name": "Galindo Pascual Mónica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23939, + "fields": { + "user": null, + "account_number": "41311356", + "user_type": "student", + "full_name": "Climaco Alegre Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23940, + "fields": { + "user": null, + "account_number": "41311306", + "user_type": "student", + "full_name": "Salazar Ortiz Laura Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23941, + "fields": { + "user": null, + "account_number": "41311286", + "user_type": "student", + "full_name": "Sanchez Romero Bryan Kenneth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23942, + "fields": { + "user": null, + "account_number": "41311271", + "user_type": "student", + "full_name": "Sanchez Alonso Areli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23943, + "fields": { + "user": null, + "account_number": "41311259", + "user_type": "student", + "full_name": "Heredia Sanchez Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23944, + "fields": { + "user": null, + "account_number": "41311244", + "user_type": "student", + "full_name": "Perez Guerrero Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23945, + "fields": { + "user": null, + "account_number": "41311229", + "user_type": "student", + "full_name": "Rios Alcazar Ana Lilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23946, + "fields": { + "user": null, + "account_number": "41311221", + "user_type": "student", + "full_name": "Ortiz Gutierrez Miguel Eugenio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23947, + "fields": { + "user": null, + "account_number": "41311213", + "user_type": "student", + "full_name": "Matias Lopez Jacobo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23948, + "fields": { + "user": null, + "account_number": "41311211", + "user_type": "student", + "full_name": "Mendoza Mendoza Gustavo Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23949, + "fields": { + "user": null, + "account_number": "41311183", + "user_type": "student", + "full_name": "Beltran Beltran Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23950, + "fields": { + "user": null, + "account_number": "41311179", + "user_type": "student", + "full_name": "Sanchez Ortega Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23951, + "fields": { + "user": null, + "account_number": "41311173", + "user_type": "student", + "full_name": "Gonzalez Resendiz Juan Cairo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23952, + "fields": { + "user": null, + "account_number": "41311170", + "user_type": "student", + "full_name": "Estefes Oliva Sinai Abihail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23953, + "fields": { + "user": null, + "account_number": "41311167", + "user_type": "student", + "full_name": "Benitez Fuentes Hugo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23954, + "fields": { + "user": null, + "account_number": "41311109", + "user_type": "student", + "full_name": "Jacobo Lara Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23955, + "fields": { + "user": null, + "account_number": "41311095", + "user_type": "student", + "full_name": "Marquez MuÑoz Diego Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23956, + "fields": { + "user": null, + "account_number": "41311093", + "user_type": "student", + "full_name": "Santiago Montes Emma Alicia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23957, + "fields": { + "user": null, + "account_number": "41311092", + "user_type": "student", + "full_name": "Sanchez Ramirez Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23958, + "fields": { + "user": null, + "account_number": "41311089", + "user_type": "student", + "full_name": "Calles Primitivo Jose Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23959, + "fields": { + "user": null, + "account_number": "41311040", + "user_type": "student", + "full_name": "Navarrete Jimenez Flor Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23960, + "fields": { + "user": null, + "account_number": "41311034", + "user_type": "student", + "full_name": "Valiente Garcia Daniel Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23961, + "fields": { + "user": null, + "account_number": "41311011", + "user_type": "student", + "full_name": "Jimenez Navarrete Rey Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23962, + "fields": { + "user": null, + "account_number": "41311002", + "user_type": "student", + "full_name": "Rosales Ochoa Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23963, + "fields": { + "user": null, + "account_number": "41310967", + "user_type": "student", + "full_name": "MuÑoz Camacho Vianey Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23964, + "fields": { + "user": null, + "account_number": "41310925", + "user_type": "student", + "full_name": "Perez Gonzalez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23965, + "fields": { + "user": null, + "account_number": "41310921", + "user_type": "student", + "full_name": "Martinez Ramirez Christian Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23966, + "fields": { + "user": null, + "account_number": "41310914", + "user_type": "student", + "full_name": "Morales Martinez Jose Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23967, + "fields": { + "user": null, + "account_number": "41310878", + "user_type": "student", + "full_name": "Arellano Busto Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23968, + "fields": { + "user": null, + "account_number": "41310851", + "user_type": "student", + "full_name": "Martinez Martinez Leticia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23969, + "fields": { + "user": null, + "account_number": "41310828", + "user_type": "student", + "full_name": "Amador Maldonado Lorena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23970, + "fields": { + "user": null, + "account_number": "41310810", + "user_type": "student", + "full_name": "Espinosa Arellano Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23971, + "fields": { + "user": null, + "account_number": "41310807", + "user_type": "student", + "full_name": "Moreno Lozano Ernesto Geovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23972, + "fields": { + "user": null, + "account_number": "41310763", + "user_type": "student", + "full_name": "Reyes Olguin Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23973, + "fields": { + "user": null, + "account_number": "41310755", + "user_type": "student", + "full_name": "Rodriguez Santana Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23974, + "fields": { + "user": null, + "account_number": "41310740", + "user_type": "student", + "full_name": "Molina Guevara Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23975, + "fields": { + "user": null, + "account_number": "41310723", + "user_type": "student", + "full_name": "Benitez Ramirez Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23976, + "fields": { + "user": null, + "account_number": "41310708", + "user_type": "student", + "full_name": "Flores Del Pino Oliver Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23977, + "fields": { + "user": null, + "account_number": "41310701", + "user_type": "student", + "full_name": "Hernandez Ramirez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23978, + "fields": { + "user": null, + "account_number": "41310699", + "user_type": "student", + "full_name": "Angeles Uribe Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23979, + "fields": { + "user": null, + "account_number": "41310696", + "user_type": "student", + "full_name": "Mendez Reyes Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23980, + "fields": { + "user": null, + "account_number": "41310689", + "user_type": "student", + "full_name": "Fernandez Martinez Balbino Eli Balbizim" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23981, + "fields": { + "user": null, + "account_number": "41310624", + "user_type": "student", + "full_name": "Ramirez Salinas Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23982, + "fields": { + "user": null, + "account_number": "41310597", + "user_type": "student", + "full_name": "Galeana Bermudez Ahide" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23983, + "fields": { + "user": null, + "account_number": "41310596", + "user_type": "student", + "full_name": "Sanchez Sanchez Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23984, + "fields": { + "user": null, + "account_number": "41310172", + "user_type": "student", + "full_name": "Hernandez Diaz Arline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23985, + "fields": { + "user": null, + "account_number": "41310145", + "user_type": "student", + "full_name": "Vallejo Gutierrez Luis Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23986, + "fields": { + "user": null, + "account_number": "41310121", + "user_type": "student", + "full_name": "NuÑez Leija Jocelyn Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23987, + "fields": { + "user": null, + "account_number": "41310091", + "user_type": "student", + "full_name": "Ortiz Uriostegui Sergio Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23988, + "fields": { + "user": null, + "account_number": "41310050", + "user_type": "student", + "full_name": "Sanchez Rosas Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23989, + "fields": { + "user": null, + "account_number": "41309986", + "user_type": "student", + "full_name": "Luna Antonio Maria Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23990, + "fields": { + "user": null, + "account_number": "41309975", + "user_type": "student", + "full_name": "Niembro Marquez Jose Valentin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23991, + "fields": { + "user": null, + "account_number": "41309947", + "user_type": "student", + "full_name": "Ventura Flores Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23992, + "fields": { + "user": null, + "account_number": "41309912", + "user_type": "student", + "full_name": "Luna Sanchez Alejandra Giselle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23993, + "fields": { + "user": null, + "account_number": "41309822", + "user_type": "student", + "full_name": "Simon Bautista Bertin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23994, + "fields": { + "user": null, + "account_number": "41309812", + "user_type": "student", + "full_name": "Becerril Santana Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23995, + "fields": { + "user": null, + "account_number": "41309770", + "user_type": "student", + "full_name": "Hermosillo Pacheco Mariem" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23996, + "fields": { + "user": null, + "account_number": "41309761", + "user_type": "student", + "full_name": "Cazares Camelo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23997, + "fields": { + "user": null, + "account_number": "41309706", + "user_type": "student", + "full_name": "Trejo Guerrero Brenda Jovana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23998, + "fields": { + "user": null, + "account_number": "41309697", + "user_type": "student", + "full_name": "Reyes Villa Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 23999, + "fields": { + "user": null, + "account_number": "41309693", + "user_type": "student", + "full_name": "Munguia Serrano Claudia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24000, + "fields": { + "user": null, + "account_number": "41309667", + "user_type": "student", + "full_name": "Castro Cabrera Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24001, + "fields": { + "user": null, + "account_number": "41309657", + "user_type": "student", + "full_name": "Lopez Hernandez Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24002, + "fields": { + "user": null, + "account_number": "41309603", + "user_type": "student", + "full_name": "Beltran Lopez Osbaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24003, + "fields": { + "user": null, + "account_number": "41309594", + "user_type": "student", + "full_name": "Perez Hernandez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24004, + "fields": { + "user": null, + "account_number": "41309546", + "user_type": "student", + "full_name": "Maya Sandoval Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24005, + "fields": { + "user": null, + "account_number": "41309542", + "user_type": "student", + "full_name": "Rodriguez Arenas Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24006, + "fields": { + "user": null, + "account_number": "41309537", + "user_type": "student", + "full_name": "Ortiz Galvan Christian Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24007, + "fields": { + "user": null, + "account_number": "41309516", + "user_type": "student", + "full_name": "Oropeza Bello Dalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24008, + "fields": { + "user": null, + "account_number": "41309504", + "user_type": "student", + "full_name": "Gonzalez Guerrero Emmanuel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24009, + "fields": { + "user": null, + "account_number": "41309490", + "user_type": "student", + "full_name": "Contreras Hernandez Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24010, + "fields": { + "user": null, + "account_number": "41309475", + "user_type": "student", + "full_name": "Espinosa De Los Monteros Harispuru Santiago Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24011, + "fields": { + "user": null, + "account_number": "41309377", + "user_type": "student", + "full_name": "Hernandez Gonzalez Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24012, + "fields": { + "user": null, + "account_number": "41309374", + "user_type": "student", + "full_name": "Madrigal Gil David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24013, + "fields": { + "user": null, + "account_number": "41309368", + "user_type": "student", + "full_name": "Gamboa Luna Adriana Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24014, + "fields": { + "user": null, + "account_number": "41309348", + "user_type": "student", + "full_name": "Martinez Reyes Brenda Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24015, + "fields": { + "user": null, + "account_number": "41309346", + "user_type": "student", + "full_name": "Rodriguez Chavez Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24016, + "fields": { + "user": null, + "account_number": "41309313", + "user_type": "student", + "full_name": "Murguia Robledo Manuel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24017, + "fields": { + "user": null, + "account_number": "41309202", + "user_type": "student", + "full_name": "Camorlinga Cobos Melissa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24018, + "fields": { + "user": null, + "account_number": "41309194", + "user_type": "student", + "full_name": "Elizondo Soto Marimar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24019, + "fields": { + "user": null, + "account_number": "41309177", + "user_type": "student", + "full_name": "Jaimes Dominguez Ricardo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24020, + "fields": { + "user": null, + "account_number": "41309173", + "user_type": "student", + "full_name": "Rios Perez Miguel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24021, + "fields": { + "user": null, + "account_number": "41309163", + "user_type": "student", + "full_name": "Gutierrez Ramos Harold Eliu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24022, + "fields": { + "user": null, + "account_number": "41309162", + "user_type": "student", + "full_name": "Dolores Lira Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24023, + "fields": { + "user": null, + "account_number": "41309160", + "user_type": "student", + "full_name": "Hernandez Alvarado Gregorio Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24024, + "fields": { + "user": null, + "account_number": "41309122", + "user_type": "student", + "full_name": "Minero Cantellan Karla" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24025, + "fields": { + "user": null, + "account_number": "41309090", + "user_type": "student", + "full_name": "Mora Zamora Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24026, + "fields": { + "user": null, + "account_number": "41309088", + "user_type": "student", + "full_name": "Arteaga Gonzalez Oscar Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24027, + "fields": { + "user": null, + "account_number": "41309063", + "user_type": "student", + "full_name": "Parra CastaÑeda Luis Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24028, + "fields": { + "user": null, + "account_number": "41308961", + "user_type": "student", + "full_name": "Robledo Flores Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24029, + "fields": { + "user": null, + "account_number": "41308956", + "user_type": "student", + "full_name": "Torres BolaÑos Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24030, + "fields": { + "user": null, + "account_number": "41308946", + "user_type": "student", + "full_name": "Garnica Loera Erick Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24031, + "fields": { + "user": null, + "account_number": "41308941", + "user_type": "student", + "full_name": "Nava Trejo Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24032, + "fields": { + "user": null, + "account_number": "41308918", + "user_type": "student", + "full_name": "Gomez Rebolledo Eleonor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24033, + "fields": { + "user": null, + "account_number": "41308853", + "user_type": "student", + "full_name": "Ramirez Reyes Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24034, + "fields": { + "user": null, + "account_number": "41308821", + "user_type": "student", + "full_name": "Felipe Romero Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24035, + "fields": { + "user": null, + "account_number": "41308816", + "user_type": "student", + "full_name": "Verona Miranda Eder" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24036, + "fields": { + "user": null, + "account_number": "41308774", + "user_type": "student", + "full_name": "Romero Corro Azahel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24037, + "fields": { + "user": null, + "account_number": "41308764", + "user_type": "student", + "full_name": "Leyva Espinoza Karla Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24038, + "fields": { + "user": null, + "account_number": "41308749", + "user_type": "student", + "full_name": "Nampula Martinez Mauricio Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24039, + "fields": { + "user": null, + "account_number": "41308708", + "user_type": "student", + "full_name": "Perez Reyes Ulises Ittay" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24040, + "fields": { + "user": null, + "account_number": "41308702", + "user_type": "student", + "full_name": "Perez Noguez Leidy Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24041, + "fields": { + "user": null, + "account_number": "41308691", + "user_type": "student", + "full_name": "Caballero Paredes Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24042, + "fields": { + "user": null, + "account_number": "41308626", + "user_type": "student", + "full_name": "Velasco Estrada Adolfo David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24043, + "fields": { + "user": null, + "account_number": "41308611", + "user_type": "student", + "full_name": "Vidals Rios Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24044, + "fields": { + "user": null, + "account_number": "41308514", + "user_type": "student", + "full_name": "Flores Cambron Alan Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24045, + "fields": { + "user": null, + "account_number": "41308480", + "user_type": "student", + "full_name": "Kuri Ramirez Ernesto Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24046, + "fields": { + "user": null, + "account_number": "41308440", + "user_type": "student", + "full_name": "Hernandez Lorenzo Julio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24047, + "fields": { + "user": null, + "account_number": "41308433", + "user_type": "student", + "full_name": "Escobar Loera Alma Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24048, + "fields": { + "user": null, + "account_number": "41308379", + "user_type": "student", + "full_name": "Segura Morales Ana Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24049, + "fields": { + "user": null, + "account_number": "41308365", + "user_type": "student", + "full_name": "Hernandez Zamorano Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24050, + "fields": { + "user": null, + "account_number": "41308294", + "user_type": "student", + "full_name": "Avila Cristobal Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24051, + "fields": { + "user": null, + "account_number": "41308247", + "user_type": "student", + "full_name": "Guerrero Garcia Luis Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24052, + "fields": { + "user": null, + "account_number": "41308225", + "user_type": "student", + "full_name": "Meneses Corona Bertin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24053, + "fields": { + "user": null, + "account_number": "41308216", + "user_type": "student", + "full_name": "Garzon Olvera Brenda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24054, + "fields": { + "user": null, + "account_number": "41308196", + "user_type": "student", + "full_name": "Nava OrdoÑez Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24055, + "fields": { + "user": null, + "account_number": "41308127", + "user_type": "student", + "full_name": "Reyes Cuevas Alejandro Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24056, + "fields": { + "user": null, + "account_number": "41308118", + "user_type": "student", + "full_name": "Morales Alvarez Swealen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24057, + "fields": { + "user": null, + "account_number": "41308104", + "user_type": "student", + "full_name": "Martinez Diaz Juan Cristobal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24058, + "fields": { + "user": null, + "account_number": "41308103", + "user_type": "student", + "full_name": "PeÑa Miranda Itzel Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24059, + "fields": { + "user": null, + "account_number": "41308041", + "user_type": "student", + "full_name": "Acosta Gutierrez Gamaliel Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24060, + "fields": { + "user": null, + "account_number": "41308029", + "user_type": "student", + "full_name": "Cruz Pineda Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24061, + "fields": { + "user": null, + "account_number": "41307990", + "user_type": "student", + "full_name": "Olvera Guzman Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24062, + "fields": { + "user": null, + "account_number": "41307964", + "user_type": "student", + "full_name": "Aguilar Morales Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24063, + "fields": { + "user": null, + "account_number": "41307936", + "user_type": "student", + "full_name": "Gonzalez Gervacio Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24064, + "fields": { + "user": null, + "account_number": "41307935", + "user_type": "student", + "full_name": "Becerril Bueno Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24065, + "fields": { + "user": null, + "account_number": "41307829", + "user_type": "student", + "full_name": "Morales Meza Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24066, + "fields": { + "user": null, + "account_number": "41307702", + "user_type": "student", + "full_name": "Bragansa Damm Joao Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24067, + "fields": { + "user": null, + "account_number": "41307690", + "user_type": "student", + "full_name": "Perez Gonzalez Joana Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24068, + "fields": { + "user": null, + "account_number": "41307686", + "user_type": "student", + "full_name": "Cortes Rocha Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24069, + "fields": { + "user": null, + "account_number": "41307637", + "user_type": "student", + "full_name": "Jimenez Gonzalez Jazmin Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24070, + "fields": { + "user": null, + "account_number": "41307577", + "user_type": "student", + "full_name": "Sanchez Villagomez Melary Elena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24071, + "fields": { + "user": null, + "account_number": "41307559", + "user_type": "student", + "full_name": "Rivera Valeriano Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24072, + "fields": { + "user": null, + "account_number": "41307538", + "user_type": "student", + "full_name": "Vazquez Ortiz Adan Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24073, + "fields": { + "user": null, + "account_number": "41307531", + "user_type": "student", + "full_name": "Morales Vargas Paola Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24074, + "fields": { + "user": null, + "account_number": "41307507", + "user_type": "student", + "full_name": "Gutierrez Diaz Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24075, + "fields": { + "user": null, + "account_number": "41307504", + "user_type": "student", + "full_name": "Quintana Contreras Eduardo Allan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24076, + "fields": { + "user": null, + "account_number": "41307445", + "user_type": "student", + "full_name": "Chavez Morales Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24077, + "fields": { + "user": null, + "account_number": "41307425", + "user_type": "student", + "full_name": "Ortiz Ramirez Claudia Leticia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24078, + "fields": { + "user": null, + "account_number": "41305459", + "user_type": "student", + "full_name": "Mejia Aldana Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24079, + "fields": { + "user": null, + "account_number": "41305440", + "user_type": "student", + "full_name": "Martinez Sosa Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24080, + "fields": { + "user": null, + "account_number": "41305233", + "user_type": "student", + "full_name": "Cardoso Vera Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24081, + "fields": { + "user": null, + "account_number": "41305198", + "user_type": "student", + "full_name": "Moreno Vargas Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24082, + "fields": { + "user": null, + "account_number": "41305194", + "user_type": "student", + "full_name": "Mateos Perez Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24083, + "fields": { + "user": null, + "account_number": "41305158", + "user_type": "student", + "full_name": "Carrillo Gonzalez Alfredo David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24084, + "fields": { + "user": null, + "account_number": "41305155", + "user_type": "student", + "full_name": "Aguilar Avila Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24085, + "fields": { + "user": null, + "account_number": "41305106", + "user_type": "student", + "full_name": "Arenas Perez Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24086, + "fields": { + "user": null, + "account_number": "41305078", + "user_type": "student", + "full_name": "Gutierrez Ortega Edgar Oswaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24087, + "fields": { + "user": null, + "account_number": "41305001", + "user_type": "student", + "full_name": "Serafin Mancera Victor Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24088, + "fields": { + "user": null, + "account_number": "41304989", + "user_type": "student", + "full_name": "Arango Cruz Josefina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24089, + "fields": { + "user": null, + "account_number": "41304982", + "user_type": "student", + "full_name": "Perez Arvizu Cesar Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24090, + "fields": { + "user": null, + "account_number": "41304968", + "user_type": "student", + "full_name": "Gonzalez Gonzalez Oscar Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24091, + "fields": { + "user": null, + "account_number": "41304931", + "user_type": "student", + "full_name": "BriseÑo Elias Josue David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24092, + "fields": { + "user": null, + "account_number": "41304868", + "user_type": "student", + "full_name": "Lopez Castro Karen Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24093, + "fields": { + "user": null, + "account_number": "41304830", + "user_type": "student", + "full_name": "Saavedra Hernandez Benjamin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24094, + "fields": { + "user": null, + "account_number": "41304725", + "user_type": "student", + "full_name": "Chavez Flores Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24095, + "fields": { + "user": null, + "account_number": "41304658", + "user_type": "student", + "full_name": "Lopez Morales Hellen Stephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24096, + "fields": { + "user": null, + "account_number": "41304637", + "user_type": "student", + "full_name": "Lopez Hernandez Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24097, + "fields": { + "user": null, + "account_number": "41304510", + "user_type": "student", + "full_name": "Gomez Alvarez Leopoldo Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24098, + "fields": { + "user": null, + "account_number": "41304404", + "user_type": "student", + "full_name": "Bernal Cosio Samanta" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24099, + "fields": { + "user": null, + "account_number": "41304348", + "user_type": "student", + "full_name": "Ambrosio Mendez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24100, + "fields": { + "user": null, + "account_number": "41304337", + "user_type": "student", + "full_name": "Benitez Velazquez Renato" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24101, + "fields": { + "user": null, + "account_number": "41304303", + "user_type": "student", + "full_name": "Jacome Herrera Paola Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24102, + "fields": { + "user": null, + "account_number": "41304197", + "user_type": "student", + "full_name": "Hernandez Diaz Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24103, + "fields": { + "user": null, + "account_number": "41304140", + "user_type": "student", + "full_name": "Sanchez Bautista Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24104, + "fields": { + "user": null, + "account_number": "41304134", + "user_type": "student", + "full_name": "Benitez Espinosa Huttman Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24105, + "fields": { + "user": null, + "account_number": "41304117", + "user_type": "student", + "full_name": "Rodriguez Rodriguez Roman" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24106, + "fields": { + "user": null, + "account_number": "41304104", + "user_type": "student", + "full_name": "Rojas Martinez Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24107, + "fields": { + "user": null, + "account_number": "41304004", + "user_type": "student", + "full_name": "Dominguez Sanchez Eddie Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24108, + "fields": { + "user": null, + "account_number": "41303865", + "user_type": "student", + "full_name": "Ramirez Franco Jose Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24109, + "fields": { + "user": null, + "account_number": "41303861", + "user_type": "student", + "full_name": "Martinez Lorenzo Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24110, + "fields": { + "user": null, + "account_number": "41303859", + "user_type": "student", + "full_name": "Rojas Ramos Claudia Ivonne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24111, + "fields": { + "user": null, + "account_number": "41303852", + "user_type": "student", + "full_name": "Ruiz Tapia Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24112, + "fields": { + "user": null, + "account_number": "41303843", + "user_type": "student", + "full_name": "Perez Landeros Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24113, + "fields": { + "user": null, + "account_number": "41303824", + "user_type": "student", + "full_name": "Bellmunt Avila Erick Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24114, + "fields": { + "user": null, + "account_number": "41303813", + "user_type": "student", + "full_name": "Martinez Martinez Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24115, + "fields": { + "user": null, + "account_number": "41303812", + "user_type": "student", + "full_name": "Vazquez Cruz Mitzi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24116, + "fields": { + "user": null, + "account_number": "41303804", + "user_type": "student", + "full_name": "Villamil Palomo Hector Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24117, + "fields": { + "user": null, + "account_number": "41303786", + "user_type": "student", + "full_name": "Rico Hernandez Julio Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24118, + "fields": { + "user": null, + "account_number": "41303691", + "user_type": "student", + "full_name": "Jimenez Rivera Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24119, + "fields": { + "user": null, + "account_number": "41303659", + "user_type": "student", + "full_name": "Juan Gerardo Dominguez CaÑas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24120, + "fields": { + "user": null, + "account_number": "41303655", + "user_type": "student", + "full_name": "Martinez Cortes Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24121, + "fields": { + "user": null, + "account_number": "41303535", + "user_type": "student", + "full_name": "Alejandro Sandoval Santana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24122, + "fields": { + "user": null, + "account_number": "41303480", + "user_type": "student", + "full_name": "Hernandez Mata Angel Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24123, + "fields": { + "user": null, + "account_number": "41303424", + "user_type": "student", + "full_name": "Osorio Sanchez Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24124, + "fields": { + "user": null, + "account_number": "41303382", + "user_type": "student", + "full_name": "Santiago Leonardo Erick Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24125, + "fields": { + "user": null, + "account_number": "41303357", + "user_type": "student", + "full_name": "Novo Zadik Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24126, + "fields": { + "user": null, + "account_number": "41303322", + "user_type": "student", + "full_name": "Viveros Pacheco Erik Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24127, + "fields": { + "user": null, + "account_number": "41303208", + "user_type": "student", + "full_name": "Alvarez Zavala Uriel Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24128, + "fields": { + "user": null, + "account_number": "41303180", + "user_type": "student", + "full_name": "Saunders Coria Eva Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24129, + "fields": { + "user": null, + "account_number": "41303159", + "user_type": "student", + "full_name": "Hernandez Reyes David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24130, + "fields": { + "user": null, + "account_number": "41303134", + "user_type": "student", + "full_name": "Angeles Contreras Jesus Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24131, + "fields": { + "user": null, + "account_number": "41302821", + "user_type": "student", + "full_name": "Santiago Diaz Diego Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24132, + "fields": { + "user": null, + "account_number": "41302817", + "user_type": "student", + "full_name": "Pareja Rios Kenia Jaquelinne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24133, + "fields": { + "user": null, + "account_number": "41302580", + "user_type": "student", + "full_name": "Cabral Molina Marcos Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24134, + "fields": { + "user": null, + "account_number": "41302492", + "user_type": "student", + "full_name": "Paredes Sanchez David Ernesto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24135, + "fields": { + "user": null, + "account_number": "41302476", + "user_type": "student", + "full_name": "Mendoza Ortega Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24136, + "fields": { + "user": null, + "account_number": "41302473", + "user_type": "student", + "full_name": "Castro Martinez Lilia Estefania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24137, + "fields": { + "user": null, + "account_number": "41302326", + "user_type": "student", + "full_name": "Lopez Capula Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24138, + "fields": { + "user": null, + "account_number": "41302188", + "user_type": "student", + "full_name": "Sosa Perez Jose Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24139, + "fields": { + "user": null, + "account_number": "41302158", + "user_type": "student", + "full_name": "Quintero IbaÑes Cynthia Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24140, + "fields": { + "user": null, + "account_number": "41302145", + "user_type": "student", + "full_name": "Ortega Rugerio Hector Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24141, + "fields": { + "user": null, + "account_number": "41302106", + "user_type": "student", + "full_name": "Perez Reyna Jose De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24142, + "fields": { + "user": null, + "account_number": "41302090", + "user_type": "student", + "full_name": "Trejo Vazquez Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24143, + "fields": { + "user": null, + "account_number": "41302049", + "user_type": "student", + "full_name": "Torres Jimenez Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24144, + "fields": { + "user": null, + "account_number": "41302022", + "user_type": "student", + "full_name": "Garcia Malagon Juan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24145, + "fields": { + "user": null, + "account_number": "41301983", + "user_type": "student", + "full_name": "Jimenez Carrizosa Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24146, + "fields": { + "user": null, + "account_number": "41301962", + "user_type": "student", + "full_name": "Nieto Gomez Joel Vicente" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24147, + "fields": { + "user": null, + "account_number": "41301954", + "user_type": "student", + "full_name": "OrduÑa Garcia Ariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24148, + "fields": { + "user": null, + "account_number": "41301848", + "user_type": "student", + "full_name": "Lopez Flores Jose Jaime" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24149, + "fields": { + "user": null, + "account_number": "41301806", + "user_type": "student", + "full_name": "Sandoval Galvan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24150, + "fields": { + "user": null, + "account_number": "41301758", + "user_type": "student", + "full_name": "Fuentes Duarte Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24151, + "fields": { + "user": null, + "account_number": "41301685", + "user_type": "student", + "full_name": "Ramirez Pedraza Ariadna Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24152, + "fields": { + "user": null, + "account_number": "41301659", + "user_type": "student", + "full_name": "Castro Rivas Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24153, + "fields": { + "user": null, + "account_number": "41301551", + "user_type": "student", + "full_name": "Arjona Paredes Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24154, + "fields": { + "user": null, + "account_number": "41301362", + "user_type": "student", + "full_name": "Flores Jimenez Citlali Iridian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24155, + "fields": { + "user": null, + "account_number": "41301359", + "user_type": "student", + "full_name": "Perez Leon Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24156, + "fields": { + "user": null, + "account_number": "41301305", + "user_type": "student", + "full_name": "Castro Vazquez Christian Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24157, + "fields": { + "user": null, + "account_number": "41301274", + "user_type": "student", + "full_name": "Martinez Chavelas Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24158, + "fields": { + "user": null, + "account_number": "41301272", + "user_type": "student", + "full_name": "Hernandez ZermeÑo Saul Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24159, + "fields": { + "user": null, + "account_number": "41301264", + "user_type": "student", + "full_name": "Cabrera Torres Jorge Benito" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24160, + "fields": { + "user": null, + "account_number": "41301194", + "user_type": "student", + "full_name": "Mondragon Flores Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24161, + "fields": { + "user": null, + "account_number": "41301178", + "user_type": "student", + "full_name": "Lopez Caramon Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24162, + "fields": { + "user": null, + "account_number": "41301143", + "user_type": "student", + "full_name": "Medina Ramos Analuisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24163, + "fields": { + "user": null, + "account_number": "41301136", + "user_type": "student", + "full_name": "Falcon Trejo Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24164, + "fields": { + "user": null, + "account_number": "41301080", + "user_type": "student", + "full_name": "Acosta Gonzalez Oscar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24165, + "fields": { + "user": null, + "account_number": "41300830", + "user_type": "student", + "full_name": "Rodriguez Gonzalez Geovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24166, + "fields": { + "user": null, + "account_number": "41300765", + "user_type": "student", + "full_name": "Lopez Garcia Gonzalo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24167, + "fields": { + "user": null, + "account_number": "41300680", + "user_type": "student", + "full_name": "Jimenez Ramos Edwin Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24168, + "fields": { + "user": null, + "account_number": "41300653", + "user_type": "student", + "full_name": "Lopez Gutierrez Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24169, + "fields": { + "user": null, + "account_number": "41300523", + "user_type": "student", + "full_name": "Hernandez Alvarado Angel Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24170, + "fields": { + "user": null, + "account_number": "41300512", + "user_type": "student", + "full_name": "Ruelas Flores Luis Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24171, + "fields": { + "user": null, + "account_number": "41300502", + "user_type": "student", + "full_name": "Valencia Pacheco Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24172, + "fields": { + "user": null, + "account_number": "41300416", + "user_type": "student", + "full_name": "Suarez Gonzalez Jesus Alejandre" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24173, + "fields": { + "user": null, + "account_number": "41300305", + "user_type": "student", + "full_name": "Lobato Fajardo Jose Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24174, + "fields": { + "user": null, + "account_number": "41300299", + "user_type": "student", + "full_name": "Mendoza Bergh Jonathan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24175, + "fields": { + "user": null, + "account_number": "41300244", + "user_type": "student", + "full_name": "Martinez Ramirez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24176, + "fields": { + "user": null, + "account_number": "41300196", + "user_type": "student", + "full_name": "Silverio Flores Moroni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24177, + "fields": { + "user": null, + "account_number": "41300164", + "user_type": "student", + "full_name": "Leon Garcia Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24178, + "fields": { + "user": null, + "account_number": "41300159", + "user_type": "student", + "full_name": "Flores Navarro Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24179, + "fields": { + "user": null, + "account_number": "41300028", + "user_type": "student", + "full_name": "Castillo Ramirez Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24180, + "fields": { + "user": null, + "account_number": "41007616", + "user_type": "student", + "full_name": "Juarez Garcia Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24181, + "fields": { + "user": null, + "account_number": "41007172", + "user_type": "student", + "full_name": "Rivera Sanchez Alberto David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24182, + "fields": { + "user": null, + "account_number": "40905890", + "user_type": "student", + "full_name": "Abrego Morales Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24183, + "fields": { + "user": null, + "account_number": "40802645", + "user_type": "student", + "full_name": "Aguilar Carrion Jose Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24184, + "fields": { + "user": null, + "account_number": "40700650", + "user_type": "student", + "full_name": "Molina Elvira Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24185, + "fields": { + "user": null, + "account_number": "31271132", + "user_type": "student", + "full_name": "Buendia Pichardo Rocio Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24186, + "fields": { + "user": null, + "account_number": "31068271", + "user_type": "student", + "full_name": "Gutierrez Gonzalez Amira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24187, + "fields": { + "user": null, + "account_number": "31065083", + "user_type": "student", + "full_name": "Palomino Alvarez Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24188, + "fields": { + "user": null, + "account_number": "31064852", + "user_type": "student", + "full_name": "Perfecto Espinosa Valeria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24189, + "fields": { + "user": null, + "account_number": "31060798", + "user_type": "student", + "full_name": "Lomeli Ramos Angel Yafte" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24190, + "fields": { + "user": null, + "account_number": "31057137", + "user_type": "student", + "full_name": "Quiroz Catalan Brenda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24191, + "fields": { + "user": null, + "account_number": "31056430", + "user_type": "student", + "full_name": "Ramirez ZuÑiga Saul Salomon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24192, + "fields": { + "user": null, + "account_number": "31055697", + "user_type": "student", + "full_name": "Cervantes Bojorquez Cecilia Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24193, + "fields": { + "user": null, + "account_number": "31034240", + "user_type": "student", + "full_name": "Quintanar Perez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24194, + "fields": { + "user": null, + "account_number": "31033823", + "user_type": "student", + "full_name": "Zarco Meza Cecilia Lindari" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24195, + "fields": { + "user": null, + "account_number": "31033384", + "user_type": "student", + "full_name": "Villeda Lira Dalia Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24196, + "fields": { + "user": null, + "account_number": "31032568", + "user_type": "student", + "full_name": "Sanchez Hernandez Karla Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24197, + "fields": { + "user": null, + "account_number": "31032270", + "user_type": "student", + "full_name": "Tellez Diaz Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24198, + "fields": { + "user": null, + "account_number": "31031458", + "user_type": "student", + "full_name": "Ramirez Gonzalez Juan Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24199, + "fields": { + "user": null, + "account_number": "31031126", + "user_type": "student", + "full_name": "Ruelas Velasquez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24200, + "fields": { + "user": null, + "account_number": "31031113", + "user_type": "student", + "full_name": "Rodriguez Carmona Carla Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24201, + "fields": { + "user": null, + "account_number": "31031001", + "user_type": "student", + "full_name": "Ruvalcaba Flores Monica Estephania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24202, + "fields": { + "user": null, + "account_number": "31030225", + "user_type": "student", + "full_name": "Roman Rodriguez Victor Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24203, + "fields": { + "user": null, + "account_number": "31030097", + "user_type": "student", + "full_name": "Ramirez Hernandez Geovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24204, + "fields": { + "user": null, + "account_number": "31029720", + "user_type": "student", + "full_name": "Palacios Colocho Walter Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24205, + "fields": { + "user": null, + "account_number": "31028490", + "user_type": "student", + "full_name": "Leon Cardona Rosa Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24206, + "fields": { + "user": null, + "account_number": "31028472", + "user_type": "student", + "full_name": "Lopez Visoso Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24207, + "fields": { + "user": null, + "account_number": "31027086", + "user_type": "student", + "full_name": "Hernandez Ortiz Rosa Isela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24208, + "fields": { + "user": null, + "account_number": "31027040", + "user_type": "student", + "full_name": "Martinez Ventura Analia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24209, + "fields": { + "user": null, + "account_number": "31026818", + "user_type": "student", + "full_name": "Rodriguez Avila Esther Anahi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24210, + "fields": { + "user": null, + "account_number": "31025469", + "user_type": "student", + "full_name": "Navarrete Sanchez Jacob" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24211, + "fields": { + "user": null, + "account_number": "31022388", + "user_type": "student", + "full_name": "Rojas Morales Mariel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24212, + "fields": { + "user": null, + "account_number": "31020773", + "user_type": "student", + "full_name": "Velazquez Vargas Arturo Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24213, + "fields": { + "user": null, + "account_number": "31015670", + "user_type": "student", + "full_name": "Reyes Aguillon Jose Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24214, + "fields": { + "user": null, + "account_number": "31014210", + "user_type": "student", + "full_name": "Gonzalez Aguilar Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24215, + "fields": { + "user": null, + "account_number": "31014157", + "user_type": "student", + "full_name": "Dominguez Angeles Leonardo Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24216, + "fields": { + "user": null, + "account_number": "31014139", + "user_type": "student", + "full_name": "Frias Betancourt Tabatha Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24217, + "fields": { + "user": null, + "account_number": "31013585", + "user_type": "student", + "full_name": "Villafuerte Beltran Cristobal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24218, + "fields": { + "user": null, + "account_number": "31011459", + "user_type": "student", + "full_name": "Bernal Hernandez Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24219, + "fields": { + "user": null, + "account_number": "31010778", + "user_type": "student", + "full_name": "Hernandez Nava Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24220, + "fields": { + "user": null, + "account_number": "31010313", + "user_type": "student", + "full_name": "Bocanegra Hernandez Jorge Andrew" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24221, + "fields": { + "user": null, + "account_number": "31010006", + "user_type": "student", + "full_name": "Castillo Granados Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24222, + "fields": { + "user": null, + "account_number": "31009836", + "user_type": "student", + "full_name": "Celis Diaz Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24223, + "fields": { + "user": null, + "account_number": "31009082", + "user_type": "student", + "full_name": "Cortes Delgado Estrella Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24224, + "fields": { + "user": null, + "account_number": "31008971", + "user_type": "student", + "full_name": "Anaya Nava Ricardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24225, + "fields": { + "user": null, + "account_number": "31006438", + "user_type": "student", + "full_name": "Cruz Jimenez Anna Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24226, + "fields": { + "user": null, + "account_number": "31004849", + "user_type": "student", + "full_name": "Bustos Ramirez Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24227, + "fields": { + "user": null, + "account_number": "31000437", + "user_type": "student", + "full_name": "Garcia Romero Juan Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24228, + "fields": { + "user": null, + "account_number": "30966184", + "user_type": "student", + "full_name": "Vega Alvarado Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24229, + "fields": { + "user": null, + "account_number": "30952707", + "user_type": "student", + "full_name": "Gonzalez Delgado Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24230, + "fields": { + "user": null, + "account_number": "30933543", + "user_type": "student", + "full_name": "Vega Sanchez Jonas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24231, + "fields": { + "user": null, + "account_number": "30931613", + "user_type": "student", + "full_name": "Ruiz Garcia Sebastian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24232, + "fields": { + "user": null, + "account_number": "30929535", + "user_type": "student", + "full_name": "Perez Manjarrez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24233, + "fields": { + "user": null, + "account_number": "30928982", + "user_type": "student", + "full_name": "Hernandez Villegas Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24234, + "fields": { + "user": null, + "account_number": "30925283", + "user_type": "student", + "full_name": "Meza Ramirez Christian Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24235, + "fields": { + "user": null, + "account_number": "30923150", + "user_type": "student", + "full_name": "Carrizosa Hernandez Evelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24236, + "fields": { + "user": null, + "account_number": "30919251", + "user_type": "student", + "full_name": "Licona Ortega Ali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24237, + "fields": { + "user": null, + "account_number": "30918965", + "user_type": "student", + "full_name": "Garcia Gonzalez Ulises Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24238, + "fields": { + "user": null, + "account_number": "30915926", + "user_type": "student", + "full_name": "Sosa Venegas Ulises Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24239, + "fields": { + "user": null, + "account_number": "30914056", + "user_type": "student", + "full_name": "Gonzalez Angulo Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24240, + "fields": { + "user": null, + "account_number": "30911192", + "user_type": "student", + "full_name": "Hernandez De Los Santos Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24241, + "fields": { + "user": null, + "account_number": "30908953", + "user_type": "student", + "full_name": "Flores Salazar Mario Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24242, + "fields": { + "user": null, + "account_number": "30908615", + "user_type": "student", + "full_name": "Cossio Placencia Alicia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24243, + "fields": { + "user": null, + "account_number": "30904535", + "user_type": "student", + "full_name": "Beltran Martinez Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24244, + "fields": { + "user": null, + "account_number": "30902200", + "user_type": "student", + "full_name": "Bustamante Hernandez Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24245, + "fields": { + "user": null, + "account_number": "30900156", + "user_type": "student", + "full_name": "Cancino Leyva Jessica Rebeca" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24246, + "fields": { + "user": null, + "account_number": "30850851", + "user_type": "student", + "full_name": "Ramirez Serrano Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24247, + "fields": { + "user": null, + "account_number": "30832805", + "user_type": "student", + "full_name": "Zamora Velasco Brayan Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24248, + "fields": { + "user": null, + "account_number": "30832486", + "user_type": "student", + "full_name": "Salas Marcial Cesar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24249, + "fields": { + "user": null, + "account_number": "30832362", + "user_type": "student", + "full_name": "Segundo Rivera Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24250, + "fields": { + "user": null, + "account_number": "30828152", + "user_type": "student", + "full_name": "Sesati Paniagua Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24251, + "fields": { + "user": null, + "account_number": "30822632", + "user_type": "student", + "full_name": "Naranjo Silva Edgar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24252, + "fields": { + "user": null, + "account_number": "30820762", + "user_type": "student", + "full_name": "Sciandra Buendia Eduardo Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24253, + "fields": { + "user": null, + "account_number": "30816983", + "user_type": "student", + "full_name": "Camacho Torres Luis Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24254, + "fields": { + "user": null, + "account_number": "30815387", + "user_type": "student", + "full_name": "Reyes Alarcon Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24255, + "fields": { + "user": null, + "account_number": "30813360", + "user_type": "student", + "full_name": "Lopez Santos Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24256, + "fields": { + "user": null, + "account_number": "30813282", + "user_type": "student", + "full_name": "Islas Ocampo Nancy Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24257, + "fields": { + "user": null, + "account_number": "30812551", + "user_type": "student", + "full_name": "Mezita Gonzalez Marcos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24258, + "fields": { + "user": null, + "account_number": "30809509", + "user_type": "student", + "full_name": "Moreno Martinez Leonel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24259, + "fields": { + "user": null, + "account_number": "30809342", + "user_type": "student", + "full_name": "Mercado Martinez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24260, + "fields": { + "user": null, + "account_number": "30808619", + "user_type": "student", + "full_name": "Flores Roa Nancy Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24261, + "fields": { + "user": null, + "account_number": "30803029", + "user_type": "student", + "full_name": "Barrera Espinoza Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24262, + "fields": { + "user": null, + "account_number": "30733582", + "user_type": "student", + "full_name": "Tristan QuiÑones Axel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24263, + "fields": { + "user": null, + "account_number": "30732344", + "user_type": "student", + "full_name": "Arellano Gonzalez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24264, + "fields": { + "user": null, + "account_number": "30720374", + "user_type": "student", + "full_name": "Ramirez Bravo Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24265, + "fields": { + "user": null, + "account_number": "30718926", + "user_type": "student", + "full_name": "Mayo Rojas Allan Jhoset" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24266, + "fields": { + "user": null, + "account_number": "30714150", + "user_type": "student", + "full_name": "Rodea Dominguez Diego Anuar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24267, + "fields": { + "user": null, + "account_number": "30713525", + "user_type": "student", + "full_name": "Lopez Mujica Luis Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24268, + "fields": { + "user": null, + "account_number": "30711558", + "user_type": "student", + "full_name": "Contreras Espinoza Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24269, + "fields": { + "user": null, + "account_number": "30709536", + "user_type": "student", + "full_name": "Sanchez Rojas Jesus Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24270, + "fields": { + "user": null, + "account_number": "30708737", + "user_type": "student", + "full_name": "Cano NuÑez Gerardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24271, + "fields": { + "user": null, + "account_number": "30708234", + "user_type": "student", + "full_name": "Guzman Rocha Juan Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24272, + "fields": { + "user": null, + "account_number": "30707432", + "user_type": "student", + "full_name": "Delgado Cruz Mario Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24273, + "fields": { + "user": null, + "account_number": "30704580", + "user_type": "student", + "full_name": "Carrillo Garcia Martha Abigail" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24274, + "fields": { + "user": null, + "account_number": "30700936", + "user_type": "student", + "full_name": "IbaÑez Barron Monica Esthefania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24275, + "fields": { + "user": null, + "account_number": "30700016", + "user_type": "student", + "full_name": "Manuel Suarez Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24276, + "fields": { + "user": null, + "account_number": "30666100", + "user_type": "student", + "full_name": "Gonzalez Alejo Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24277, + "fields": { + "user": null, + "account_number": "30634462", + "user_type": "student", + "full_name": "Trejo MagaÑa Daniel Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24278, + "fields": { + "user": null, + "account_number": "30634399", + "user_type": "student", + "full_name": "Meza Castillo Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24279, + "fields": { + "user": null, + "account_number": "30627635", + "user_type": "student", + "full_name": "Ulloa Benitez Elliot" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24280, + "fields": { + "user": null, + "account_number": "30627393", + "user_type": "student", + "full_name": "Salas Torreblanca Bertin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24281, + "fields": { + "user": null, + "account_number": "30620989", + "user_type": "student", + "full_name": "Quiroz Jimenez Joshua" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24282, + "fields": { + "user": null, + "account_number": "30619590", + "user_type": "student", + "full_name": "Robledo Flores Manuel Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24283, + "fields": { + "user": null, + "account_number": "30616949", + "user_type": "student", + "full_name": "Guzman Mendoza Arturo Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24284, + "fields": { + "user": null, + "account_number": "30616774", + "user_type": "student", + "full_name": "Medina Baez Disnarda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24285, + "fields": { + "user": null, + "account_number": "30612693", + "user_type": "student", + "full_name": "Limas Trejo Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24286, + "fields": { + "user": null, + "account_number": "30609021", + "user_type": "student", + "full_name": "Hernandez Vazquez Minerva Leonora" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24287, + "fields": { + "user": null, + "account_number": "30601371", + "user_type": "student", + "full_name": "Espinoza Serrano Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24288, + "fields": { + "user": null, + "account_number": "30573130", + "user_type": "student", + "full_name": "Sandoval Hernandez Angelica Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24289, + "fields": { + "user": null, + "account_number": "30524952", + "user_type": "student", + "full_name": "Arias Millan Janett" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24290, + "fields": { + "user": null, + "account_number": "30514437", + "user_type": "student", + "full_name": "Reyes Rosas Fausto Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24291, + "fields": { + "user": null, + "account_number": "30510220", + "user_type": "student", + "full_name": "Morales Lopez Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24292, + "fields": { + "user": null, + "account_number": "30504814", + "user_type": "student", + "full_name": "Mendieta Mariles Mauricio Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24293, + "fields": { + "user": null, + "account_number": "30504487", + "user_type": "student", + "full_name": "Juan Espinosa Julio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24294, + "fields": { + "user": null, + "account_number": "30427872", + "user_type": "student", + "full_name": "Rodriguez Morales German Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24295, + "fields": { + "user": null, + "account_number": "30426347", + "user_type": "student", + "full_name": "Jaimes Martinez Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24296, + "fields": { + "user": null, + "account_number": "30423172", + "user_type": "student", + "full_name": "Garcia QuiÑones Luis Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24297, + "fields": { + "user": null, + "account_number": "30416514", + "user_type": "student", + "full_name": "Salinas Gutierrez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24298, + "fields": { + "user": null, + "account_number": "30411728", + "user_type": "student", + "full_name": "Rodriguez Ovando Kenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24299, + "fields": { + "user": null, + "account_number": "30410331", + "user_type": "student", + "full_name": "Sandoval Galvan Jehu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24300, + "fields": { + "user": null, + "account_number": "30317168", + "user_type": "student", + "full_name": "Lopez Hernandez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24301, + "fields": { + "user": null, + "account_number": "30308361", + "user_type": "student", + "full_name": "Martinez Martinez Angel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24302, + "fields": { + "user": null, + "account_number": "30301824", + "user_type": "student", + "full_name": "Gutierrez Garcia Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24303, + "fields": { + "user": null, + "account_number": "30025088", + "user_type": "student", + "full_name": "Hernandez Uribe Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24304, + "fields": { + "user": null, + "account_number": "10400254", + "user_type": "student", + "full_name": "Giron Moreno Iovany" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24305, + "fields": { + "user": null, + "account_number": "41211595", + "user_type": "student", + "full_name": "Mancera Roa Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24306, + "fields": { + "user": null, + "account_number": "41211594", + "user_type": "student", + "full_name": "Hernanadez Morales Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24307, + "fields": { + "user": null, + "account_number": "41211566", + "user_type": "student", + "full_name": "Escamilla Uribe Paloma Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24308, + "fields": { + "user": null, + "account_number": "41211565", + "user_type": "student", + "full_name": "Vazquez Chargoy Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24309, + "fields": { + "user": null, + "account_number": "41211564", + "user_type": "student", + "full_name": "Romero Copado Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24310, + "fields": { + "user": null, + "account_number": "41211541", + "user_type": "student", + "full_name": "Juarez Santiago Eduardo Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24311, + "fields": { + "user": null, + "account_number": "41211231", + "user_type": "student", + "full_name": "Buenrostro Perez Aguirre Leonel Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24312, + "fields": { + "user": null, + "account_number": "41208593", + "user_type": "student", + "full_name": "Acosta Mijailidis Rogelio Basilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24313, + "fields": { + "user": null, + "account_number": "41205950", + "user_type": "student", + "full_name": "Gomez Rebolledo Araceli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24314, + "fields": { + "user": null, + "account_number": "41205948", + "user_type": "student", + "full_name": "Cruz Santos Juan Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24315, + "fields": { + "user": null, + "account_number": "41205946", + "user_type": "student", + "full_name": "Martinez Ramos Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24316, + "fields": { + "user": null, + "account_number": "41205934", + "user_type": "student", + "full_name": "Lopez Perez Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24317, + "fields": { + "user": null, + "account_number": "41205927", + "user_type": "student", + "full_name": "Ruiz Hernandez Jorge Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24318, + "fields": { + "user": null, + "account_number": "41205920", + "user_type": "student", + "full_name": "Reyes Rojas Jose Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24319, + "fields": { + "user": null, + "account_number": "41205919", + "user_type": "student", + "full_name": "Villeda Serna Lessly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24320, + "fields": { + "user": null, + "account_number": "41205918", + "user_type": "student", + "full_name": "Soto Barrera Tania Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24321, + "fields": { + "user": null, + "account_number": "41205907", + "user_type": "student", + "full_name": "Gomez Flores Brian Isai" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24322, + "fields": { + "user": null, + "account_number": "41205897", + "user_type": "student", + "full_name": "Soto Zarco Daniel Adan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24323, + "fields": { + "user": null, + "account_number": "41205871", + "user_type": "student", + "full_name": "Vega Perez Marcos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24324, + "fields": { + "user": null, + "account_number": "41205847", + "user_type": "student", + "full_name": "Sanchez Villegas Nataly Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24325, + "fields": { + "user": null, + "account_number": "41205834", + "user_type": "student", + "full_name": "Zavaleta Constantino Belisario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24326, + "fields": { + "user": null, + "account_number": "41205827", + "user_type": "student", + "full_name": "Aguilar Martinez Jesus Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24327, + "fields": { + "user": null, + "account_number": "41205822", + "user_type": "student", + "full_name": "Reyes GarduÑo Luis Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24328, + "fields": { + "user": null, + "account_number": "41205818", + "user_type": "student", + "full_name": "Anguiano Garrido Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24329, + "fields": { + "user": null, + "account_number": "41205815", + "user_type": "student", + "full_name": "Albarran Reyes Sergio Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24330, + "fields": { + "user": null, + "account_number": "41205813", + "user_type": "student", + "full_name": "Diaz Coca David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24331, + "fields": { + "user": null, + "account_number": "41205805", + "user_type": "student", + "full_name": "Gonzalez Hernandez Jimena Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24332, + "fields": { + "user": null, + "account_number": "41205799", + "user_type": "student", + "full_name": "Mora Zamora Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24333, + "fields": { + "user": null, + "account_number": "41205796", + "user_type": "student", + "full_name": "Suarez Avila Laura Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24334, + "fields": { + "user": null, + "account_number": "41205792", + "user_type": "student", + "full_name": "Gallegos Calderon Rodolfo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24335, + "fields": { + "user": null, + "account_number": "41205790", + "user_type": "student", + "full_name": "Cervantes Calderon Cristopher Giovani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24336, + "fields": { + "user": null, + "account_number": "41205786", + "user_type": "student", + "full_name": "Bustamante Ruiz Alisson Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24337, + "fields": { + "user": null, + "account_number": "41205777", + "user_type": "student", + "full_name": "Sanchez Moreno Rodolfo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24338, + "fields": { + "user": null, + "account_number": "41205776", + "user_type": "student", + "full_name": "Lacayo De La Vega Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24339, + "fields": { + "user": null, + "account_number": "41205768", + "user_type": "student", + "full_name": "Sanchez Mijangos Yocundo Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24340, + "fields": { + "user": null, + "account_number": "41205754", + "user_type": "student", + "full_name": "Arreortua Lopez Angelica Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24341, + "fields": { + "user": null, + "account_number": "41205748", + "user_type": "student", + "full_name": "Santos Gonzalez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24342, + "fields": { + "user": null, + "account_number": "41205747", + "user_type": "student", + "full_name": "Garcia Nava Jonathan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24343, + "fields": { + "user": null, + "account_number": "41205743", + "user_type": "student", + "full_name": "Hernandez Castelan Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24344, + "fields": { + "user": null, + "account_number": "41205693", + "user_type": "student", + "full_name": "Herrera Garcia Christian Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24345, + "fields": { + "user": null, + "account_number": "41205676", + "user_type": "student", + "full_name": "Rendon Diaz Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24346, + "fields": { + "user": null, + "account_number": "41205675", + "user_type": "student", + "full_name": "Colmenero Lopez Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24347, + "fields": { + "user": null, + "account_number": "41205653", + "user_type": "student", + "full_name": "Perez Torres Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24348, + "fields": { + "user": null, + "account_number": "41205647", + "user_type": "student", + "full_name": "Cordova Perez Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24349, + "fields": { + "user": null, + "account_number": "41205642", + "user_type": "student", + "full_name": "MagaÑa Palafox Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24350, + "fields": { + "user": null, + "account_number": "41205629", + "user_type": "student", + "full_name": "Gonzalez Alvarez Ivette Jocelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24351, + "fields": { + "user": null, + "account_number": "41205614", + "user_type": "student", + "full_name": "Lopez De Jesus Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24352, + "fields": { + "user": null, + "account_number": "41205609", + "user_type": "student", + "full_name": "Alvarado Rios Joel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24353, + "fields": { + "user": null, + "account_number": "41205606", + "user_type": "student", + "full_name": "Carrasco Arias Oscar Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24354, + "fields": { + "user": null, + "account_number": "41205600", + "user_type": "student", + "full_name": "Morales Cornejo Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24355, + "fields": { + "user": null, + "account_number": "41205585", + "user_type": "student", + "full_name": "Serna Ramirez Jessica Noemi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24356, + "fields": { + "user": null, + "account_number": "41205570", + "user_type": "student", + "full_name": "Martinez Mejia Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24357, + "fields": { + "user": null, + "account_number": "41205568", + "user_type": "student", + "full_name": "Oliva Vega Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24358, + "fields": { + "user": null, + "account_number": "41205566", + "user_type": "student", + "full_name": "Rosas Bermudez Alvaro Tomas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24359, + "fields": { + "user": null, + "account_number": "41205565", + "user_type": "student", + "full_name": "Henandez Ortega Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24360, + "fields": { + "user": null, + "account_number": "41205556", + "user_type": "student", + "full_name": "Gonzalez Nieto Francisco Cuauhtemoc" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24361, + "fields": { + "user": null, + "account_number": "41205555", + "user_type": "student", + "full_name": "Salia Leal Jorge Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24362, + "fields": { + "user": null, + "account_number": "41205552", + "user_type": "student", + "full_name": "Mateos Sanchez Areli Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24363, + "fields": { + "user": null, + "account_number": "41205549", + "user_type": "student", + "full_name": "Garfias Gonzalez Osvaldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24364, + "fields": { + "user": null, + "account_number": "41205544", + "user_type": "student", + "full_name": "Perez Licea Yuritzin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24365, + "fields": { + "user": null, + "account_number": "41205542", + "user_type": "student", + "full_name": "Solis Coria Hector Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24366, + "fields": { + "user": null, + "account_number": "41205535", + "user_type": "student", + "full_name": "Quintero Lopez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24367, + "fields": { + "user": null, + "account_number": "41205533", + "user_type": "student", + "full_name": "SanpedreÑo Martinez Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24368, + "fields": { + "user": null, + "account_number": "41205512", + "user_type": "student", + "full_name": "Hernandez Juarez Andrea Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24369, + "fields": { + "user": null, + "account_number": "41205504", + "user_type": "student", + "full_name": "Ortiz Linares Ana Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24370, + "fields": { + "user": null, + "account_number": "41205497", + "user_type": "student", + "full_name": "Cardoso Tellez Edgar Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24371, + "fields": { + "user": null, + "account_number": "41205496", + "user_type": "student", + "full_name": "Carcamo NuÑez Jose Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24372, + "fields": { + "user": null, + "account_number": "41205493", + "user_type": "student", + "full_name": "Caballero Reveles Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24373, + "fields": { + "user": null, + "account_number": "41205481", + "user_type": "student", + "full_name": "Vieyra Avila Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24374, + "fields": { + "user": null, + "account_number": "41205474", + "user_type": "student", + "full_name": "Fuentes Toledo Geovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24375, + "fields": { + "user": null, + "account_number": "41205458", + "user_type": "student", + "full_name": "Guadalupe Gonzalez Graciela Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24376, + "fields": { + "user": null, + "account_number": "41205446", + "user_type": "student", + "full_name": "Chavez Arevalo Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24377, + "fields": { + "user": null, + "account_number": "41205445", + "user_type": "student", + "full_name": "Arana Pulido Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24378, + "fields": { + "user": null, + "account_number": "41205442", + "user_type": "student", + "full_name": "Ramirez Epifanio Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24379, + "fields": { + "user": null, + "account_number": "41205409", + "user_type": "student", + "full_name": "Perez Hernandez Alondra Xochitiotzin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24380, + "fields": { + "user": null, + "account_number": "41205393", + "user_type": "student", + "full_name": "Mata Escamilla Raul Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24381, + "fields": { + "user": null, + "account_number": "41205378", + "user_type": "student", + "full_name": "Pichardo Jimenez Sealtiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24382, + "fields": { + "user": null, + "account_number": "41205367", + "user_type": "student", + "full_name": "Grados Pardo Ossan Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24383, + "fields": { + "user": null, + "account_number": "41205364", + "user_type": "student", + "full_name": "Vazquez Nicolas Alan Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24384, + "fields": { + "user": null, + "account_number": "41205349", + "user_type": "student", + "full_name": "Lopez Lara Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24385, + "fields": { + "user": null, + "account_number": "41205341", + "user_type": "student", + "full_name": "Hernandez Juarez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24386, + "fields": { + "user": null, + "account_number": "41205337", + "user_type": "student", + "full_name": "Martinez Ferrer Dante Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24387, + "fields": { + "user": null, + "account_number": "41205330", + "user_type": "student", + "full_name": "Romero OrdoÑez Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24388, + "fields": { + "user": null, + "account_number": "41205325", + "user_type": "student", + "full_name": "Castillo Gonzalez Martin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24389, + "fields": { + "user": null, + "account_number": "41205315", + "user_type": "student", + "full_name": "Cruz Vazquez Wendy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24390, + "fields": { + "user": null, + "account_number": "41205295", + "user_type": "student", + "full_name": "Ruiz Cruz Ana Lilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24391, + "fields": { + "user": null, + "account_number": "41205289", + "user_type": "student", + "full_name": "Lopez Flores Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24392, + "fields": { + "user": null, + "account_number": "41205279", + "user_type": "student", + "full_name": "Perez Sevilla Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24393, + "fields": { + "user": null, + "account_number": "41205269", + "user_type": "student", + "full_name": "Hernandez Hernandez Julian David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24394, + "fields": { + "user": null, + "account_number": "41205267", + "user_type": "student", + "full_name": "Sanchez Fernandez Wenndy Sharay" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24395, + "fields": { + "user": null, + "account_number": "41205250", + "user_type": "student", + "full_name": "Osnaya Bruno Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24396, + "fields": { + "user": null, + "account_number": "41205237", + "user_type": "student", + "full_name": "Querito Mora Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24397, + "fields": { + "user": null, + "account_number": "41205229", + "user_type": "student", + "full_name": "De La Cruz Betancourt Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24398, + "fields": { + "user": null, + "account_number": "41205226", + "user_type": "student", + "full_name": "Romero Martinez Jorge Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24399, + "fields": { + "user": null, + "account_number": "41205225", + "user_type": "student", + "full_name": "Diaz Arredondo Salomon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24400, + "fields": { + "user": null, + "account_number": "41205223", + "user_type": "student", + "full_name": "Morales Cruz Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24401, + "fields": { + "user": null, + "account_number": "41205222", + "user_type": "student", + "full_name": "Mendez Ramirez Kenny Yahir" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24402, + "fields": { + "user": null, + "account_number": "41205219", + "user_type": "student", + "full_name": "Quijada PiÑa Anayancy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24403, + "fields": { + "user": null, + "account_number": "41205200", + "user_type": "student", + "full_name": "CastaÑeda Sanchez Edgar Nahu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24404, + "fields": { + "user": null, + "account_number": "41205199", + "user_type": "student", + "full_name": "Arturo Roldan Dominguez" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24405, + "fields": { + "user": null, + "account_number": "41205186", + "user_type": "student", + "full_name": "Mayorga Lazaro Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24406, + "fields": { + "user": null, + "account_number": "41205151", + "user_type": "student", + "full_name": "Huitron Rios Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24407, + "fields": { + "user": null, + "account_number": "41205142", + "user_type": "student", + "full_name": "Reyes NuÑez Natali Del Mar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24408, + "fields": { + "user": null, + "account_number": "41205140", + "user_type": "student", + "full_name": "Carbajal Escamilla Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24409, + "fields": { + "user": null, + "account_number": "41205132", + "user_type": "student", + "full_name": "Martinez Valtierra Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24410, + "fields": { + "user": null, + "account_number": "41205128", + "user_type": "student", + "full_name": "Diaz Amado Monica Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24411, + "fields": { + "user": null, + "account_number": "41205118", + "user_type": "student", + "full_name": "Mitra Perez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24412, + "fields": { + "user": null, + "account_number": "41205104", + "user_type": "student", + "full_name": "Carrillo Del Rio Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24413, + "fields": { + "user": null, + "account_number": "41205101", + "user_type": "student", + "full_name": "Villanueva Lucas Karen Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24414, + "fields": { + "user": null, + "account_number": "41205099", + "user_type": "student", + "full_name": "Alfredo Rojas Bustamante" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24415, + "fields": { + "user": null, + "account_number": "41205092", + "user_type": "student", + "full_name": "Acosta Hernandez Diana Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24416, + "fields": { + "user": null, + "account_number": "41205075", + "user_type": "student", + "full_name": "Tejeda Mora Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24417, + "fields": { + "user": null, + "account_number": "41205074", + "user_type": "student", + "full_name": "Rojas Espinoza Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24418, + "fields": { + "user": null, + "account_number": "41205073", + "user_type": "student", + "full_name": "Guzman Perez Yahir Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24419, + "fields": { + "user": null, + "account_number": "41205066", + "user_type": "student", + "full_name": "Vazquez Montealvo Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24420, + "fields": { + "user": null, + "account_number": "41205035", + "user_type": "student", + "full_name": "Rebollar Hernandez Jorge Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24421, + "fields": { + "user": null, + "account_number": "41205022", + "user_type": "student", + "full_name": "Hernandez Hernandez Erika Rosario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24422, + "fields": { + "user": null, + "account_number": "41205016", + "user_type": "student", + "full_name": "Vazquez Hernandez Lucina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24423, + "fields": { + "user": null, + "account_number": "41205005", + "user_type": "student", + "full_name": "Martinez Fuertes Patricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24424, + "fields": { + "user": null, + "account_number": "41204992", + "user_type": "student", + "full_name": "Vicencio Hernandez Rafel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24425, + "fields": { + "user": null, + "account_number": "41204968", + "user_type": "student", + "full_name": "Balcazar Cruz Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24426, + "fields": { + "user": null, + "account_number": "41204957", + "user_type": "student", + "full_name": "Lara Maldonado Pedro Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24427, + "fields": { + "user": null, + "account_number": "41204910", + "user_type": "student", + "full_name": "Romero Diaz Delfino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24428, + "fields": { + "user": null, + "account_number": "41201126", + "user_type": "student", + "full_name": "Ancona Licea Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24429, + "fields": { + "user": null, + "account_number": "41201122", + "user_type": "student", + "full_name": "Arguello Labandera Liliana Amada" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24430, + "fields": { + "user": null, + "account_number": "41201121", + "user_type": "student", + "full_name": "Velazquez Villalba Pamela Joana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24431, + "fields": { + "user": null, + "account_number": "41201119", + "user_type": "student", + "full_name": "Cervantes Contreras Jaime Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24432, + "fields": { + "user": null, + "account_number": "41201063", + "user_type": "student", + "full_name": "Gonzalez Martinez Diego Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24433, + "fields": { + "user": null, + "account_number": "41201051", + "user_type": "student", + "full_name": "Olvera Flores Yesenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24434, + "fields": { + "user": null, + "account_number": "41201045", + "user_type": "student", + "full_name": "Ortega Torres Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24435, + "fields": { + "user": null, + "account_number": "41201037", + "user_type": "student", + "full_name": "OrdoÑez Lopez Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24436, + "fields": { + "user": null, + "account_number": "41201031", + "user_type": "student", + "full_name": "Montes De Oca Valdivia Gerardo Sinuhe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24437, + "fields": { + "user": null, + "account_number": "41201027", + "user_type": "student", + "full_name": "Aniceto Ventura Noemi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24438, + "fields": { + "user": null, + "account_number": "41201024", + "user_type": "student", + "full_name": "Vargas Hernandez Tony" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24439, + "fields": { + "user": null, + "account_number": "41201014", + "user_type": "student", + "full_name": "Martinez Romero Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24440, + "fields": { + "user": null, + "account_number": "41200992", + "user_type": "student", + "full_name": "Nava Martinez Omar Angelo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24441, + "fields": { + "user": null, + "account_number": "41200962", + "user_type": "student", + "full_name": "Perez Monroy Ivan Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24442, + "fields": { + "user": null, + "account_number": "41200938", + "user_type": "student", + "full_name": "Aguilar Hipolito Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24443, + "fields": { + "user": null, + "account_number": "41200932", + "user_type": "student", + "full_name": "Puerto Bahena David Said" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24444, + "fields": { + "user": null, + "account_number": "41200929", + "user_type": "student", + "full_name": "Soto Zarco Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24445, + "fields": { + "user": null, + "account_number": "41200921", + "user_type": "student", + "full_name": "Vargas YaÑez Victor Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24446, + "fields": { + "user": null, + "account_number": "41200916", + "user_type": "student", + "full_name": "Cortes Suarez Daniel Othokani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24447, + "fields": { + "user": null, + "account_number": "41200914", + "user_type": "student", + "full_name": "Zamora Mora Filiberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24448, + "fields": { + "user": null, + "account_number": "41200910", + "user_type": "student", + "full_name": "Zesati Mondragon Tieri Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24449, + "fields": { + "user": null, + "account_number": "41200894", + "user_type": "student", + "full_name": "Serrano Paul Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24450, + "fields": { + "user": null, + "account_number": "41200889", + "user_type": "student", + "full_name": "Romo Gongora Luis Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24451, + "fields": { + "user": null, + "account_number": "41200887", + "user_type": "student", + "full_name": "Segura Cantero Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24452, + "fields": { + "user": null, + "account_number": "41200872", + "user_type": "student", + "full_name": "Quintanar Granados Marco Santos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24453, + "fields": { + "user": null, + "account_number": "41200850", + "user_type": "student", + "full_name": "Garcia Jarillo Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24454, + "fields": { + "user": null, + "account_number": "41200846", + "user_type": "student", + "full_name": "Vazquez Martinez Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24455, + "fields": { + "user": null, + "account_number": "41200836", + "user_type": "student", + "full_name": "Zamora Lira Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24456, + "fields": { + "user": null, + "account_number": "41200810", + "user_type": "student", + "full_name": "Ambrosio Cordero Juan Agustin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24457, + "fields": { + "user": null, + "account_number": "41200797", + "user_type": "student", + "full_name": "Garcia Rivera Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24458, + "fields": { + "user": null, + "account_number": "41200786", + "user_type": "student", + "full_name": "Ramirez Palacios Jose Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24459, + "fields": { + "user": null, + "account_number": "41200785", + "user_type": "student", + "full_name": "Miranda Serrano Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24460, + "fields": { + "user": null, + "account_number": "41200782", + "user_type": "student", + "full_name": "Mayorga Ponce Victor Aaron" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24461, + "fields": { + "user": null, + "account_number": "41200779", + "user_type": "student", + "full_name": "Colin Lugo Gloria Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24462, + "fields": { + "user": null, + "account_number": "41200766", + "user_type": "student", + "full_name": "Cervantes Salgado Mauro Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24463, + "fields": { + "user": null, + "account_number": "41200755", + "user_type": "student", + "full_name": "Cruz Garcia Paulina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24464, + "fields": { + "user": null, + "account_number": "41200728", + "user_type": "student", + "full_name": "Ruiz Gomez Andrea Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24465, + "fields": { + "user": null, + "account_number": "41200716", + "user_type": "student", + "full_name": "Roque Martinez Alan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24466, + "fields": { + "user": null, + "account_number": "41200709", + "user_type": "student", + "full_name": "Cocoletzi Estrada Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24467, + "fields": { + "user": null, + "account_number": "41200692", + "user_type": "student", + "full_name": "Reynoso Ramos Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24468, + "fields": { + "user": null, + "account_number": "41200691", + "user_type": "student", + "full_name": "Lopez Gomez Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24469, + "fields": { + "user": null, + "account_number": "41200675", + "user_type": "student", + "full_name": "Gonzalez Garcia Alba Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24470, + "fields": { + "user": null, + "account_number": "41200667", + "user_type": "student", + "full_name": "Velazquez Rios Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24471, + "fields": { + "user": null, + "account_number": "41200647", + "user_type": "student", + "full_name": "Madariaga Bautista Astrid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24472, + "fields": { + "user": null, + "account_number": "41200634", + "user_type": "student", + "full_name": "Vega Campos Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24473, + "fields": { + "user": null, + "account_number": "41200621", + "user_type": "student", + "full_name": "Garcia Hernandez Norma Crisel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24474, + "fields": { + "user": null, + "account_number": "41200617", + "user_type": "student", + "full_name": "Solorio Vazquez Jonatan Giovani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24475, + "fields": { + "user": null, + "account_number": "41200607", + "user_type": "student", + "full_name": "Fragoso Garcia Vicente Eleazar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24476, + "fields": { + "user": null, + "account_number": "41200602", + "user_type": "student", + "full_name": "Garcia Cruz Leopoldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24477, + "fields": { + "user": null, + "account_number": "41200601", + "user_type": "student", + "full_name": "Zamora Reyes Jose Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24478, + "fields": { + "user": null, + "account_number": "41200600", + "user_type": "student", + "full_name": "Santiago Estrada Pedro Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24479, + "fields": { + "user": null, + "account_number": "41200596", + "user_type": "student", + "full_name": "Montoya Salcedo Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24480, + "fields": { + "user": null, + "account_number": "41200554", + "user_type": "student", + "full_name": "Mendiola Esquivel Jorge Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24481, + "fields": { + "user": null, + "account_number": "41200548", + "user_type": "student", + "full_name": "De La Cruz Huitron William" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24482, + "fields": { + "user": null, + "account_number": "41200546", + "user_type": "student", + "full_name": "Gutierrez Arriaga Jesus Emanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24483, + "fields": { + "user": null, + "account_number": "41200528", + "user_type": "student", + "full_name": "Andres De Jesus Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24484, + "fields": { + "user": null, + "account_number": "41200512", + "user_type": "student", + "full_name": "Rosales SaldaÑa Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24485, + "fields": { + "user": null, + "account_number": "41200506", + "user_type": "student", + "full_name": "Rodriguez Gonzalez Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24486, + "fields": { + "user": null, + "account_number": "41200486", + "user_type": "student", + "full_name": "Castillo Velazquez David Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24487, + "fields": { + "user": null, + "account_number": "41200485", + "user_type": "student", + "full_name": "Hernandez Figueroa Clara" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24488, + "fields": { + "user": null, + "account_number": "41200466", + "user_type": "student", + "full_name": "Martinez Rivero Ulises Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24489, + "fields": { + "user": null, + "account_number": "41200455", + "user_type": "student", + "full_name": "Gonzalez Gaona Raquel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24490, + "fields": { + "user": null, + "account_number": "41200453", + "user_type": "student", + "full_name": "Gonzalez Perez Sandra Vanessa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24491, + "fields": { + "user": null, + "account_number": "41200450", + "user_type": "student", + "full_name": "Luz Luz Eric De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24492, + "fields": { + "user": null, + "account_number": "41200429", + "user_type": "student", + "full_name": "Pimentel Mejia Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24493, + "fields": { + "user": null, + "account_number": "41200419", + "user_type": "student", + "full_name": "Moreno Rea Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24494, + "fields": { + "user": null, + "account_number": "41200407", + "user_type": "student", + "full_name": "De La Cruz Bautista Maria Del Rosario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24495, + "fields": { + "user": null, + "account_number": "41200406", + "user_type": "student", + "full_name": "Gonzalez Jimenez Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24496, + "fields": { + "user": null, + "account_number": "41200403", + "user_type": "student", + "full_name": "Fuentes Dominguez Donovan German" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24497, + "fields": { + "user": null, + "account_number": "41200398", + "user_type": "student", + "full_name": "Gonzalez Rico Diana Virginia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24498, + "fields": { + "user": null, + "account_number": "41200394", + "user_type": "student", + "full_name": "Garcia Casales Bryan Michael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24499, + "fields": { + "user": null, + "account_number": "41200391", + "user_type": "student", + "full_name": "Zaragoza Trejo Pamela Lilian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24500, + "fields": { + "user": null, + "account_number": "41200384", + "user_type": "student", + "full_name": "Palomino Amaro Maria Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24501, + "fields": { + "user": null, + "account_number": "41200380", + "user_type": "student", + "full_name": "Almazan Sifuentes Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24502, + "fields": { + "user": null, + "account_number": "41200366", + "user_type": "student", + "full_name": "Prado Lopez Jose Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24503, + "fields": { + "user": null, + "account_number": "41200359", + "user_type": "student", + "full_name": "Miranda Bravo Silvia Esther" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24504, + "fields": { + "user": null, + "account_number": "41200357", + "user_type": "student", + "full_name": "Martinez VillaseÑor Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24505, + "fields": { + "user": null, + "account_number": "41200334", + "user_type": "student", + "full_name": "Camacho Martinez Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24506, + "fields": { + "user": null, + "account_number": "41200331", + "user_type": "student", + "full_name": "Tejada Monroy Antonio Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24507, + "fields": { + "user": null, + "account_number": "41200327", + "user_type": "student", + "full_name": "Jimenez Martinez Brenda Yared" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24508, + "fields": { + "user": null, + "account_number": "41200295", + "user_type": "student", + "full_name": "Del Valle Armas Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24509, + "fields": { + "user": null, + "account_number": "41200293", + "user_type": "student", + "full_name": "Torres Davila Ivan Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24510, + "fields": { + "user": null, + "account_number": "41200282", + "user_type": "student", + "full_name": "Ramos Lozano Vanessa Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24511, + "fields": { + "user": null, + "account_number": "41200267", + "user_type": "student", + "full_name": "Montero Hernandez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24512, + "fields": { + "user": null, + "account_number": "41200262", + "user_type": "student", + "full_name": "Villalobos Hernandez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24513, + "fields": { + "user": null, + "account_number": "41200216", + "user_type": "student", + "full_name": "Perez Silva Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24514, + "fields": { + "user": null, + "account_number": "41200215", + "user_type": "student", + "full_name": "Avila Montalban Brian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24515, + "fields": { + "user": null, + "account_number": "41200213", + "user_type": "student", + "full_name": "Rogel Garcia Ali Ehebed" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24516, + "fields": { + "user": null, + "account_number": "41200206", + "user_type": "student", + "full_name": "Acevedo NuÑez Melisa Andrea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24517, + "fields": { + "user": null, + "account_number": "41200194", + "user_type": "student", + "full_name": "Blanco Corona Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24518, + "fields": { + "user": null, + "account_number": "41200191", + "user_type": "student", + "full_name": "Cid OrdoÑez Mario Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24519, + "fields": { + "user": null, + "account_number": "41200183", + "user_type": "student", + "full_name": "Torres Valdez Priscila" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24520, + "fields": { + "user": null, + "account_number": "41200158", + "user_type": "student", + "full_name": "Vargas Campos Karen Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24521, + "fields": { + "user": null, + "account_number": "41200114", + "user_type": "student", + "full_name": "Beltran Llorente Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24522, + "fields": { + "user": null, + "account_number": "41200113", + "user_type": "student", + "full_name": "Hernandez Herrera Annel Stephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24523, + "fields": { + "user": null, + "account_number": "41200108", + "user_type": "student", + "full_name": "MuÑoz Altamirano Sandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24524, + "fields": { + "user": null, + "account_number": "41200106", + "user_type": "student", + "full_name": "Gallegos Islas Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24525, + "fields": { + "user": null, + "account_number": "41200098", + "user_type": "student", + "full_name": "Rivas Montes Alejandra Aimee" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24526, + "fields": { + "user": null, + "account_number": "41200076", + "user_type": "student", + "full_name": "Nandayapa Gaytan Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24527, + "fields": { + "user": null, + "account_number": "41200069", + "user_type": "student", + "full_name": "Martinez Martinez Jonathan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24528, + "fields": { + "user": null, + "account_number": "41200058", + "user_type": "student", + "full_name": "Duran Castillo Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24529, + "fields": { + "user": null, + "account_number": "41200050", + "user_type": "student", + "full_name": "Campo Martinez Viviana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24530, + "fields": { + "user": null, + "account_number": "41200015", + "user_type": "student", + "full_name": "Olea Vallejo Jose Franco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24531, + "fields": { + "user": null, + "account_number": "41200013", + "user_type": "student", + "full_name": "Antonio Martinez Alejandro Farid" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24532, + "fields": { + "user": null, + "account_number": "41111912", + "user_type": "student", + "full_name": "Sanchez Arellano Julio Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24533, + "fields": { + "user": null, + "account_number": "41108853", + "user_type": "student", + "full_name": "Tapia Sanchez Omar Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24534, + "fields": { + "user": null, + "account_number": "41101419", + "user_type": "student", + "full_name": "Corona Perez Heber Uzziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24535, + "fields": { + "user": null, + "account_number": "41100360", + "user_type": "student", + "full_name": "Lopez Vera Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24536, + "fields": { + "user": null, + "account_number": "41100341", + "user_type": "student", + "full_name": "Ibarra Lopez Jesus Geovanny" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24537, + "fields": { + "user": null, + "account_number": "41008345", + "user_type": "student", + "full_name": "Carrion Rodriguez De San Miguel Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24538, + "fields": { + "user": null, + "account_number": "41006731", + "user_type": "student", + "full_name": "Garcia Monroy Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24539, + "fields": { + "user": null, + "account_number": "41005251", + "user_type": "student", + "full_name": "Gorostizaga Carrion Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24540, + "fields": { + "user": null, + "account_number": "41002059", + "user_type": "student", + "full_name": "Martinez Barajas Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24541, + "fields": { + "user": null, + "account_number": "40900926", + "user_type": "student", + "full_name": "Nolasco Hernandez Uriel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24542, + "fields": { + "user": null, + "account_number": "40706300", + "user_type": "student", + "full_name": "Sandoval Alvarez Angelica Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24543, + "fields": { + "user": null, + "account_number": "31071321", + "user_type": "student", + "full_name": "Rebollar Gomez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24544, + "fields": { + "user": null, + "account_number": "30973809", + "user_type": "student", + "full_name": "Flores Solis Yesenia Atzin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24545, + "fields": { + "user": null, + "account_number": "30970769", + "user_type": "student", + "full_name": "Rugerio Herrero Giovanna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24546, + "fields": { + "user": null, + "account_number": "30965558", + "user_type": "student", + "full_name": "Aguilar Mayen Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24547, + "fields": { + "user": null, + "account_number": "30961307", + "user_type": "student", + "full_name": "Salazar Alanis Jonathan De Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24548, + "fields": { + "user": null, + "account_number": "30958862", + "user_type": "student", + "full_name": "Garcia Rodriguez Ricardo Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24549, + "fields": { + "user": null, + "account_number": "30952938", + "user_type": "student", + "full_name": "Villarreal Cabrera Manuel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24550, + "fields": { + "user": null, + "account_number": "30952614", + "user_type": "student", + "full_name": "Aviles Arellano Dulce Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24551, + "fields": { + "user": null, + "account_number": "30950858", + "user_type": "student", + "full_name": "Uscanga Torres Graciela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24552, + "fields": { + "user": null, + "account_number": "30934663", + "user_type": "student", + "full_name": "Fuentes Montes Leslie Jacsirie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24553, + "fields": { + "user": null, + "account_number": "30932377", + "user_type": "student", + "full_name": "Torres Pineda Samuel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24554, + "fields": { + "user": null, + "account_number": "30932084", + "user_type": "student", + "full_name": "Rodriguez Liceaga Erick Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24555, + "fields": { + "user": null, + "account_number": "30931605", + "user_type": "student", + "full_name": "Ruiz Rios Estephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24556, + "fields": { + "user": null, + "account_number": "30931585", + "user_type": "student", + "full_name": "Rosales Herrera Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24557, + "fields": { + "user": null, + "account_number": "30931458", + "user_type": "student", + "full_name": "Ramirez Colin Lizbet Marisol" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24558, + "fields": { + "user": null, + "account_number": "30931072", + "user_type": "student", + "full_name": "Roldan Ramirez Maria De Los Angeles" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24559, + "fields": { + "user": null, + "account_number": "30930558", + "user_type": "student", + "full_name": "Prisciliano Martinez Mariana Massiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24560, + "fields": { + "user": null, + "account_number": "30930243", + "user_type": "student", + "full_name": "Reyes Escalera Leonardo Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24561, + "fields": { + "user": null, + "account_number": "30930050", + "user_type": "student", + "full_name": "Vargas Dionisio Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24562, + "fields": { + "user": null, + "account_number": "30929575", + "user_type": "student", + "full_name": "Rodriguez Santillan Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24563, + "fields": { + "user": null, + "account_number": "30928066", + "user_type": "student", + "full_name": "Santiago Suarez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24564, + "fields": { + "user": null, + "account_number": "30927963", + "user_type": "student", + "full_name": "Rivera Malagon Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24565, + "fields": { + "user": null, + "account_number": "30927631", + "user_type": "student", + "full_name": "Maya Sigales Ismael Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24566, + "fields": { + "user": null, + "account_number": "30927627", + "user_type": "student", + "full_name": "Munguia Reynoso Ricardo Axael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24567, + "fields": { + "user": null, + "account_number": "30927427", + "user_type": "student", + "full_name": "Monroy Garcia Hilary Marlen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24568, + "fields": { + "user": null, + "account_number": "30926360", + "user_type": "student", + "full_name": "Navarro Sanchez Alan Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24569, + "fields": { + "user": null, + "account_number": "30922259", + "user_type": "student", + "full_name": "Ocomatl Olaya Jose Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24570, + "fields": { + "user": null, + "account_number": "30919315", + "user_type": "student", + "full_name": "Meraz Ledesma Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24571, + "fields": { + "user": null, + "account_number": "30916315", + "user_type": "student", + "full_name": "Ortiz Perez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24572, + "fields": { + "user": null, + "account_number": "30916030", + "user_type": "student", + "full_name": "Torres Lopez Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24573, + "fields": { + "user": null, + "account_number": "30915935", + "user_type": "student", + "full_name": "Santiago Jacobo Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24574, + "fields": { + "user": null, + "account_number": "30915872", + "user_type": "student", + "full_name": "Serafin Duran Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24575, + "fields": { + "user": null, + "account_number": "30915073", + "user_type": "student", + "full_name": "Ortiz Hernandez Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24576, + "fields": { + "user": null, + "account_number": "30914059", + "user_type": "student", + "full_name": "Gonzalez Osornio Behtzabee" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24577, + "fields": { + "user": null, + "account_number": "30914027", + "user_type": "student", + "full_name": "Gomez Zeferino Raquel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24578, + "fields": { + "user": null, + "account_number": "30913966", + "user_type": "student", + "full_name": "Gomez Ramirez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24579, + "fields": { + "user": null, + "account_number": "30913947", + "user_type": "student", + "full_name": "Embriz Islas Cesar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24580, + "fields": { + "user": null, + "account_number": "30913391", + "user_type": "student", + "full_name": "Vivar Mendoza Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24581, + "fields": { + "user": null, + "account_number": "30910302", + "user_type": "student", + "full_name": "Chavarria Torres Carlos Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24582, + "fields": { + "user": null, + "account_number": "30910239", + "user_type": "student", + "full_name": "Cruz Dotor Jennifer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24583, + "fields": { + "user": null, + "account_number": "30909841", + "user_type": "student", + "full_name": "Socorro Mohedano Jaime Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24584, + "fields": { + "user": null, + "account_number": "30909393", + "user_type": "student", + "full_name": "Guadarrama De La Cruz Alan Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24585, + "fields": { + "user": null, + "account_number": "30909170", + "user_type": "student", + "full_name": "Buendia Alvarez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24586, + "fields": { + "user": null, + "account_number": "30908573", + "user_type": "student", + "full_name": "Campos Aparicio Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24587, + "fields": { + "user": null, + "account_number": "30907695", + "user_type": "student", + "full_name": "Flores Sotelo Sheila Stephanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24588, + "fields": { + "user": null, + "account_number": "30906476", + "user_type": "student", + "full_name": "Cabrera AcuÑa Ricardo Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24589, + "fields": { + "user": null, + "account_number": "30905682", + "user_type": "student", + "full_name": "Antonio Joaquin Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24590, + "fields": { + "user": null, + "account_number": "30904025", + "user_type": "student", + "full_name": "Chavez Zaldivar Lizzete Geraldine" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24591, + "fields": { + "user": null, + "account_number": "30903177", + "user_type": "student", + "full_name": "Hernandez Ayala Irvin Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24592, + "fields": { + "user": null, + "account_number": "30902487", + "user_type": "student", + "full_name": "Arana Romero Jorge Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24593, + "fields": { + "user": null, + "account_number": "30902407", + "user_type": "student", + "full_name": "Chino Cruz Andres Alonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24594, + "fields": { + "user": null, + "account_number": "30872451", + "user_type": "student", + "full_name": "Valle Fuentes Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24595, + "fields": { + "user": null, + "account_number": "30869683", + "user_type": "student", + "full_name": "Mayen Marquez Ricardo Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24596, + "fields": { + "user": null, + "account_number": "30850666", + "user_type": "student", + "full_name": "Del Rio Rodarte Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24597, + "fields": { + "user": null, + "account_number": "30834245", + "user_type": "student", + "full_name": "Toriz Flores Jesus Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24598, + "fields": { + "user": null, + "account_number": "30833309", + "user_type": "student", + "full_name": "Ceron Jaime Julieta Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24599, + "fields": { + "user": null, + "account_number": "30829945", + "user_type": "student", + "full_name": "Santillan Garcia Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24600, + "fields": { + "user": null, + "account_number": "30829372", + "user_type": "student", + "full_name": "Martinez Navarro Hector Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24601, + "fields": { + "user": null, + "account_number": "30829180", + "user_type": "student", + "full_name": "Salas Montiel Jannet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24602, + "fields": { + "user": null, + "account_number": "30829005", + "user_type": "student", + "full_name": "Rosas Mendieta Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24603, + "fields": { + "user": null, + "account_number": "30828506", + "user_type": "student", + "full_name": "Solano Nava Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24604, + "fields": { + "user": null, + "account_number": "30827639", + "user_type": "student", + "full_name": "Ruiz Franco Daniel Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24605, + "fields": { + "user": null, + "account_number": "30824795", + "user_type": "student", + "full_name": "Roa Espinosa Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24606, + "fields": { + "user": null, + "account_number": "30824011", + "user_type": "student", + "full_name": "Ramirez Torres Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24607, + "fields": { + "user": null, + "account_number": "30823535", + "user_type": "student", + "full_name": "Santillan Escobar Johnatan Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24608, + "fields": { + "user": null, + "account_number": "30823488", + "user_type": "student", + "full_name": "Ramirez Diego Nallely Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24609, + "fields": { + "user": null, + "account_number": "30822744", + "user_type": "student", + "full_name": "Orozco Meza Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24610, + "fields": { + "user": null, + "account_number": "30818820", + "user_type": "student", + "full_name": "Acevedo Hernandez Alan Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24611, + "fields": { + "user": null, + "account_number": "30818797", + "user_type": "student", + "full_name": "Abaroa Moreno Fausto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24612, + "fields": { + "user": null, + "account_number": "30816977", + "user_type": "student", + "full_name": "BolaÑos Garcia Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24613, + "fields": { + "user": null, + "account_number": "30816193", + "user_type": "student", + "full_name": "Castillo Cruz Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24614, + "fields": { + "user": null, + "account_number": "30815489", + "user_type": "student", + "full_name": "Sanchez Sanchez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24615, + "fields": { + "user": null, + "account_number": "30815437", + "user_type": "student", + "full_name": "Sanchez Hernandez Paola Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24616, + "fields": { + "user": null, + "account_number": "30815409", + "user_type": "student", + "full_name": "Rossainz Bernal Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24617, + "fields": { + "user": null, + "account_number": "30814046", + "user_type": "student", + "full_name": "Hernandez Rojas Jose Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24618, + "fields": { + "user": null, + "account_number": "30813695", + "user_type": "student", + "full_name": "Rojas Flores Cesar Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24619, + "fields": { + "user": null, + "account_number": "30813587", + "user_type": "student", + "full_name": "Perez Rodriguez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24620, + "fields": { + "user": null, + "account_number": "30811819", + "user_type": "student", + "full_name": "Perez Zalazar Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24621, + "fields": { + "user": null, + "account_number": "30811579", + "user_type": "student", + "full_name": "Ledesma Diaz Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24622, + "fields": { + "user": null, + "account_number": "30811000", + "user_type": "student", + "full_name": "Vega Olivares Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24623, + "fields": { + "user": null, + "account_number": "30810086", + "user_type": "student", + "full_name": "Ortiz Rubio Rogelio Hidalgo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24624, + "fields": { + "user": null, + "account_number": "30810035", + "user_type": "student", + "full_name": "Perez Magallon David Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24625, + "fields": { + "user": null, + "account_number": "30809969", + "user_type": "student", + "full_name": "Marquez Elizalde Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24626, + "fields": { + "user": null, + "account_number": "30808973", + "user_type": "student", + "full_name": "Jimenez Hernandez Victor Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24627, + "fields": { + "user": null, + "account_number": "30807515", + "user_type": "student", + "full_name": "De La Cruz Jimenez Abimael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24628, + "fields": { + "user": null, + "account_number": "30804063", + "user_type": "student", + "full_name": "Garcia Rodriguez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24629, + "fields": { + "user": null, + "account_number": "30801520", + "user_type": "student", + "full_name": "Blancas Balderas Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24630, + "fields": { + "user": null, + "account_number": "30801233", + "user_type": "student", + "full_name": "Alcantar Romero Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24631, + "fields": { + "user": null, + "account_number": "30800678", + "user_type": "student", + "full_name": "Arteaga Perez Jorge Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24632, + "fields": { + "user": null, + "account_number": "30768819", + "user_type": "student", + "full_name": "Ramos Salas Maria Eugenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24633, + "fields": { + "user": null, + "account_number": "30732725", + "user_type": "student", + "full_name": "Oseguera Lopez Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24634, + "fields": { + "user": null, + "account_number": "30732386", + "user_type": "student", + "full_name": "Rivera Vazquez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24635, + "fields": { + "user": null, + "account_number": "30732083", + "user_type": "student", + "full_name": "Tellez Quinto Nancy Edith" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24636, + "fields": { + "user": null, + "account_number": "30731691", + "user_type": "student", + "full_name": "Rodriguez Gutierrez Giovanni Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24637, + "fields": { + "user": null, + "account_number": "30730457", + "user_type": "student", + "full_name": "Mendoza DueÑas Ivan Paris" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24638, + "fields": { + "user": null, + "account_number": "30729545", + "user_type": "student", + "full_name": "Urbina Sanchez Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24639, + "fields": { + "user": null, + "account_number": "30727836", + "user_type": "student", + "full_name": "Lira Paredes Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24640, + "fields": { + "user": null, + "account_number": "30727749", + "user_type": "student", + "full_name": "Perez Vargas Juan Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24641, + "fields": { + "user": null, + "account_number": "30726983", + "user_type": "student", + "full_name": "NuÑez Avalos Angel De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24642, + "fields": { + "user": null, + "account_number": "30725854", + "user_type": "student", + "full_name": "Jimenez Rosas Jazmin Yaritza" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24643, + "fields": { + "user": null, + "account_number": "30721707", + "user_type": "student", + "full_name": "Garcia Fernandez Ricardo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24644, + "fields": { + "user": null, + "account_number": "30720478", + "user_type": "student", + "full_name": "Marin Vizcaya Jesus Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24645, + "fields": { + "user": null, + "account_number": "30720266", + "user_type": "student", + "full_name": "Osante Leyva Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24646, + "fields": { + "user": null, + "account_number": "30717857", + "user_type": "student", + "full_name": "Perez Maldonado Antonio De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24647, + "fields": { + "user": null, + "account_number": "30716498", + "user_type": "student", + "full_name": "Hernandez Ramirez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24648, + "fields": { + "user": null, + "account_number": "30714942", + "user_type": "student", + "full_name": "Ramirez Resendiz Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24649, + "fields": { + "user": null, + "account_number": "30713472", + "user_type": "student", + "full_name": "Hernandez Sosa Javier Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24650, + "fields": { + "user": null, + "account_number": "30710624", + "user_type": "student", + "full_name": "Lugo Jauregui Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24651, + "fields": { + "user": null, + "account_number": "30710406", + "user_type": "student", + "full_name": "Camacho Silva Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24652, + "fields": { + "user": null, + "account_number": "30710383", + "user_type": "student", + "full_name": "Carrillo Guerrero Juan Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24653, + "fields": { + "user": null, + "account_number": "30710319", + "user_type": "student", + "full_name": "Albiter Villanueva Elaine" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24654, + "fields": { + "user": null, + "account_number": "30707770", + "user_type": "student", + "full_name": "Figueroa Garcia Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24655, + "fields": { + "user": null, + "account_number": "30707760", + "user_type": "student", + "full_name": "Enriquez Guerrero Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24656, + "fields": { + "user": null, + "account_number": "30706951", + "user_type": "student", + "full_name": "Hernandez Villegas Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24657, + "fields": { + "user": null, + "account_number": "30706948", + "user_type": "student", + "full_name": "Hernandez Reyes Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24658, + "fields": { + "user": null, + "account_number": "30704480", + "user_type": "student", + "full_name": "PatiÑo Esqueda Mario Emilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24659, + "fields": { + "user": null, + "account_number": "30700474", + "user_type": "student", + "full_name": "Becerril Malvaez Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24660, + "fields": { + "user": null, + "account_number": "30651929", + "user_type": "student", + "full_name": "Alaniz Perez Jose David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24661, + "fields": { + "user": null, + "account_number": "30633637", + "user_type": "student", + "full_name": "Morales Castellanos Antonio De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24662, + "fields": { + "user": null, + "account_number": "30633490", + "user_type": "student", + "full_name": "Garcia Robles Guillermo Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24663, + "fields": { + "user": null, + "account_number": "30632789", + "user_type": "student", + "full_name": "Villalva Rivera Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24664, + "fields": { + "user": null, + "account_number": "30632028", + "user_type": "student", + "full_name": "Olvera Perez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24665, + "fields": { + "user": null, + "account_number": "30631864", + "user_type": "student", + "full_name": "Tapia Marcial Cristian Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24666, + "fields": { + "user": null, + "account_number": "30629595", + "user_type": "student", + "full_name": "Tenorio Palmas Eli Asuay" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24667, + "fields": { + "user": null, + "account_number": "30628273", + "user_type": "student", + "full_name": "Carrillo Rosas Hector Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24668, + "fields": { + "user": null, + "account_number": "30627954", + "user_type": "student", + "full_name": "Garcia Martinez Manuel Geronimo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24669, + "fields": { + "user": null, + "account_number": "30626613", + "user_type": "student", + "full_name": "Murillo Tristan Amauri" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24670, + "fields": { + "user": null, + "account_number": "30625789", + "user_type": "student", + "full_name": "Cagal Xolo Saydel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24671, + "fields": { + "user": null, + "account_number": "30624935", + "user_type": "student", + "full_name": "Chavarria Velasco Juan Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24672, + "fields": { + "user": null, + "account_number": "30623331", + "user_type": "student", + "full_name": "Sanchez Rodriguez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24673, + "fields": { + "user": null, + "account_number": "30622523", + "user_type": "student", + "full_name": "Salazar Soto Tania" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24674, + "fields": { + "user": null, + "account_number": "30621555", + "user_type": "student", + "full_name": "Ramirez Olvera Cesar Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24675, + "fields": { + "user": null, + "account_number": "30619424", + "user_type": "student", + "full_name": "Torres Lopez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24676, + "fields": { + "user": null, + "account_number": "30618250", + "user_type": "student", + "full_name": "Malagon Ramirez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24677, + "fields": { + "user": null, + "account_number": "30616991", + "user_type": "student", + "full_name": "Rodriguez Sierra Jose Luis Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24678, + "fields": { + "user": null, + "account_number": "30616142", + "user_type": "student", + "full_name": "Hernandez Hernandez Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24679, + "fields": { + "user": null, + "account_number": "30615427", + "user_type": "student", + "full_name": "Cruz Vega Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24680, + "fields": { + "user": null, + "account_number": "30614310", + "user_type": "student", + "full_name": "Hernandez Portillo Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24681, + "fields": { + "user": null, + "account_number": "30613773", + "user_type": "student", + "full_name": "Flores Balbuena Carina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24682, + "fields": { + "user": null, + "account_number": "30613645", + "user_type": "student", + "full_name": "Cruz Paulino Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24683, + "fields": { + "user": null, + "account_number": "30611913", + "user_type": "student", + "full_name": "Vital Arguelles Jesus Norberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24684, + "fields": { + "user": null, + "account_number": "30610134", + "user_type": "student", + "full_name": "Chavando Rojas Carlos Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24685, + "fields": { + "user": null, + "account_number": "30610111", + "user_type": "student", + "full_name": "Carrasco Velazquez Einar Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24686, + "fields": { + "user": null, + "account_number": "30609320", + "user_type": "student", + "full_name": "Estudillo Alvarez Fernando Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24687, + "fields": { + "user": null, + "account_number": "30609203", + "user_type": "student", + "full_name": "Perez Gonzalez Erik Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24688, + "fields": { + "user": null, + "account_number": "30609188", + "user_type": "student", + "full_name": "Morales Santillan Jose Benito" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24689, + "fields": { + "user": null, + "account_number": "30606900", + "user_type": "student", + "full_name": "Acevedo Ramirez Jose Fabian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24690, + "fields": { + "user": null, + "account_number": "30606182", + "user_type": "student", + "full_name": "Martinez Garcia Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24691, + "fields": { + "user": null, + "account_number": "30602512", + "user_type": "student", + "full_name": "Monsalvo Maldonado Leon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24692, + "fields": { + "user": null, + "account_number": "30601707", + "user_type": "student", + "full_name": "Caballero Hernandez Hugo Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24693, + "fields": { + "user": null, + "account_number": "30600570", + "user_type": "student", + "full_name": "Garcia Ramirez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24694, + "fields": { + "user": null, + "account_number": "30527130", + "user_type": "student", + "full_name": "Mondragon Jayme Erick Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24695, + "fields": { + "user": null, + "account_number": "30519018", + "user_type": "student", + "full_name": "Deseusa Lopez Luis Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24696, + "fields": { + "user": null, + "account_number": "30517965", + "user_type": "student", + "full_name": "Velasco Villagran Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24697, + "fields": { + "user": null, + "account_number": "30517703", + "user_type": "student", + "full_name": "Torres Aguirre Luis Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24698, + "fields": { + "user": null, + "account_number": "30517690", + "user_type": "student", + "full_name": "Tapia Guerrero Luis Damian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24699, + "fields": { + "user": null, + "account_number": "30508809", + "user_type": "student", + "full_name": "Gonzalez Hernandez Elena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24700, + "fields": { + "user": null, + "account_number": "30506385", + "user_type": "student", + "full_name": "Cruz Corona Carlos Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24701, + "fields": { + "user": null, + "account_number": "30504617", + "user_type": "student", + "full_name": "Flores Rodriguez Ramon Arnulfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24702, + "fields": { + "user": null, + "account_number": "30503103", + "user_type": "student", + "full_name": "Galvan Macias Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24703, + "fields": { + "user": null, + "account_number": "30502182", + "user_type": "student", + "full_name": "Sanchez Pelaez Stephanye" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24704, + "fields": { + "user": null, + "account_number": "30430702", + "user_type": "student", + "full_name": "MuciÑo Murillo Adrian Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24705, + "fields": { + "user": null, + "account_number": "30415444", + "user_type": "student", + "full_name": "Sanchez Martinez Genaro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24706, + "fields": { + "user": null, + "account_number": "30414423", + "user_type": "student", + "full_name": "Venegas CureÑo Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24707, + "fields": { + "user": null, + "account_number": "30411995", + "user_type": "student", + "full_name": "Flores Martinez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24708, + "fields": { + "user": null, + "account_number": "30406323", + "user_type": "student", + "full_name": "Guzman Zavala Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24709, + "fields": { + "user": null, + "account_number": "30405595", + "user_type": "student", + "full_name": "Acevedo Moreno Victor Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24710, + "fields": { + "user": null, + "account_number": "30400416", + "user_type": "student", + "full_name": "Esquivel Solis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24711, + "fields": { + "user": null, + "account_number": "30365246", + "user_type": "student", + "full_name": "PeÑafiel Sanchez Christopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24712, + "fields": { + "user": null, + "account_number": "30354953", + "user_type": "student", + "full_name": "Fleiz Jaso Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24713, + "fields": { + "user": null, + "account_number": "30334465", + "user_type": "student", + "full_name": "Rivera Melchor Christian Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24714, + "fields": { + "user": null, + "account_number": "30330831", + "user_type": "student", + "full_name": "Curiel Jimenez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24715, + "fields": { + "user": null, + "account_number": "30321780", + "user_type": "student", + "full_name": "Martinez Galicia Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24716, + "fields": { + "user": null, + "account_number": "30319125", + "user_type": "student", + "full_name": "Del Olmo Najera Edgar Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24717, + "fields": { + "user": null, + "account_number": "30307443", + "user_type": "student", + "full_name": "Cardoso Cruz Diego Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24718, + "fields": { + "user": null, + "account_number": "30303906", + "user_type": "student", + "full_name": "Salazar Villanueva Daniel Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24719, + "fields": { + "user": null, + "account_number": "30227145", + "user_type": "student", + "full_name": "Martinez Reyes Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24720, + "fields": { + "user": null, + "account_number": "30225216", + "user_type": "student", + "full_name": "Delgado Gomez Elvia Topacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24721, + "fields": { + "user": null, + "account_number": "30202913", + "user_type": "student", + "full_name": "Steinemann Hernandez Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24722, + "fields": { + "user": null, + "account_number": "30132774", + "user_type": "student", + "full_name": "Hernandez Miramontes Victor Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24723, + "fields": { + "user": null, + "account_number": "30130474", + "user_type": "student", + "full_name": "Lopez Vazquez Omar Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24724, + "fields": { + "user": null, + "account_number": "30080822", + "user_type": "student", + "full_name": "Andrade Flores Arlette Elena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24725, + "fields": { + "user": null, + "account_number": "30027439", + "user_type": "student", + "full_name": "Guerrero Herrera Luis Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24726, + "fields": { + "user": null, + "account_number": "10500018", + "user_type": "student", + "full_name": "Anzures Vega Adan Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24727, + "fields": { + "user": null, + "account_number": "09917837", + "user_type": "student", + "full_name": "Lozada Morales Omar Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24728, + "fields": { + "user": null, + "account_number": "09830933", + "user_type": "student", + "full_name": "Soto Esquivel Jorge Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24729, + "fields": { + "user": null, + "account_number": "09813652", + "user_type": "student", + "full_name": "Lopez Ceron Aurelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24730, + "fields": { + "user": null, + "account_number": "09323313", + "user_type": "student", + "full_name": "Mondragon Palomares Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24731, + "fields": { + "user": null, + "account_number": "08930919", + "user_type": "student", + "full_name": "GarduÑo Gonzalez Pedro Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24732, + "fields": { + "user": null, + "account_number": "08902019", + "user_type": "student", + "full_name": "Tomas Diaz Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24733, + "fields": { + "user": null, + "account_number": "08809672", + "user_type": "student", + "full_name": "Pio Cruz Aurelio Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24734, + "fields": { + "user": null, + "account_number": "41149049", + "user_type": "student", + "full_name": "Sandoval Falcon Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24735, + "fields": { + "user": null, + "account_number": "41112807", + "user_type": "student", + "full_name": "Singh Sachan Anubhav Nikunj" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24736, + "fields": { + "user": null, + "account_number": "41110023", + "user_type": "student", + "full_name": "Rodriguez Flores Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24737, + "fields": { + "user": null, + "account_number": "41110019", + "user_type": "student", + "full_name": "Garcia Alvarez Jose Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24738, + "fields": { + "user": null, + "account_number": "41110018", + "user_type": "student", + "full_name": "Carreon Ortiz Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24739, + "fields": { + "user": null, + "account_number": "41110015", + "user_type": "student", + "full_name": "Chavero Avila Erika" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24740, + "fields": { + "user": null, + "account_number": "41110014", + "user_type": "student", + "full_name": "Hidalgo Pichardo Jose Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24741, + "fields": { + "user": null, + "account_number": "41109960", + "user_type": "student", + "full_name": "Aguilar Macias Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24742, + "fields": { + "user": null, + "account_number": "41109905", + "user_type": "student", + "full_name": "Juarez BolaÑos Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24743, + "fields": { + "user": null, + "account_number": "41109897", + "user_type": "student", + "full_name": "Vilchez Canales Luis Rene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24744, + "fields": { + "user": null, + "account_number": "41109864", + "user_type": "student", + "full_name": "Perez Prieto Obed Gael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24745, + "fields": { + "user": null, + "account_number": "41109860", + "user_type": "student", + "full_name": "Valdez Velasco Juan Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24746, + "fields": { + "user": null, + "account_number": "41109840", + "user_type": "student", + "full_name": "Jose Garcia Rocio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24747, + "fields": { + "user": null, + "account_number": "41109825", + "user_type": "student", + "full_name": "Reyes Leyva Daniel Arcadio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24748, + "fields": { + "user": null, + "account_number": "41109824", + "user_type": "student", + "full_name": "Ramirez Carrillo Karla Jesica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24749, + "fields": { + "user": null, + "account_number": "41109812", + "user_type": "student", + "full_name": "Villavicencio Reyes Josue Gamaliel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24750, + "fields": { + "user": null, + "account_number": "41109806", + "user_type": "student", + "full_name": "Perez Hernandez Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24751, + "fields": { + "user": null, + "account_number": "41109769", + "user_type": "student", + "full_name": "Rivera Salvador Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24752, + "fields": { + "user": null, + "account_number": "41109768", + "user_type": "student", + "full_name": "Galvan PeÑa Marilu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24753, + "fields": { + "user": null, + "account_number": "41109749", + "user_type": "student", + "full_name": "Tavares Vazquez Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24754, + "fields": { + "user": null, + "account_number": "41109721", + "user_type": "student", + "full_name": "Diaz Aviles Christian Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24755, + "fields": { + "user": null, + "account_number": "41109715", + "user_type": "student", + "full_name": "NuÑez Corral Alvaro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24756, + "fields": { + "user": null, + "account_number": "41109691", + "user_type": "student", + "full_name": "Crispin Rocha Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24757, + "fields": { + "user": null, + "account_number": "41109686", + "user_type": "student", + "full_name": "Landa Martinez Alan Elihu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24758, + "fields": { + "user": null, + "account_number": "41109659", + "user_type": "student", + "full_name": "Loza Arevalo Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24759, + "fields": { + "user": null, + "account_number": "41109650", + "user_type": "student", + "full_name": "Guerrero Maldonado Ana Belen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24760, + "fields": { + "user": null, + "account_number": "41109574", + "user_type": "student", + "full_name": "Sanchez Reyes Yadira Jennifer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24761, + "fields": { + "user": null, + "account_number": "41109524", + "user_type": "student", + "full_name": "Gutierrez Posadas Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24762, + "fields": { + "user": null, + "account_number": "41109519", + "user_type": "student", + "full_name": "Rodriguez Olvera Erik" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24763, + "fields": { + "user": null, + "account_number": "41109494", + "user_type": "student", + "full_name": "Hernandez Rivera Jonathan Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24764, + "fields": { + "user": null, + "account_number": "41109433", + "user_type": "student", + "full_name": "Ortiz Garcia Alan Michael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24765, + "fields": { + "user": null, + "account_number": "41109398", + "user_type": "student", + "full_name": "Velazquez Lucio Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24766, + "fields": { + "user": null, + "account_number": "41109380", + "user_type": "student", + "full_name": "Gutierrez Filorio Cesar Jazzamoart" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24767, + "fields": { + "user": null, + "account_number": "41109374", + "user_type": "student", + "full_name": "Antonio Gonzalez Reyes" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24768, + "fields": { + "user": null, + "account_number": "41109333", + "user_type": "student", + "full_name": "Robles Castro Yoloxochitl" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24769, + "fields": { + "user": null, + "account_number": "41109311", + "user_type": "student", + "full_name": "Aguilar Sanchez Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24770, + "fields": { + "user": null, + "account_number": "41109270", + "user_type": "student", + "full_name": "Tellez Sanchez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24771, + "fields": { + "user": null, + "account_number": "41109212", + "user_type": "student", + "full_name": "Bibiano Sandoval Gustavo Adolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24772, + "fields": { + "user": null, + "account_number": "41109195", + "user_type": "student", + "full_name": "Sanchez Trejo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24773, + "fields": { + "user": null, + "account_number": "41109172", + "user_type": "student", + "full_name": "Mendoza Cruz Raul Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24774, + "fields": { + "user": null, + "account_number": "41109155", + "user_type": "student", + "full_name": "Puga Leon Wendy Yareli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24775, + "fields": { + "user": null, + "account_number": "41109098", + "user_type": "student", + "full_name": "Raya Sanchez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24776, + "fields": { + "user": null, + "account_number": "41109036", + "user_type": "student", + "full_name": "Papacristofilou Escartin Alejandra Georgina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24777, + "fields": { + "user": null, + "account_number": "41108966", + "user_type": "student", + "full_name": "Garcia Frias Janet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24778, + "fields": { + "user": null, + "account_number": "41108899", + "user_type": "student", + "full_name": "Villegas Corona Luis Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24779, + "fields": { + "user": null, + "account_number": "41108817", + "user_type": "student", + "full_name": "Rincon Arellanes Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24780, + "fields": { + "user": null, + "account_number": "41108771", + "user_type": "student", + "full_name": "Gonzalez Reyes Jose Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24781, + "fields": { + "user": null, + "account_number": "41108759", + "user_type": "student", + "full_name": "Rosales Quintanar Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24782, + "fields": { + "user": null, + "account_number": "41108737", + "user_type": "student", + "full_name": "Miranda De La Cruz Alan Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24783, + "fields": { + "user": null, + "account_number": "41108736", + "user_type": "student", + "full_name": "Gutierrez Antonio Esteban Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24784, + "fields": { + "user": null, + "account_number": "41108728", + "user_type": "student", + "full_name": "Duran Solis Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24785, + "fields": { + "user": null, + "account_number": "41108720", + "user_type": "student", + "full_name": "Sanchez Sanchez Ana Daleth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24786, + "fields": { + "user": null, + "account_number": "41108700", + "user_type": "student", + "full_name": "Carmona Garcia Laura Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24787, + "fields": { + "user": null, + "account_number": "41108568", + "user_type": "student", + "full_name": "Gomez Mendiola Jorge Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24788, + "fields": { + "user": null, + "account_number": "41108553", + "user_type": "student", + "full_name": "Carranza Rodriguez Saira Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24789, + "fields": { + "user": null, + "account_number": "41108452", + "user_type": "student", + "full_name": "Zaragoza Garcia Jhon Cristopher" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24790, + "fields": { + "user": null, + "account_number": "41108417", + "user_type": "student", + "full_name": "Arias Sanchez Jorge Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24791, + "fields": { + "user": null, + "account_number": "41108406", + "user_type": "student", + "full_name": "Hernandez Hernandez Alexander Esau" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24792, + "fields": { + "user": null, + "account_number": "41108301", + "user_type": "student", + "full_name": "Marquez Urbano Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24793, + "fields": { + "user": null, + "account_number": "41108265", + "user_type": "student", + "full_name": "Reyes Jimenez Wendy Nitze" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24794, + "fields": { + "user": null, + "account_number": "41108227", + "user_type": "student", + "full_name": "Mauricio Tovar Olvera" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24795, + "fields": { + "user": null, + "account_number": "41108159", + "user_type": "student", + "full_name": "Buendia Pichardo Josue Moises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24796, + "fields": { + "user": null, + "account_number": "41108085", + "user_type": "student", + "full_name": "Perez Dominguez Jose Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24797, + "fields": { + "user": null, + "account_number": "41108065", + "user_type": "student", + "full_name": "Jimenez Ramos Elias" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24798, + "fields": { + "user": null, + "account_number": "41108033", + "user_type": "student", + "full_name": "Amador Iturbide Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24799, + "fields": { + "user": null, + "account_number": "41107999", + "user_type": "student", + "full_name": "Torres Orozco Victor Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24800, + "fields": { + "user": null, + "account_number": "41107988", + "user_type": "student", + "full_name": "Leyva Espinoza Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24801, + "fields": { + "user": null, + "account_number": "41107978", + "user_type": "student", + "full_name": "Gonzalez Hernandez Katia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24802, + "fields": { + "user": null, + "account_number": "41107961", + "user_type": "student", + "full_name": "Sanchez Ortega Eloisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24803, + "fields": { + "user": null, + "account_number": "41107929", + "user_type": "student", + "full_name": "Cardenas Lara Diego Gamaliel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24804, + "fields": { + "user": null, + "account_number": "41107875", + "user_type": "student", + "full_name": "Vargas Escamilla Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24805, + "fields": { + "user": null, + "account_number": "41107860", + "user_type": "student", + "full_name": "Valenzuela Martinez Ricardo Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24806, + "fields": { + "user": null, + "account_number": "41107778", + "user_type": "student", + "full_name": "Morales Narvaez Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24807, + "fields": { + "user": null, + "account_number": "41107734", + "user_type": "student", + "full_name": "Vazquez Negrete Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24808, + "fields": { + "user": null, + "account_number": "41107733", + "user_type": "student", + "full_name": "Dominguez Francisco Yadira Verenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24809, + "fields": { + "user": null, + "account_number": "41107686", + "user_type": "student", + "full_name": "Martinez Gonzalez Victor Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24810, + "fields": { + "user": null, + "account_number": "41107679", + "user_type": "student", + "full_name": "Solache Ramos Tomas" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24811, + "fields": { + "user": null, + "account_number": "41107627", + "user_type": "student", + "full_name": "Martinez Hernandez Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24812, + "fields": { + "user": null, + "account_number": "41107559", + "user_type": "student", + "full_name": "Flores Velasco Janeht" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24813, + "fields": { + "user": null, + "account_number": "41107525", + "user_type": "student", + "full_name": "Lopez Urias Raul Ascencion" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24814, + "fields": { + "user": null, + "account_number": "41107482", + "user_type": "student", + "full_name": "Quijon Hipolito Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24815, + "fields": { + "user": null, + "account_number": "41107425", + "user_type": "student", + "full_name": "Quintero Huerta Olga Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24816, + "fields": { + "user": null, + "account_number": "41107416", + "user_type": "student", + "full_name": "Robles Lopez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24817, + "fields": { + "user": null, + "account_number": "41107411", + "user_type": "student", + "full_name": "Barroso Gonzalez Jacqueline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24818, + "fields": { + "user": null, + "account_number": "41107391", + "user_type": "student", + "full_name": "Trujillo Dorado David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24819, + "fields": { + "user": null, + "account_number": "41107331", + "user_type": "student", + "full_name": "De La Fuente Gonzalez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24820, + "fields": { + "user": null, + "account_number": "41107328", + "user_type": "student", + "full_name": "Trujillo Nolasco Yuliana Ivette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24821, + "fields": { + "user": null, + "account_number": "41107293", + "user_type": "student", + "full_name": "Fuentes Tapia Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24822, + "fields": { + "user": null, + "account_number": "41107277", + "user_type": "student", + "full_name": "Contreras Ocadiz Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24823, + "fields": { + "user": null, + "account_number": "41107231", + "user_type": "student", + "full_name": "Lima Martinez Carlos Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24824, + "fields": { + "user": null, + "account_number": "41107213", + "user_type": "student", + "full_name": "Salgado Culebrina Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24825, + "fields": { + "user": null, + "account_number": "41107209", + "user_type": "student", + "full_name": "Hernandez Castro Cristhian Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24826, + "fields": { + "user": null, + "account_number": "41107193", + "user_type": "student", + "full_name": "Alvarez Romero Luis Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24827, + "fields": { + "user": null, + "account_number": "41107051", + "user_type": "student", + "full_name": "Teran Espinoza Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24828, + "fields": { + "user": null, + "account_number": "41107034", + "user_type": "student", + "full_name": "Hernandez Ortiz Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24829, + "fields": { + "user": null, + "account_number": "41107025", + "user_type": "student", + "full_name": "Atilano Carbajal Aaron Zentli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24830, + "fields": { + "user": null, + "account_number": "41106980", + "user_type": "student", + "full_name": "Morales Flores Efren" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24831, + "fields": { + "user": null, + "account_number": "41106865", + "user_type": "student", + "full_name": "Calderon Ramos Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24832, + "fields": { + "user": null, + "account_number": "41106853", + "user_type": "student", + "full_name": "Vazquez Moreno Giovanna Eloisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24833, + "fields": { + "user": null, + "account_number": "41106804", + "user_type": "student", + "full_name": "Manzano Contreras Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24834, + "fields": { + "user": null, + "account_number": "41106776", + "user_type": "student", + "full_name": "Arellanes Rios Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24835, + "fields": { + "user": null, + "account_number": "41106731", + "user_type": "student", + "full_name": "Hernandez Sanchez Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24836, + "fields": { + "user": null, + "account_number": "41106723", + "user_type": "student", + "full_name": "Mireles Gonzalez Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24837, + "fields": { + "user": null, + "account_number": "41104625", + "user_type": "student", + "full_name": "Veloz Cano Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24838, + "fields": { + "user": null, + "account_number": "41104514", + "user_type": "student", + "full_name": "Ramon Rodriguez Graciela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24839, + "fields": { + "user": null, + "account_number": "41104492", + "user_type": "student", + "full_name": "Gonzalez Suarez Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24840, + "fields": { + "user": null, + "account_number": "41104218", + "user_type": "student", + "full_name": "Guevara Alcantara Wendy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24841, + "fields": { + "user": null, + "account_number": "41104106", + "user_type": "student", + "full_name": "Galicia Mayorga Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24842, + "fields": { + "user": null, + "account_number": "41104089", + "user_type": "student", + "full_name": "Vazquez Crisanto Dario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24843, + "fields": { + "user": null, + "account_number": "41104060", + "user_type": "student", + "full_name": "Monroy Blancas Victor Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24844, + "fields": { + "user": null, + "account_number": "41103977", + "user_type": "student", + "full_name": "Lopez Mata Diana Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24845, + "fields": { + "user": null, + "account_number": "41103918", + "user_type": "student", + "full_name": "Acosta Arizmendi Jurgen Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24846, + "fields": { + "user": null, + "account_number": "41103916", + "user_type": "student", + "full_name": "Ramirez Ayala Carolina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24847, + "fields": { + "user": null, + "account_number": "41103823", + "user_type": "student", + "full_name": "Martinez Basilio Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24848, + "fields": { + "user": null, + "account_number": "41103819", + "user_type": "student", + "full_name": "Perez Maldonado Angel Emmanuelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24849, + "fields": { + "user": null, + "account_number": "41103761", + "user_type": "student", + "full_name": "Jaramillo Quiroz Pablo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24850, + "fields": { + "user": null, + "account_number": "41103623", + "user_type": "student", + "full_name": "Uribe Torres Manuel Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24851, + "fields": { + "user": null, + "account_number": "41103614", + "user_type": "student", + "full_name": "Martinez Lopez Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24852, + "fields": { + "user": null, + "account_number": "41103604", + "user_type": "student", + "full_name": "Martinez Aguilar Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24853, + "fields": { + "user": null, + "account_number": "41103594", + "user_type": "student", + "full_name": "Paredes Sanchez Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24854, + "fields": { + "user": null, + "account_number": "41103591", + "user_type": "student", + "full_name": "Valladares Rodriguez Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24855, + "fields": { + "user": null, + "account_number": "41103543", + "user_type": "student", + "full_name": "Melo Segundo Seny Anais" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24856, + "fields": { + "user": null, + "account_number": "41103465", + "user_type": "student", + "full_name": "Victoriano Santiago Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24857, + "fields": { + "user": null, + "account_number": "41103464", + "user_type": "student", + "full_name": "Estrada Morales Karen Zaduc" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24858, + "fields": { + "user": null, + "account_number": "41103375", + "user_type": "student", + "full_name": "Cortes Zavala Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24859, + "fields": { + "user": null, + "account_number": "41103355", + "user_type": "student", + "full_name": "Sandoval Sebastian Sandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24860, + "fields": { + "user": null, + "account_number": "41103340", + "user_type": "student", + "full_name": "Jimenez Pedraza Luis Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24861, + "fields": { + "user": null, + "account_number": "41103323", + "user_type": "student", + "full_name": "Rodriguez Castro Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24862, + "fields": { + "user": null, + "account_number": "41103312", + "user_type": "student", + "full_name": "Garibay Murguia Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24863, + "fields": { + "user": null, + "account_number": "41103311", + "user_type": "student", + "full_name": "Cristobal Trejo Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24864, + "fields": { + "user": null, + "account_number": "41103263", + "user_type": "student", + "full_name": "Hernandez Moreno Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24865, + "fields": { + "user": null, + "account_number": "41103184", + "user_type": "student", + "full_name": "Anzastiga Monjardin Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24866, + "fields": { + "user": null, + "account_number": "41103169", + "user_type": "student", + "full_name": "Morales Miranda Jose Orlando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24867, + "fields": { + "user": null, + "account_number": "41103069", + "user_type": "student", + "full_name": "Gomez Tello Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24868, + "fields": { + "user": null, + "account_number": "41102969", + "user_type": "student", + "full_name": "GamiÑo Reyes Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24869, + "fields": { + "user": null, + "account_number": "41102865", + "user_type": "student", + "full_name": "Carrillo Perez Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24870, + "fields": { + "user": null, + "account_number": "41102854", + "user_type": "student", + "full_name": "Orosco Garcia Enrique Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24871, + "fields": { + "user": null, + "account_number": "41102846", + "user_type": "student", + "full_name": "Molina Romero Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24872, + "fields": { + "user": null, + "account_number": "41102761", + "user_type": "student", + "full_name": "Vargas Escobedo Nancy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24873, + "fields": { + "user": null, + "account_number": "41102730", + "user_type": "student", + "full_name": "Santana Valle Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24874, + "fields": { + "user": null, + "account_number": "41102673", + "user_type": "student", + "full_name": "Vera Luna Maximiliano" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24875, + "fields": { + "user": null, + "account_number": "41102559", + "user_type": "student", + "full_name": "Yahuitl Perez Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24876, + "fields": { + "user": null, + "account_number": "41102490", + "user_type": "student", + "full_name": "Montoya Lara Nestor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24877, + "fields": { + "user": null, + "account_number": "41102375", + "user_type": "student", + "full_name": "Fonseca Larrainzar Edgar Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24878, + "fields": { + "user": null, + "account_number": "41102373", + "user_type": "student", + "full_name": "Urbano Romero Cynthia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24879, + "fields": { + "user": null, + "account_number": "41102339", + "user_type": "student", + "full_name": "Castro Villanueva Ruben Getsemani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24880, + "fields": { + "user": null, + "account_number": "41102314", + "user_type": "student", + "full_name": "Garcia Lezama Maria De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24881, + "fields": { + "user": null, + "account_number": "41102282", + "user_type": "student", + "full_name": "Hernandez Solis Ana Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24882, + "fields": { + "user": null, + "account_number": "41102214", + "user_type": "student", + "full_name": "Perez Luciano Juan Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24883, + "fields": { + "user": null, + "account_number": "41102202", + "user_type": "student", + "full_name": "Arroyo Flores Jacinto Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24884, + "fields": { + "user": null, + "account_number": "41102176", + "user_type": "student", + "full_name": "Hernandez Rodriguez Jocelyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24885, + "fields": { + "user": null, + "account_number": "41102083", + "user_type": "student", + "full_name": "Antonio Garcia Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24886, + "fields": { + "user": null, + "account_number": "41102065", + "user_type": "student", + "full_name": "Pantaleon Martinez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24887, + "fields": { + "user": null, + "account_number": "41101990", + "user_type": "student", + "full_name": "Morales Deloya Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24888, + "fields": { + "user": null, + "account_number": "41101986", + "user_type": "student", + "full_name": "Navarro Rojas Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24889, + "fields": { + "user": null, + "account_number": "41101938", + "user_type": "student", + "full_name": "Garcia AcuÑa Christian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24890, + "fields": { + "user": null, + "account_number": "41101934", + "user_type": "student", + "full_name": "Ramos Antonio Anibal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24891, + "fields": { + "user": null, + "account_number": "41101829", + "user_type": "student", + "full_name": "Espinosa Tinoco Adam Jacobo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24892, + "fields": { + "user": null, + "account_number": "41101820", + "user_type": "student", + "full_name": "Lagunas Pinacho Sergio Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24893, + "fields": { + "user": null, + "account_number": "41101816", + "user_type": "student", + "full_name": "CastaÑeda Gonzalez Jose Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24894, + "fields": { + "user": null, + "account_number": "41101737", + "user_type": "student", + "full_name": "Hernandez Barona Mayra Arantxa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24895, + "fields": { + "user": null, + "account_number": "41101730", + "user_type": "student", + "full_name": "GarduÑo Osornio Edgar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24896, + "fields": { + "user": null, + "account_number": "41101719", + "user_type": "student", + "full_name": "Perez YaÑez Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24897, + "fields": { + "user": null, + "account_number": "41101709", + "user_type": "student", + "full_name": "Herrera Sanchez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24898, + "fields": { + "user": null, + "account_number": "41101706", + "user_type": "student", + "full_name": "Gonzalez Huerta Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24899, + "fields": { + "user": null, + "account_number": "41101660", + "user_type": "student", + "full_name": "Martinez Castillo Marco Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24900, + "fields": { + "user": null, + "account_number": "41101587", + "user_type": "student", + "full_name": "Perez Rodriguez Diana Aurora" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24901, + "fields": { + "user": null, + "account_number": "41101526", + "user_type": "student", + "full_name": "Padron Nieto Jenyfer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24902, + "fields": { + "user": null, + "account_number": "41101509", + "user_type": "student", + "full_name": "Antonio Jacinto Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24903, + "fields": { + "user": null, + "account_number": "41101482", + "user_type": "student", + "full_name": "Rucoba Mata David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24904, + "fields": { + "user": null, + "account_number": "41101480", + "user_type": "student", + "full_name": "Pacheco Ramirez Joel Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24905, + "fields": { + "user": null, + "account_number": "41101426", + "user_type": "student", + "full_name": "Huerta Xaxni Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24906, + "fields": { + "user": null, + "account_number": "41101363", + "user_type": "student", + "full_name": "Acevedo Rojas Nancy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24907, + "fields": { + "user": null, + "account_number": "41101358", + "user_type": "student", + "full_name": "Gomez Esquivel Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24908, + "fields": { + "user": null, + "account_number": "41101248", + "user_type": "student", + "full_name": "Mondragon Martinez Giovanna Paola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24909, + "fields": { + "user": null, + "account_number": "41101241", + "user_type": "student", + "full_name": "Rodriguez Alvarez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24910, + "fields": { + "user": null, + "account_number": "41101183", + "user_type": "student", + "full_name": "Corona Zamudio Carlos Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24911, + "fields": { + "user": null, + "account_number": "41101125", + "user_type": "student", + "full_name": "Coca Gonzalez Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24912, + "fields": { + "user": null, + "account_number": "41101039", + "user_type": "student", + "full_name": "Martinez Fuertes Alfonso Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24913, + "fields": { + "user": null, + "account_number": "41101033", + "user_type": "student", + "full_name": "Redonda Arzate Abigail Monserrath" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24914, + "fields": { + "user": null, + "account_number": "41101004", + "user_type": "student", + "full_name": "Loe Urtes Cinthya Alicia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24915, + "fields": { + "user": null, + "account_number": "41100961", + "user_type": "student", + "full_name": "Chavez Perez Carolina Jazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24916, + "fields": { + "user": null, + "account_number": "41100902", + "user_type": "student", + "full_name": "Martinez Morales Jordan Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24917, + "fields": { + "user": null, + "account_number": "41100876", + "user_type": "student", + "full_name": "Navarro Martinez Jorge Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24918, + "fields": { + "user": null, + "account_number": "41100820", + "user_type": "student", + "full_name": "Garcia Huerta Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24919, + "fields": { + "user": null, + "account_number": "41100819", + "user_type": "student", + "full_name": "Valdes Aguilera Cintya Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24920, + "fields": { + "user": null, + "account_number": "41100769", + "user_type": "student", + "full_name": "Martinez Cardos Fernando Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24921, + "fields": { + "user": null, + "account_number": "41100740", + "user_type": "student", + "full_name": "Sanchez Gutierrez Moises Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24922, + "fields": { + "user": null, + "account_number": "41100715", + "user_type": "student", + "full_name": "Gomez Ruiz Edward Ignacio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24923, + "fields": { + "user": null, + "account_number": "41100686", + "user_type": "student", + "full_name": "Orozco Ines Stefanni Yadira" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24924, + "fields": { + "user": null, + "account_number": "41100641", + "user_type": "student", + "full_name": "Rojas Dominguez Cristopher Aldair" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24925, + "fields": { + "user": null, + "account_number": "41100572", + "user_type": "student", + "full_name": "Salinas Medina Claudia Susana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24926, + "fields": { + "user": null, + "account_number": "41100467", + "user_type": "student", + "full_name": "Toriz Contreras Maria Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24927, + "fields": { + "user": null, + "account_number": "41100418", + "user_type": "student", + "full_name": "Corona Moreno Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24928, + "fields": { + "user": null, + "account_number": "41100367", + "user_type": "student", + "full_name": "Gonzalez Hernandez Jorge Alfonso" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24929, + "fields": { + "user": null, + "account_number": "41100334", + "user_type": "student", + "full_name": "Jerez De La Cruz Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24930, + "fields": { + "user": null, + "account_number": "41100329", + "user_type": "student", + "full_name": "Villedas Aviles Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24931, + "fields": { + "user": null, + "account_number": "41100318", + "user_type": "student", + "full_name": "Ortega Rosas Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24932, + "fields": { + "user": null, + "account_number": "41100294", + "user_type": "student", + "full_name": "Ruelas Flores Fernanda Dice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24933, + "fields": { + "user": null, + "account_number": "41100292", + "user_type": "student", + "full_name": "Madrigal Ceballos Diana Janette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24934, + "fields": { + "user": null, + "account_number": "41100290", + "user_type": "student", + "full_name": "Lopez Gonzalez Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24935, + "fields": { + "user": null, + "account_number": "41100252", + "user_type": "student", + "full_name": "Jurado MuÑoz Jorge Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24936, + "fields": { + "user": null, + "account_number": "41100237", + "user_type": "student", + "full_name": "Gonzalez Meza Gomez Farias Cristobal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24937, + "fields": { + "user": null, + "account_number": "41100176", + "user_type": "student", + "full_name": "Garcia Cruz Jhoan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24938, + "fields": { + "user": null, + "account_number": "41100150", + "user_type": "student", + "full_name": "Marciano Avila Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24939, + "fields": { + "user": null, + "account_number": "41100104", + "user_type": "student", + "full_name": "Garces Brito Mauricio Ilhuicamina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24940, + "fields": { + "user": null, + "account_number": "41100018", + "user_type": "student", + "full_name": "Martinez Velazquez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24941, + "fields": { + "user": null, + "account_number": "41100017", + "user_type": "student", + "full_name": "Segundo Nieves Yesenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24942, + "fields": { + "user": null, + "account_number": "41004053", + "user_type": "student", + "full_name": "Carrasco Belman Alma Georgina Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24943, + "fields": { + "user": null, + "account_number": "40708438", + "user_type": "student", + "full_name": "Espinosa PeÑa Oscar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24944, + "fields": { + "user": null, + "account_number": "40510190", + "user_type": "student", + "full_name": "Rubio Bribiesca Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24945, + "fields": { + "user": null, + "account_number": "30867990", + "user_type": "student", + "full_name": "Carbajal Morales Fabricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24946, + "fields": { + "user": null, + "account_number": "30867938", + "user_type": "student", + "full_name": "Gomez Gonzalez Ali Joseth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24947, + "fields": { + "user": null, + "account_number": "30865920", + "user_type": "student", + "full_name": "Frias Nava Sara Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24948, + "fields": { + "user": null, + "account_number": "30865907", + "user_type": "student", + "full_name": "De La Mora Sordo Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24949, + "fields": { + "user": null, + "account_number": "30860930", + "user_type": "student", + "full_name": "Rivera Vargas Yair Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24950, + "fields": { + "user": null, + "account_number": "30833760", + "user_type": "student", + "full_name": "Vargas Gonzalez Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24951, + "fields": { + "user": null, + "account_number": "30833734", + "user_type": "student", + "full_name": "Dominguez Tovar Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24952, + "fields": { + "user": null, + "account_number": "30832487", + "user_type": "student", + "full_name": "Salinas GarduÑo Cesar Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24953, + "fields": { + "user": null, + "account_number": "30832194", + "user_type": "student", + "full_name": "Torres Veayra Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24954, + "fields": { + "user": null, + "account_number": "30832121", + "user_type": "student", + "full_name": "Saldivar Becerra Edson Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24955, + "fields": { + "user": null, + "account_number": "30830673", + "user_type": "student", + "full_name": "MagaÑa Hernandez Maria Fernanda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24956, + "fields": { + "user": null, + "account_number": "30829410", + "user_type": "student", + "full_name": "Martinez Y Martinez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24957, + "fields": { + "user": null, + "account_number": "30829350", + "user_type": "student", + "full_name": "Muro Guerrero Raul De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24958, + "fields": { + "user": null, + "account_number": "30827763", + "user_type": "student", + "full_name": "Segovia Nova Raul Alexis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24959, + "fields": { + "user": null, + "account_number": "30824437", + "user_type": "student", + "full_name": "MuÑoz Salce Ricardo Simon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24960, + "fields": { + "user": null, + "account_number": "30823961", + "user_type": "student", + "full_name": "Narvaez Paredes Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24961, + "fields": { + "user": null, + "account_number": "30822783", + "user_type": "student", + "full_name": "Posadas Garcia Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24962, + "fields": { + "user": null, + "account_number": "30822251", + "user_type": "student", + "full_name": "Hernandez Gonzalez Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24963, + "fields": { + "user": null, + "account_number": "30821700", + "user_type": "student", + "full_name": "Espindola Borromeo Jessica Mariana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24964, + "fields": { + "user": null, + "account_number": "30820981", + "user_type": "student", + "full_name": "Gonzalez Mendez Monica Ileanne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24965, + "fields": { + "user": null, + "account_number": "30818991", + "user_type": "student", + "full_name": "Espejo Peralta Paloma Arlea" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24966, + "fields": { + "user": null, + "account_number": "30818983", + "user_type": "student", + "full_name": "Flores Vega Cesar Rodolfo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24967, + "fields": { + "user": null, + "account_number": "30818817", + "user_type": "student", + "full_name": "Arvizu Ramirez Guadalupe Sthepanie" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24968, + "fields": { + "user": null, + "account_number": "30817263", + "user_type": "student", + "full_name": "Fuentes Guido Daniela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24969, + "fields": { + "user": null, + "account_number": "30816144", + "user_type": "student", + "full_name": "Bautista Mendez David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24970, + "fields": { + "user": null, + "account_number": "30815636", + "user_type": "student", + "full_name": "Sarmina Navarro Cristobal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24971, + "fields": { + "user": null, + "account_number": "30815416", + "user_type": "student", + "full_name": "Roman Martinez Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24972, + "fields": { + "user": null, + "account_number": "30814886", + "user_type": "student", + "full_name": "Ruiz Gaspar Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24973, + "fields": { + "user": null, + "account_number": "30814881", + "user_type": "student", + "full_name": "Rodriguez Gastelum Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24974, + "fields": { + "user": null, + "account_number": "30813639", + "user_type": "student", + "full_name": "Rivas Mendoza Nancy Nataly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24975, + "fields": { + "user": null, + "account_number": "30813608", + "user_type": "student", + "full_name": "Ojeda Lizarraga Fadua Patricia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24976, + "fields": { + "user": null, + "account_number": "30813259", + "user_type": "student", + "full_name": "Merida Arangure Jonni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24977, + "fields": { + "user": null, + "account_number": "30813165", + "user_type": "student", + "full_name": "Martinez Cano Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24978, + "fields": { + "user": null, + "account_number": "30812828", + "user_type": "student", + "full_name": "Ruiz Macias Ivonne Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24979, + "fields": { + "user": null, + "account_number": "30812330", + "user_type": "student", + "full_name": "Jimenez Rangel Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24980, + "fields": { + "user": null, + "account_number": "30811578", + "user_type": "student", + "full_name": "Landa Loera Eliseo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24981, + "fields": { + "user": null, + "account_number": "30811575", + "user_type": "student", + "full_name": "Juarez Ocampo Luis Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24982, + "fields": { + "user": null, + "account_number": "30811491", + "user_type": "student", + "full_name": "Jauregui Coca Victor Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24983, + "fields": { + "user": null, + "account_number": "30811207", + "user_type": "student", + "full_name": "Mayen Rios Carolina Aidee" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24984, + "fields": { + "user": null, + "account_number": "30808228", + "user_type": "student", + "full_name": "Gomez Iriarte Pablo Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24985, + "fields": { + "user": null, + "account_number": "30807272", + "user_type": "student", + "full_name": "Cervantes Silva Jorge Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24986, + "fields": { + "user": null, + "account_number": "30806804", + "user_type": "student", + "full_name": "Hernandez Ortega Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24987, + "fields": { + "user": null, + "account_number": "30806594", + "user_type": "student", + "full_name": "Cabrera Gutierrez Paulo Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24988, + "fields": { + "user": null, + "account_number": "30806381", + "user_type": "student", + "full_name": "Aparicio Baeza Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24989, + "fields": { + "user": null, + "account_number": "30801593", + "user_type": "student", + "full_name": "Hernandez Cabrera Edwin Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24990, + "fields": { + "user": null, + "account_number": "30800273", + "user_type": "student", + "full_name": "Aguilar Lopez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24991, + "fields": { + "user": null, + "account_number": "30800163", + "user_type": "student", + "full_name": "Figueroa Hernandez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24992, + "fields": { + "user": null, + "account_number": "30776883", + "user_type": "student", + "full_name": "Chavez Rodriguez Carla Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24993, + "fields": { + "user": null, + "account_number": "30773995", + "user_type": "student", + "full_name": "Lopez Malpica Horacio Francisco Gamaliel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24994, + "fields": { + "user": null, + "account_number": "30766367", + "user_type": "student", + "full_name": "Rodriguez Valdovinos Guillermo Abdy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24995, + "fields": { + "user": null, + "account_number": "30759054", + "user_type": "student", + "full_name": "Soria Rodriguez Juan Antonio Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24996, + "fields": { + "user": null, + "account_number": "30754368", + "user_type": "student", + "full_name": "Mendez Vazquez Jose Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24997, + "fields": { + "user": null, + "account_number": "30751323", + "user_type": "student", + "full_name": "Benitez Sirio Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24998, + "fields": { + "user": null, + "account_number": "30732627", + "user_type": "student", + "full_name": "Tercero Hernandez Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 24999, + "fields": { + "user": null, + "account_number": "30730840", + "user_type": "student", + "full_name": "Santamaria Jimenez Jessica Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25000, + "fields": { + "user": null, + "account_number": "30727263", + "user_type": "student", + "full_name": "Jimenez Coronel Jose Gamaliel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25001, + "fields": { + "user": null, + "account_number": "30727149", + "user_type": "student", + "full_name": "SantibaÑez Posadas Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25002, + "fields": { + "user": null, + "account_number": "30725990", + "user_type": "student", + "full_name": "Moreno Castillo Christian Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25003, + "fields": { + "user": null, + "account_number": "30724634", + "user_type": "student", + "full_name": "Organista Jurado Cuauhtemoc Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25004, + "fields": { + "user": null, + "account_number": "30723950", + "user_type": "student", + "full_name": "Moales Narvaez Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25005, + "fields": { + "user": null, + "account_number": "30723048", + "user_type": "student", + "full_name": "Galvan Lara Juan Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25006, + "fields": { + "user": null, + "account_number": "30722078", + "user_type": "student", + "full_name": "Perez Santiago Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25007, + "fields": { + "user": null, + "account_number": "30720187", + "user_type": "student", + "full_name": "Juarez Bautista Rosalia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25008, + "fields": { + "user": null, + "account_number": "30719679", + "user_type": "student", + "full_name": "Perez Maya Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25009, + "fields": { + "user": null, + "account_number": "30718936", + "user_type": "student", + "full_name": "Mejia Apanco Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25010, + "fields": { + "user": null, + "account_number": "30718576", + "user_type": "student", + "full_name": "Ceron Tellez Andres Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25011, + "fields": { + "user": null, + "account_number": "30715952", + "user_type": "student", + "full_name": "Trujillo Torres Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25012, + "fields": { + "user": null, + "account_number": "30714541", + "user_type": "student", + "full_name": "Castillo De Jesus Jeniffer" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25013, + "fields": { + "user": null, + "account_number": "30713999", + "user_type": "student", + "full_name": "Gonzalez Mendoza Sandra Nataly" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25014, + "fields": { + "user": null, + "account_number": "30712967", + "user_type": "student", + "full_name": "Hernandez Avila Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25015, + "fields": { + "user": null, + "account_number": "30711471", + "user_type": "student", + "full_name": "Benitez Badillo Danica Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25016, + "fields": { + "user": null, + "account_number": "30711158", + "user_type": "student", + "full_name": "Alvarado Vazquez Beatriz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25017, + "fields": { + "user": null, + "account_number": "30709097", + "user_type": "student", + "full_name": "Cruz Lopez Susana Lizbeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25018, + "fields": { + "user": null, + "account_number": "30708927", + "user_type": "student", + "full_name": "Garcia Melendez Jose Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25019, + "fields": { + "user": null, + "account_number": "30707668", + "user_type": "student", + "full_name": "Chavez Ayala Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25020, + "fields": { + "user": null, + "account_number": "30707335", + "user_type": "student", + "full_name": "Ayala Zavala Damaris" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25021, + "fields": { + "user": null, + "account_number": "30705456", + "user_type": "student", + "full_name": "Gomez Montes Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25022, + "fields": { + "user": null, + "account_number": "30704695", + "user_type": "student", + "full_name": "Arteaga Santiago Susana Pamela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25023, + "fields": { + "user": null, + "account_number": "30704263", + "user_type": "student", + "full_name": "Hernandez Reyes Jessica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25024, + "fields": { + "user": null, + "account_number": "30704045", + "user_type": "student", + "full_name": "Bueno Calderon Jorge Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25025, + "fields": { + "user": null, + "account_number": "30703258", + "user_type": "student", + "full_name": "Garcia Toledo Sarquis Benjalil" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25026, + "fields": { + "user": null, + "account_number": "30702732", + "user_type": "student", + "full_name": "Avalos GarduÑo Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25027, + "fields": { + "user": null, + "account_number": "30702599", + "user_type": "student", + "full_name": "Castillo Mendoza Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25028, + "fields": { + "user": null, + "account_number": "30700595", + "user_type": "student", + "full_name": "Chavez Benitez Ana Laura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25029, + "fields": { + "user": null, + "account_number": "30700470", + "user_type": "student", + "full_name": "Barreto Martinez Miryam Nayeli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25030, + "fields": { + "user": null, + "account_number": "30700156", + "user_type": "student", + "full_name": "Contreras Navarro Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25031, + "fields": { + "user": null, + "account_number": "30675392", + "user_type": "student", + "full_name": "Jasso Castillo Federico Joshomar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25032, + "fields": { + "user": null, + "account_number": "30673721", + "user_type": "student", + "full_name": "BaÑuelos Reyes Angel Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25033, + "fields": { + "user": null, + "account_number": "30672648", + "user_type": "student", + "full_name": "Gonzalez IÑiguez Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25034, + "fields": { + "user": null, + "account_number": "30669248", + "user_type": "student", + "full_name": "Solano Condor Jyaru" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25035, + "fields": { + "user": null, + "account_number": "30660643", + "user_type": "student", + "full_name": "Bahena Barradas Maria Teresa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25036, + "fields": { + "user": null, + "account_number": "30634553", + "user_type": "student", + "full_name": "Gutierrez Zacarias Roberto Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25037, + "fields": { + "user": null, + "account_number": "30633539", + "user_type": "student", + "full_name": "Rivas Colunga Fernando Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25038, + "fields": { + "user": null, + "account_number": "30630062", + "user_type": "student", + "full_name": "Martinez Reyes Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25039, + "fields": { + "user": null, + "account_number": "30627686", + "user_type": "student", + "full_name": "Correa Perez Paola Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25040, + "fields": { + "user": null, + "account_number": "30619547", + "user_type": "student", + "full_name": "Perez Orihuela Diego" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25041, + "fields": { + "user": null, + "account_number": "30619116", + "user_type": "student", + "full_name": "Ortega Hernandez Braulio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25042, + "fields": { + "user": null, + "account_number": "30616071", + "user_type": "student", + "full_name": "Hernandez Garcia Erika" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25043, + "fields": { + "user": null, + "account_number": "30609193", + "user_type": "student", + "full_name": "Olmos Chacon Francisco Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25044, + "fields": { + "user": null, + "account_number": "30606292", + "user_type": "student", + "full_name": "Dominguez Reyes Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25045, + "fields": { + "user": null, + "account_number": "30605800", + "user_type": "student", + "full_name": "Kerber Reyes Catherine Ianyn" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25046, + "fields": { + "user": null, + "account_number": "30604925", + "user_type": "student", + "full_name": "BaÑos Martinez Rebeca Itzel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25047, + "fields": { + "user": null, + "account_number": "30604103", + "user_type": "student", + "full_name": "Rivera MartiÑon Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25048, + "fields": { + "user": null, + "account_number": "30603533", + "user_type": "student", + "full_name": "Teposte Miramontes Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25049, + "fields": { + "user": null, + "account_number": "30600403", + "user_type": "student", + "full_name": "Colin Rangel Adela Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25050, + "fields": { + "user": null, + "account_number": "30577842", + "user_type": "student", + "full_name": "Herrera Araujo Fabiola" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25051, + "fields": { + "user": null, + "account_number": "30534060", + "user_type": "student", + "full_name": "Escobedo Lemus Angel Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25052, + "fields": { + "user": null, + "account_number": "30529919", + "user_type": "student", + "full_name": "MuÑoz Loran Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25053, + "fields": { + "user": null, + "account_number": "30527699", + "user_type": "student", + "full_name": "Cruz Garcia David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25054, + "fields": { + "user": null, + "account_number": "30524976", + "user_type": "student", + "full_name": "Hernandez Arreguin Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25055, + "fields": { + "user": null, + "account_number": "30523413", + "user_type": "student", + "full_name": "Solis Garcia Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25056, + "fields": { + "user": null, + "account_number": "30523353", + "user_type": "student", + "full_name": "Flores Rito Saul Ezequiel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25057, + "fields": { + "user": null, + "account_number": "30521237", + "user_type": "student", + "full_name": "Gonzalez Argueta Armando Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25058, + "fields": { + "user": null, + "account_number": "30512979", + "user_type": "student", + "full_name": "Ramirez Ruiz Jose Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25059, + "fields": { + "user": null, + "account_number": "30512760", + "user_type": "student", + "full_name": "Huerta Galicia Cesar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25060, + "fields": { + "user": null, + "account_number": "30512230", + "user_type": "student", + "full_name": "Ayala Correa Diego Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25061, + "fields": { + "user": null, + "account_number": "30510264", + "user_type": "student", + "full_name": "Martinez Galvan Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25062, + "fields": { + "user": null, + "account_number": "30509560", + "user_type": "student", + "full_name": "Avalos Escalona Victoria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25063, + "fields": { + "user": null, + "account_number": "30508697", + "user_type": "student", + "full_name": "Cruz Zamorano Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25064, + "fields": { + "user": null, + "account_number": "30505966", + "user_type": "student", + "full_name": "Romano Santiago Adrian Virgilio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25065, + "fields": { + "user": null, + "account_number": "30505318", + "user_type": "student", + "full_name": "Padron Fierros Maria Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25066, + "fields": { + "user": null, + "account_number": "30501287", + "user_type": "student", + "full_name": "Estrada Hernandez Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25067, + "fields": { + "user": null, + "account_number": "30500712", + "user_type": "student", + "full_name": "Flores Hernandez Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25068, + "fields": { + "user": null, + "account_number": "30434555", + "user_type": "student", + "full_name": "Toledo Rodriguez Omar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25069, + "fields": { + "user": null, + "account_number": "30432522", + "user_type": "student", + "full_name": "Balderas Cardenas Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25070, + "fields": { + "user": null, + "account_number": "30429799", + "user_type": "student", + "full_name": "Rojas Gomez Ana Cecilia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25071, + "fields": { + "user": null, + "account_number": "30428500", + "user_type": "student", + "full_name": "Solis Martinez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25072, + "fields": { + "user": null, + "account_number": "30425968", + "user_type": "student", + "full_name": "Vieyra Soto Victor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25073, + "fields": { + "user": null, + "account_number": "30408645", + "user_type": "student", + "full_name": "Enciso Vega Jessica Nohemi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25074, + "fields": { + "user": null, + "account_number": "30408626", + "user_type": "student", + "full_name": "Castillo Zamora Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25075, + "fields": { + "user": null, + "account_number": "30405756", + "user_type": "student", + "full_name": "Frias Martinez Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25076, + "fields": { + "user": null, + "account_number": "30404700", + "user_type": "student", + "full_name": "Benavides Soriano Cristian Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25077, + "fields": { + "user": null, + "account_number": "30404504", + "user_type": "student", + "full_name": "Alvarado Martinez Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25078, + "fields": { + "user": null, + "account_number": "30365250", + "user_type": "student", + "full_name": "Sanchez Ramirez Daniel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25079, + "fields": { + "user": null, + "account_number": "30317215", + "user_type": "student", + "full_name": "Lino Romero Carlos Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25080, + "fields": { + "user": null, + "account_number": "30313966", + "user_type": "student", + "full_name": "Gonzalez Morales Edgar Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25081, + "fields": { + "user": null, + "account_number": "30311011", + "user_type": "student", + "full_name": "Barrera Zarate Jorge Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25082, + "fields": { + "user": null, + "account_number": "30309783", + "user_type": "student", + "full_name": "Velez Ramos Alfredo Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25083, + "fields": { + "user": null, + "account_number": "30303555", + "user_type": "student", + "full_name": "Ramirez Sanchez Luis Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25084, + "fields": { + "user": null, + "account_number": "30302007", + "user_type": "student", + "full_name": "Lara MontaÑo Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25085, + "fields": { + "user": null, + "account_number": "30227962", + "user_type": "student", + "full_name": "Ortega Corona David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25086, + "fields": { + "user": null, + "account_number": "30213744", + "user_type": "student", + "full_name": "Flores Valerio Luz Elena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25087, + "fields": { + "user": null, + "account_number": "30212338", + "user_type": "student", + "full_name": "Alfaro Torres Andres Ulises" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25088, + "fields": { + "user": null, + "account_number": "30101910", + "user_type": "student", + "full_name": "Benitez Lopez Olga Berenice" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25089, + "fields": { + "user": null, + "account_number": "30019070", + "user_type": "student", + "full_name": "Trujillo Nolasco Yuliana Ivette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25090, + "fields": { + "user": null, + "account_number": "41009480", + "user_type": "student", + "full_name": "Figueroa Romero Pedro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25091, + "fields": { + "user": null, + "account_number": "41009419", + "user_type": "student", + "full_name": "Feria Palacios Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25092, + "fields": { + "user": null, + "account_number": "41009387", + "user_type": "student", + "full_name": "Carrillo Gutierrez Natali Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25093, + "fields": { + "user": null, + "account_number": "41009364", + "user_type": "student", + "full_name": "Hernandez Hernandez Noe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25094, + "fields": { + "user": null, + "account_number": "41009361", + "user_type": "student", + "full_name": "Prieto Puga Agustin Kevin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25095, + "fields": { + "user": null, + "account_number": "41009269", + "user_type": "student", + "full_name": "Cordero Vazquez Jesus Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25096, + "fields": { + "user": null, + "account_number": "41009243", + "user_type": "student", + "full_name": "Arroyo Chavez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25097, + "fields": { + "user": null, + "account_number": "41009193", + "user_type": "student", + "full_name": "Tellechea GarduÑo Hernan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25098, + "fields": { + "user": null, + "account_number": "41009185", + "user_type": "student", + "full_name": "Miranda Hernandez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25099, + "fields": { + "user": null, + "account_number": "41009143", + "user_type": "student", + "full_name": "Francisco Martinez Henry" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25100, + "fields": { + "user": null, + "account_number": "41009135", + "user_type": "student", + "full_name": "Romero Fuente Robertho Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25101, + "fields": { + "user": null, + "account_number": "41009126", + "user_type": "student", + "full_name": "Bautista Garcia Alejandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25102, + "fields": { + "user": null, + "account_number": "41009113", + "user_type": "student", + "full_name": "Lopez Bernal Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25103, + "fields": { + "user": null, + "account_number": "41009096", + "user_type": "student", + "full_name": "Mayen Mendoza Mauricio Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25104, + "fields": { + "user": null, + "account_number": "41009088", + "user_type": "student", + "full_name": "Miranda Trujillo Marco Polo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25105, + "fields": { + "user": null, + "account_number": "41009082", + "user_type": "student", + "full_name": "Guadalupe Trinidad Martha Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25106, + "fields": { + "user": null, + "account_number": "41009066", + "user_type": "student", + "full_name": "Perez Galindo Samantha" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25107, + "fields": { + "user": null, + "account_number": "41009032", + "user_type": "student", + "full_name": "Tinoco Vazquez Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25108, + "fields": { + "user": null, + "account_number": "41009026", + "user_type": "student", + "full_name": "Gallegos Ramos Fernando Agustin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25109, + "fields": { + "user": null, + "account_number": "41009008", + "user_type": "student", + "full_name": "Marban Maya Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25110, + "fields": { + "user": null, + "account_number": "41008996", + "user_type": "student", + "full_name": "Juarez Negrete Daniel Misael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25111, + "fields": { + "user": null, + "account_number": "41008989", + "user_type": "student", + "full_name": "Valencia Tapia Antonio De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25112, + "fields": { + "user": null, + "account_number": "41008965", + "user_type": "student", + "full_name": "Ruiz Rosales Ernesto Ivan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25113, + "fields": { + "user": null, + "account_number": "41008958", + "user_type": "student", + "full_name": "Martinez Oropeza David Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25114, + "fields": { + "user": null, + "account_number": "41008956", + "user_type": "student", + "full_name": "Arias Flores Josue Raziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25115, + "fields": { + "user": null, + "account_number": "41008918", + "user_type": "student", + "full_name": "Sandoval Jarquin Zaira Lizet" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25116, + "fields": { + "user": null, + "account_number": "41008916", + "user_type": "student", + "full_name": "Cruz Hernandez Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25117, + "fields": { + "user": null, + "account_number": "41008911", + "user_type": "student", + "full_name": "Frias Lozano Luz Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25118, + "fields": { + "user": null, + "account_number": "41008875", + "user_type": "student", + "full_name": "Serna Martinez Jonatan David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25119, + "fields": { + "user": null, + "account_number": "41008786", + "user_type": "student", + "full_name": "Martinez Reyes Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25120, + "fields": { + "user": null, + "account_number": "41008758", + "user_type": "student", + "full_name": "Baca Coronilla Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25121, + "fields": { + "user": null, + "account_number": "41008753", + "user_type": "student", + "full_name": "Carrillo Crescencio Jovanne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25122, + "fields": { + "user": null, + "account_number": "41008734", + "user_type": "student", + "full_name": "Bueno Flores Tony Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25123, + "fields": { + "user": null, + "account_number": "41008733", + "user_type": "student", + "full_name": "Valdez Melo Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25124, + "fields": { + "user": null, + "account_number": "41008684", + "user_type": "student", + "full_name": "Hernandez Bustos Jonas Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25125, + "fields": { + "user": null, + "account_number": "41008648", + "user_type": "student", + "full_name": "Vazquez Alberto Francisco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25126, + "fields": { + "user": null, + "account_number": "41008541", + "user_type": "student", + "full_name": "Faviel Camacho Pablo Herminio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25127, + "fields": { + "user": null, + "account_number": "41008539", + "user_type": "student", + "full_name": "De Valdemar Romero Erwin Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25128, + "fields": { + "user": null, + "account_number": "41008455", + "user_type": "student", + "full_name": "Villalba Ramirez Gavino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25129, + "fields": { + "user": null, + "account_number": "41008421", + "user_type": "student", + "full_name": "PeÑa Fentanes Daffne Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25130, + "fields": { + "user": null, + "account_number": "41008379", + "user_type": "student", + "full_name": "Velasco Yescas Tito Uriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25131, + "fields": { + "user": null, + "account_number": "41008342", + "user_type": "student", + "full_name": "Angeles Perez Rubi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25132, + "fields": { + "user": null, + "account_number": "41008284", + "user_type": "student", + "full_name": "Romero Ortega Norma Carmen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25133, + "fields": { + "user": null, + "account_number": "41008274", + "user_type": "student", + "full_name": "CarreÑo Valencia Araceli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25134, + "fields": { + "user": null, + "account_number": "41008271", + "user_type": "student", + "full_name": "Montalvo Guzman Mauricio Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25135, + "fields": { + "user": null, + "account_number": "41008265", + "user_type": "student", + "full_name": "Avila Rosas Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25136, + "fields": { + "user": null, + "account_number": "41008164", + "user_type": "student", + "full_name": "Miranda Reyes Angela Bellanit" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25137, + "fields": { + "user": null, + "account_number": "41008157", + "user_type": "student", + "full_name": "Ruiz Escobedo Mayra Wendolin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25138, + "fields": { + "user": null, + "account_number": "41008104", + "user_type": "student", + "full_name": "Figueroa Ramirez Luis Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25139, + "fields": { + "user": null, + "account_number": "41008093", + "user_type": "student", + "full_name": "Gonzalez Balerio Ursula Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25140, + "fields": { + "user": null, + "account_number": "41008005", + "user_type": "student", + "full_name": "Alfaro Perez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25141, + "fields": { + "user": null, + "account_number": "41007954", + "user_type": "student", + "full_name": "Hernandez Salazar Maria Luisa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25142, + "fields": { + "user": null, + "account_number": "41007925", + "user_type": "student", + "full_name": "Paredes Enriquez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25143, + "fields": { + "user": null, + "account_number": "41007868", + "user_type": "student", + "full_name": "Rizo Barrios Carlos Silvani" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25144, + "fields": { + "user": null, + "account_number": "41007847", + "user_type": "student", + "full_name": "Ramos Contreras Laura Dennisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25145, + "fields": { + "user": null, + "account_number": "41007835", + "user_type": "student", + "full_name": "Antonio Estrella Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25146, + "fields": { + "user": null, + "account_number": "41007787", + "user_type": "student", + "full_name": "Martinez Vite Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25147, + "fields": { + "user": null, + "account_number": "41007771", + "user_type": "student", + "full_name": "Gonzalez Torres Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25148, + "fields": { + "user": null, + "account_number": "41007766", + "user_type": "student", + "full_name": "De Jesus Mendoza Giovanni Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25149, + "fields": { + "user": null, + "account_number": "41007758", + "user_type": "student", + "full_name": "Talonia Vargas Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25150, + "fields": { + "user": null, + "account_number": "41007718", + "user_type": "student", + "full_name": "Santiago Hernandez Jose Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25151, + "fields": { + "user": null, + "account_number": "41007708", + "user_type": "student", + "full_name": "Leon Juarez Jose Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25152, + "fields": { + "user": null, + "account_number": "41007688", + "user_type": "student", + "full_name": "Ruiz Madrigal Selma Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25153, + "fields": { + "user": null, + "account_number": "41007610", + "user_type": "student", + "full_name": "Gutierrez Flores Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25154, + "fields": { + "user": null, + "account_number": "41007567", + "user_type": "student", + "full_name": "Vargas Ordaz Luis Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25155, + "fields": { + "user": null, + "account_number": "41007560", + "user_type": "student", + "full_name": "Araujo Arenas Edgar Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25156, + "fields": { + "user": null, + "account_number": "41007470", + "user_type": "student", + "full_name": "Juarez Tabares Mariana De Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25157, + "fields": { + "user": null, + "account_number": "41007466", + "user_type": "student", + "full_name": "Flores Rojas Bryant Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25158, + "fields": { + "user": null, + "account_number": "41007444", + "user_type": "student", + "full_name": "Grajales Jimenez Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25159, + "fields": { + "user": null, + "account_number": "41007411", + "user_type": "student", + "full_name": "Paniagua Campos Jose Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25160, + "fields": { + "user": null, + "account_number": "41007377", + "user_type": "student", + "full_name": "Ortiz Lopez Aldo Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25161, + "fields": { + "user": null, + "account_number": "41007365", + "user_type": "student", + "full_name": "Mendoza Estrada Blas Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25162, + "fields": { + "user": null, + "account_number": "41007286", + "user_type": "student", + "full_name": "Almazan Gaspar Diego Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25163, + "fields": { + "user": null, + "account_number": "41007259", + "user_type": "student", + "full_name": "Suarez Vazquez Sergio Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25164, + "fields": { + "user": null, + "account_number": "41007060", + "user_type": "student", + "full_name": "Villatoro Alvarez Edmar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25165, + "fields": { + "user": null, + "account_number": "41007058", + "user_type": "student", + "full_name": "Valencia Cordova Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25166, + "fields": { + "user": null, + "account_number": "41007035", + "user_type": "student", + "full_name": "Mendez Mares Liliana Selene" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25167, + "fields": { + "user": null, + "account_number": "41006982", + "user_type": "student", + "full_name": "PeÑa Alba Aldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25168, + "fields": { + "user": null, + "account_number": "41006976", + "user_type": "student", + "full_name": "Pizzini CastaÑeda Guadalupe Geovanna" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25169, + "fields": { + "user": null, + "account_number": "41006970", + "user_type": "student", + "full_name": "Perez Leon Juan Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25170, + "fields": { + "user": null, + "account_number": "41006917", + "user_type": "student", + "full_name": "Briones Pasten Lidia Francel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25171, + "fields": { + "user": null, + "account_number": "41006914", + "user_type": "student", + "full_name": "Lopez Velasco Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25172, + "fields": { + "user": null, + "account_number": "41006883", + "user_type": "student", + "full_name": "NuÑez Rodriguez Sergio Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25173, + "fields": { + "user": null, + "account_number": "41006862", + "user_type": "student", + "full_name": "Monroy Reina Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25174, + "fields": { + "user": null, + "account_number": "41006860", + "user_type": "student", + "full_name": "Jurado Martinez Rogelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25175, + "fields": { + "user": null, + "account_number": "41006787", + "user_type": "student", + "full_name": "Flores Cajiga Leopoldo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25176, + "fields": { + "user": null, + "account_number": "41006784", + "user_type": "student", + "full_name": "Vidals Ramos Ivan Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25177, + "fields": { + "user": null, + "account_number": "41006604", + "user_type": "student", + "full_name": "Feria Zarate Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25178, + "fields": { + "user": null, + "account_number": "41006592", + "user_type": "student", + "full_name": "Santillan Morales Alan Michelle" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25179, + "fields": { + "user": null, + "account_number": "41006588", + "user_type": "student", + "full_name": "Andrade Lopez Karla Lisette" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25180, + "fields": { + "user": null, + "account_number": "41006585", + "user_type": "student", + "full_name": "Raya Bautista Jose Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25181, + "fields": { + "user": null, + "account_number": "41006498", + "user_type": "student", + "full_name": "Sosa Vazquez Gabriel Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25182, + "fields": { + "user": null, + "account_number": "41006487", + "user_type": "student", + "full_name": "Garcia Lara Carlos Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25183, + "fields": { + "user": null, + "account_number": "41006477", + "user_type": "student", + "full_name": "Fitz Chavez Oscar Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25184, + "fields": { + "user": null, + "account_number": "41006461", + "user_type": "student", + "full_name": "Gonzalez Salazar Angel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25185, + "fields": { + "user": null, + "account_number": "41006404", + "user_type": "student", + "full_name": "Rodriguez Prieto Denisse" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25186, + "fields": { + "user": null, + "account_number": "41006368", + "user_type": "student", + "full_name": "Cabrera Montes De Oca Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25187, + "fields": { + "user": null, + "account_number": "41006344", + "user_type": "student", + "full_name": "Acosta Solano Blanca Flor" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25188, + "fields": { + "user": null, + "account_number": "41006282", + "user_type": "student", + "full_name": "Dolores Cardenas Anali" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25189, + "fields": { + "user": null, + "account_number": "41006273", + "user_type": "student", + "full_name": "Cisneros Lozano Otniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25190, + "fields": { + "user": null, + "account_number": "41006227", + "user_type": "student", + "full_name": "Lorenzana Medina Daniel Gilberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25191, + "fields": { + "user": null, + "account_number": "41006211", + "user_type": "student", + "full_name": "Osorio Avila Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25192, + "fields": { + "user": null, + "account_number": "41006207", + "user_type": "student", + "full_name": "Zenizo Carrasco Alain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25193, + "fields": { + "user": null, + "account_number": "41006090", + "user_type": "student", + "full_name": "Castro Joaquin Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25194, + "fields": { + "user": null, + "account_number": "41006068", + "user_type": "student", + "full_name": "Posadas Retana Leticia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25195, + "fields": { + "user": null, + "account_number": "41005959", + "user_type": "student", + "full_name": "Cruz Pastrana Julio Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25196, + "fields": { + "user": null, + "account_number": "41005957", + "user_type": "student", + "full_name": "Galeana Chavez Maria Del Rosario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25197, + "fields": { + "user": null, + "account_number": "41005942", + "user_type": "student", + "full_name": "Arzate Islas Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25198, + "fields": { + "user": null, + "account_number": "41005912", + "user_type": "student", + "full_name": "Jimenez Labora Mateos Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25199, + "fields": { + "user": null, + "account_number": "41005890", + "user_type": "student", + "full_name": "Rodriguez Riva Palacio Dorian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25200, + "fields": { + "user": null, + "account_number": "41005720", + "user_type": "student", + "full_name": "Moreno Resen Diz Marcos Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25201, + "fields": { + "user": null, + "account_number": "41005673", + "user_type": "student", + "full_name": "Mendoza Landeros Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25202, + "fields": { + "user": null, + "account_number": "41005574", + "user_type": "student", + "full_name": "Ramirez Hinojosa Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25203, + "fields": { + "user": null, + "account_number": "41005474", + "user_type": "student", + "full_name": "Estrada Casillas Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25204, + "fields": { + "user": null, + "account_number": "41005466", + "user_type": "student", + "full_name": "De La Rosa Morales Helioth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25205, + "fields": { + "user": null, + "account_number": "41005426", + "user_type": "student", + "full_name": "Juarez Gomez Tagle Eden Irving" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25206, + "fields": { + "user": null, + "account_number": "41005415", + "user_type": "student", + "full_name": "Escobedo Ascanio Pedro Jose" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25207, + "fields": { + "user": null, + "account_number": "41005407", + "user_type": "student", + "full_name": "Guzman Ovando Juana Aidee" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25208, + "fields": { + "user": null, + "account_number": "41005221", + "user_type": "student", + "full_name": "Gorostieta Medina Jose Angel Ladislao" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25209, + "fields": { + "user": null, + "account_number": "41005214", + "user_type": "student", + "full_name": "Martinez Marquez Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25210, + "fields": { + "user": null, + "account_number": "41005013", + "user_type": "student", + "full_name": "Perez Alvarez Humberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25211, + "fields": { + "user": null, + "account_number": "41004865", + "user_type": "student", + "full_name": "Martinez Ortiz Danelia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25212, + "fields": { + "user": null, + "account_number": "41004861", + "user_type": "student", + "full_name": "Leonides Tellez Miguel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25213, + "fields": { + "user": null, + "account_number": "41004850", + "user_type": "student", + "full_name": "Corona Rodriguez Juan Jeziel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25214, + "fields": { + "user": null, + "account_number": "41004707", + "user_type": "student", + "full_name": "Galvan Armienta Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25215, + "fields": { + "user": null, + "account_number": "41004702", + "user_type": "student", + "full_name": "Solis Espinoza Jose Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25216, + "fields": { + "user": null, + "account_number": "41004503", + "user_type": "student", + "full_name": "Hernandez Hernandez Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25217, + "fields": { + "user": null, + "account_number": "41004484", + "user_type": "student", + "full_name": "Garcia Jimenez Nely Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25218, + "fields": { + "user": null, + "account_number": "41004482", + "user_type": "student", + "full_name": "Mora Murillo Candy" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25219, + "fields": { + "user": null, + "account_number": "41004463", + "user_type": "student", + "full_name": "Zavala Serrano Angelica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25220, + "fields": { + "user": null, + "account_number": "41004386", + "user_type": "student", + "full_name": "Ameca Colorado Samuel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25221, + "fields": { + "user": null, + "account_number": "41004356", + "user_type": "student", + "full_name": "Regalado Pacheco Izamar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25222, + "fields": { + "user": null, + "account_number": "41004341", + "user_type": "student", + "full_name": "Montes Mata Lauro Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25223, + "fields": { + "user": null, + "account_number": "41004317", + "user_type": "student", + "full_name": "Cardenas Calixto Jose Pablo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25224, + "fields": { + "user": null, + "account_number": "41004274", + "user_type": "student", + "full_name": "VillaseÑor Leon Israel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25225, + "fields": { + "user": null, + "account_number": "41004266", + "user_type": "student", + "full_name": "Jimenez NuÑez Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25226, + "fields": { + "user": null, + "account_number": "41004157", + "user_type": "student", + "full_name": "Martinez Luna Domingo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25227, + "fields": { + "user": null, + "account_number": "41004119", + "user_type": "student", + "full_name": "Carranza Trejo Gabriela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25228, + "fields": { + "user": null, + "account_number": "41004054", + "user_type": "student", + "full_name": "Carrasco Belman Angel Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25229, + "fields": { + "user": null, + "account_number": "41004048", + "user_type": "student", + "full_name": "Perez DueÑas Erendira Del Rocio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25230, + "fields": { + "user": null, + "account_number": "41004004", + "user_type": "student", + "full_name": "Franco Martinez Juan Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25231, + "fields": { + "user": null, + "account_number": "41003968", + "user_type": "student", + "full_name": "Duran Santiago Francisco" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25232, + "fields": { + "user": null, + "account_number": "41003926", + "user_type": "student", + "full_name": "Mesas Santana Luis Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25233, + "fields": { + "user": null, + "account_number": "41003847", + "user_type": "student", + "full_name": "Juarez Perez Aline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25234, + "fields": { + "user": null, + "account_number": "41003843", + "user_type": "student", + "full_name": "Gaspar Saldivar David" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25235, + "fields": { + "user": null, + "account_number": "41003683", + "user_type": "student", + "full_name": "Leyva Hernandez Lucero" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25236, + "fields": { + "user": null, + "account_number": "41003625", + "user_type": "student", + "full_name": "Farfan Perez Sergio Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25237, + "fields": { + "user": null, + "account_number": "41003601", + "user_type": "student", + "full_name": "Marcial Diaz Josue Hiram" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25238, + "fields": { + "user": null, + "account_number": "41003576", + "user_type": "student", + "full_name": "Reyes Lucas Dulce Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25239, + "fields": { + "user": null, + "account_number": "41003551", + "user_type": "student", + "full_name": "Mendoza Castillo Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25240, + "fields": { + "user": null, + "account_number": "41003404", + "user_type": "student", + "full_name": "Cortes Morales Erick" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25241, + "fields": { + "user": null, + "account_number": "41003378", + "user_type": "student", + "full_name": "Ramos Rojas Jessica Maribel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25242, + "fields": { + "user": null, + "account_number": "41003246", + "user_type": "student", + "full_name": "Mendoza Ruiz Enrique Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25243, + "fields": { + "user": null, + "account_number": "41003242", + "user_type": "student", + "full_name": "Alcaraz Martinez Pamela Chantal" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25244, + "fields": { + "user": null, + "account_number": "41002972", + "user_type": "student", + "full_name": "Mancilla Contreras Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25245, + "fields": { + "user": null, + "account_number": "41002939", + "user_type": "student", + "full_name": "Corona Romero Pedro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25246, + "fields": { + "user": null, + "account_number": "41002931", + "user_type": "student", + "full_name": "Mireles Nandayapa Carlos Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25247, + "fields": { + "user": null, + "account_number": "41002744", + "user_type": "student", + "full_name": "Cruz Matias Aquilino" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25248, + "fields": { + "user": null, + "account_number": "41002617", + "user_type": "student", + "full_name": "Perez Montes Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25249, + "fields": { + "user": null, + "account_number": "41002604", + "user_type": "student", + "full_name": "Villalva Garcia Nadia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25250, + "fields": { + "user": null, + "account_number": "41002570", + "user_type": "student", + "full_name": "Juarez Avila Norma Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25251, + "fields": { + "user": null, + "account_number": "41002532", + "user_type": "student", + "full_name": "Hernandez Ortiz Sandra" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25252, + "fields": { + "user": null, + "account_number": "41002527", + "user_type": "student", + "full_name": "Pineda Rodriguez Jonnatan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25253, + "fields": { + "user": null, + "account_number": "41002525", + "user_type": "student", + "full_name": "Rangel Lopez Karenia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25254, + "fields": { + "user": null, + "account_number": "41002503", + "user_type": "student", + "full_name": "Jacobo Lopez Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25255, + "fields": { + "user": null, + "account_number": "41002457", + "user_type": "student", + "full_name": "Sanchez Cabrera Felipe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25256, + "fields": { + "user": null, + "account_number": "41002456", + "user_type": "student", + "full_name": "Resendiz Mendoza Victo Hugo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25257, + "fields": { + "user": null, + "account_number": "41002309", + "user_type": "student", + "full_name": "Flores Loredo Alfedo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25258, + "fields": { + "user": null, + "account_number": "41002307", + "user_type": "student", + "full_name": "Rodriguez Martinez Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25259, + "fields": { + "user": null, + "account_number": "41002265", + "user_type": "student", + "full_name": "Hernandez Martinez Luis Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25260, + "fields": { + "user": null, + "account_number": "41002235", + "user_type": "student", + "full_name": "Islas Carbajal Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25261, + "fields": { + "user": null, + "account_number": "41002204", + "user_type": "student", + "full_name": "Avila Navarro Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25262, + "fields": { + "user": null, + "account_number": "41002125", + "user_type": "student", + "full_name": "Padilla Aleman David Bryan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25263, + "fields": { + "user": null, + "account_number": "41002086", + "user_type": "student", + "full_name": "Osnaya Juarez Roberto Edwin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25264, + "fields": { + "user": null, + "account_number": "41002035", + "user_type": "student", + "full_name": "Juarez Ramirez Diego Armando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25265, + "fields": { + "user": null, + "account_number": "41002026", + "user_type": "student", + "full_name": "Mendoza Rojas Cristina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25266, + "fields": { + "user": null, + "account_number": "41001958", + "user_type": "student", + "full_name": "Hernandez CedeÑo Irving" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25267, + "fields": { + "user": null, + "account_number": "41001957", + "user_type": "student", + "full_name": "Osuna Alpuche Luis Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25268, + "fields": { + "user": null, + "account_number": "41001853", + "user_type": "student", + "full_name": "Cordova Que Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25269, + "fields": { + "user": null, + "account_number": "41001790", + "user_type": "student", + "full_name": "Limon Robles Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25270, + "fields": { + "user": null, + "account_number": "41001774", + "user_type": "student", + "full_name": "Arguelles Torres Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25271, + "fields": { + "user": null, + "account_number": "41001718", + "user_type": "student", + "full_name": "Alor Vela Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25272, + "fields": { + "user": null, + "account_number": "41001652", + "user_type": "student", + "full_name": "Rodriguez Ordaz Omar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25273, + "fields": { + "user": null, + "account_number": "41001562", + "user_type": "student", + "full_name": "Maya Ortiz Silvia Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25274, + "fields": { + "user": null, + "account_number": "41001504", + "user_type": "student", + "full_name": "Canton Rangel Adrian" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25275, + "fields": { + "user": null, + "account_number": "41001498", + "user_type": "student", + "full_name": "Mondragon Araujo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25276, + "fields": { + "user": null, + "account_number": "41001382", + "user_type": "student", + "full_name": "Veronico Arellano Briseida" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25277, + "fields": { + "user": null, + "account_number": "41001379", + "user_type": "student", + "full_name": "Gomez Ovando Samuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25278, + "fields": { + "user": null, + "account_number": "41001224", + "user_type": "student", + "full_name": "Mendez Lopez Jonatan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25279, + "fields": { + "user": null, + "account_number": "41001205", + "user_type": "student", + "full_name": "Vargas Castro Juan Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25280, + "fields": { + "user": null, + "account_number": "41001196", + "user_type": "student", + "full_name": "Pacheco Gonzalez Alexander" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25281, + "fields": { + "user": null, + "account_number": "41001188", + "user_type": "student", + "full_name": "Barbabosa Sanchez Oscar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25282, + "fields": { + "user": null, + "account_number": "41001180", + "user_type": "student", + "full_name": "Cruz Cuellar Jenny Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25283, + "fields": { + "user": null, + "account_number": "41001151", + "user_type": "student", + "full_name": "Jimenez Hernandez Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25284, + "fields": { + "user": null, + "account_number": "41001111", + "user_type": "student", + "full_name": "Viquez Hernandez Luis Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25285, + "fields": { + "user": null, + "account_number": "41001056", + "user_type": "student", + "full_name": "Hernandez Mateos Karina" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25286, + "fields": { + "user": null, + "account_number": "41000921", + "user_type": "student", + "full_name": "Angeles Salvador Belem" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25287, + "fields": { + "user": null, + "account_number": "41000898", + "user_type": "student", + "full_name": "Garcia Silva Edgar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25288, + "fields": { + "user": null, + "account_number": "41000837", + "user_type": "student", + "full_name": "Gonzalez Zavala Angel Abel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25289, + "fields": { + "user": null, + "account_number": "41000796", + "user_type": "student", + "full_name": "Sanchez Lopez Alfredo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25290, + "fields": { + "user": null, + "account_number": "41000728", + "user_type": "student", + "full_name": "Soto Gonzalez Raymundo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25291, + "fields": { + "user": null, + "account_number": "41000706", + "user_type": "student", + "full_name": "Meza Salas Monica Priscila" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25292, + "fields": { + "user": null, + "account_number": "41000682", + "user_type": "student", + "full_name": "Alcantara Delgado Julio Cesar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25293, + "fields": { + "user": null, + "account_number": "41000630", + "user_type": "student", + "full_name": "Miranda Arenas Sergio Eymard" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25294, + "fields": { + "user": null, + "account_number": "41000607", + "user_type": "student", + "full_name": "Martinez Chavelas Saul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25295, + "fields": { + "user": null, + "account_number": "41000599", + "user_type": "student", + "full_name": "Espinoza Zepeda Gibran Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25296, + "fields": { + "user": null, + "account_number": "41000548", + "user_type": "student", + "full_name": "Gonzalez Irigoyen Emanuel Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25297, + "fields": { + "user": null, + "account_number": "41000507", + "user_type": "student", + "full_name": "Maya Flores Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25298, + "fields": { + "user": null, + "account_number": "41000492", + "user_type": "student", + "full_name": "Velez Suarez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25299, + "fields": { + "user": null, + "account_number": "41000455", + "user_type": "student", + "full_name": "Sanchez Perez Karla Yuridia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25300, + "fields": { + "user": null, + "account_number": "41000383", + "user_type": "student", + "full_name": "Gonzalez Romero Yuridia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25301, + "fields": { + "user": null, + "account_number": "41000377", + "user_type": "student", + "full_name": "Rodarte Rodriguez Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25302, + "fields": { + "user": null, + "account_number": "41000319", + "user_type": "student", + "full_name": "Vargas Chavez Marino Micheline" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25303, + "fields": { + "user": null, + "account_number": "41000215", + "user_type": "student", + "full_name": "Lopez Ortega Mauricio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25304, + "fields": { + "user": null, + "account_number": "41000190", + "user_type": "student", + "full_name": "Valverde Flores Alma" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25305, + "fields": { + "user": null, + "account_number": "41000152", + "user_type": "student", + "full_name": "Rodriguez Juarez Marcos Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25306, + "fields": { + "user": null, + "account_number": "41000142", + "user_type": "student", + "full_name": "Antonio Del Rosario Angeles Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25307, + "fields": { + "user": null, + "account_number": "41000084", + "user_type": "student", + "full_name": "Felix Cruz Sofia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25308, + "fields": { + "user": null, + "account_number": "41000039", + "user_type": "student", + "full_name": "Jaramillo Zurita Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25309, + "fields": { + "user": null, + "account_number": "41000020", + "user_type": "student", + "full_name": "Palacios Salinas Nelly Rosaura" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25310, + "fields": { + "user": null, + "account_number": "41000005", + "user_type": "student", + "full_name": "Gonzalez Martinez Gerardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25311, + "fields": { + "user": null, + "account_number": "40909911", + "user_type": "student", + "full_name": "Ramirez Ayala Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25312, + "fields": { + "user": null, + "account_number": "40907943", + "user_type": "student", + "full_name": "Juarez Arriola Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25313, + "fields": { + "user": null, + "account_number": "40901430", + "user_type": "student", + "full_name": "Zamora Gomez David Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25314, + "fields": { + "user": null, + "account_number": "40710963", + "user_type": "student", + "full_name": "Castro Agustin Giovanni" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25315, + "fields": { + "user": null, + "account_number": "40509557", + "user_type": "student", + "full_name": "Morales Mendez Elizabeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25316, + "fields": { + "user": null, + "account_number": "30808489", + "user_type": "student", + "full_name": "Galeana Chavez Maria Del Rosario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25317, + "fields": { + "user": null, + "account_number": "30775191", + "user_type": "student", + "full_name": "Violeta Alejandra Negrete Cortes" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25318, + "fields": { + "user": null, + "account_number": "30774161", + "user_type": "student", + "full_name": "Sanchez Ferriz Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25319, + "fields": { + "user": null, + "account_number": "30772024", + "user_type": "student", + "full_name": "Herrera Garcia Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25320, + "fields": { + "user": null, + "account_number": "30770318", + "user_type": "student", + "full_name": "Lopez Garcia Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25321, + "fields": { + "user": null, + "account_number": "30766984", + "user_type": "student", + "full_name": "Martinez Gurza Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25322, + "fields": { + "user": null, + "account_number": "30765910", + "user_type": "student", + "full_name": "Moran Guevara Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25323, + "fields": { + "user": null, + "account_number": "30764504", + "user_type": "student", + "full_name": "Morales Barraza Elena" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25324, + "fields": { + "user": null, + "account_number": "30764051", + "user_type": "student", + "full_name": "Puebla Martinez Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25325, + "fields": { + "user": null, + "account_number": "30756521", + "user_type": "student", + "full_name": "Wang I Wen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25326, + "fields": { + "user": null, + "account_number": "30750931", + "user_type": "student", + "full_name": "Ingle Gonzalez Jorge Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25327, + "fields": { + "user": null, + "account_number": "30733739", + "user_type": "student", + "full_name": "Valdez Cornejo Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25328, + "fields": { + "user": null, + "account_number": "30733227", + "user_type": "student", + "full_name": "Garcia Garcia Jesus Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25329, + "fields": { + "user": null, + "account_number": "30733022", + "user_type": "student", + "full_name": "Villa Vargas Wendy Melissa" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25330, + "fields": { + "user": null, + "account_number": "30732933", + "user_type": "student", + "full_name": "Garcia Amaya Samuel Jonathan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25331, + "fields": { + "user": null, + "account_number": "30732807", + "user_type": "student", + "full_name": "Tlatilolpa Moreno Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25332, + "fields": { + "user": null, + "account_number": "30732379", + "user_type": "student", + "full_name": "Pantoja Paz Salvador" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25333, + "fields": { + "user": null, + "account_number": "30731500", + "user_type": "student", + "full_name": "Saavedra Cisneros Erick Josue" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25334, + "fields": { + "user": null, + "account_number": "30731082", + "user_type": "student", + "full_name": "Salgado Mendoza Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25335, + "fields": { + "user": null, + "account_number": "30730756", + "user_type": "student", + "full_name": "Tierrablanca Salguero Atzintli" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25336, + "fields": { + "user": null, + "account_number": "30728626", + "user_type": "student", + "full_name": "Vallejo Gutierrez Cesar Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25337, + "fields": { + "user": null, + "account_number": "30728578", + "user_type": "student", + "full_name": "Zamarripa Martinez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25338, + "fields": { + "user": null, + "account_number": "30728481", + "user_type": "student", + "full_name": "Vilchez Alcantar Luis Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25339, + "fields": { + "user": null, + "account_number": "30728391", + "user_type": "student", + "full_name": "Torres Flores Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25340, + "fields": { + "user": null, + "account_number": "30727769", + "user_type": "student", + "full_name": "Rodriguez Contreras Diana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25341, + "fields": { + "user": null, + "account_number": "30727415", + "user_type": "student", + "full_name": "Moreno Mendoza Manuel Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25342, + "fields": { + "user": null, + "account_number": "30727387", + "user_type": "student", + "full_name": "Martinez Licona Pamela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25343, + "fields": { + "user": null, + "account_number": "30727067", + "user_type": "student", + "full_name": "Rosas Salazar Karen Mayte" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25344, + "fields": { + "user": null, + "account_number": "30727061", + "user_type": "student", + "full_name": "Rodriguez Torres Karla Yazmin" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25345, + "fields": { + "user": null, + "account_number": "30724897", + "user_type": "student", + "full_name": "Vergara Hernandez Giovanny Emmanuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25346, + "fields": { + "user": null, + "account_number": "30724407", + "user_type": "student", + "full_name": "PiÑa Lozano Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25347, + "fields": { + "user": null, + "account_number": "30722850", + "user_type": "student", + "full_name": "Garcia Alfonso Jesucristo Esteban" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25348, + "fields": { + "user": null, + "account_number": "30717085", + "user_type": "student", + "full_name": "Hernandez Herrera Paola Naomi" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25349, + "fields": { + "user": null, + "account_number": "30715303", + "user_type": "student", + "full_name": "Silva Jara Lidia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25350, + "fields": { + "user": null, + "account_number": "30714954", + "user_type": "student", + "full_name": "Rosalino Ramirez Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25351, + "fields": { + "user": null, + "account_number": "30714038", + "user_type": "student", + "full_name": "Hernandez Ramirez Miriam" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25352, + "fields": { + "user": null, + "account_number": "30714025", + "user_type": "student", + "full_name": "Gomez Vasquez Leticia" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25353, + "fields": { + "user": null, + "account_number": "30713914", + "user_type": "student", + "full_name": "Gutierrez Gonzalez Gustavo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25354, + "fields": { + "user": null, + "account_number": "30711592", + "user_type": "student", + "full_name": "Espinosa IbaÑez Maria Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25355, + "fields": { + "user": null, + "account_number": "30711554", + "user_type": "student", + "full_name": "Cuin Miranda Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25356, + "fields": { + "user": null, + "account_number": "30711500", + "user_type": "student", + "full_name": "Cayetano Cecilio Carolina Cruz" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25357, + "fields": { + "user": null, + "account_number": "30711199", + "user_type": "student", + "full_name": "Cruz Cuevas Diana Esmeralda" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25358, + "fields": { + "user": null, + "account_number": "30710446", + "user_type": "student", + "full_name": "Flores Garcia Jesus" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25359, + "fields": { + "user": null, + "account_number": "30709099", + "user_type": "student", + "full_name": "Cabrera Uribe Pablo Sergio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25360, + "fields": { + "user": null, + "account_number": "30708783", + "user_type": "student", + "full_name": "Campuzano Sierra Jorge Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25361, + "fields": { + "user": null, + "account_number": "30708675", + "user_type": "student", + "full_name": "Arenas Bernardino Alma Ayde" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25362, + "fields": { + "user": null, + "account_number": "30708528", + "user_type": "student", + "full_name": "Hernandez Trujillo Victor Aurelio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25363, + "fields": { + "user": null, + "account_number": "30707013", + "user_type": "student", + "full_name": "Lopez Irigoyen Edgar Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25364, + "fields": { + "user": null, + "account_number": "30706497", + "user_type": "student", + "full_name": "Cruz Ventura Jazmin Del Rocio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25365, + "fields": { + "user": null, + "account_number": "30706073", + "user_type": "student", + "full_name": "Aquino Del Angel Malu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25366, + "fields": { + "user": null, + "account_number": "30705981", + "user_type": "student", + "full_name": "Aparicio Mondragon Oscar" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25367, + "fields": { + "user": null, + "account_number": "30703936", + "user_type": "student", + "full_name": "Espinosa Guzman Magali Lizeth" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25368, + "fields": { + "user": null, + "account_number": "30703208", + "user_type": "student", + "full_name": "Cervantes Orozco Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25369, + "fields": { + "user": null, + "account_number": "30700231", + "user_type": "student", + "full_name": "Gomez Santiago Edgar Allan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25370, + "fields": { + "user": null, + "account_number": "30675259", + "user_type": "student", + "full_name": "Garcia Perez Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25371, + "fields": { + "user": null, + "account_number": "30672501", + "user_type": "student", + "full_name": "Rivas Eligio Raquel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25372, + "fields": { + "user": null, + "account_number": "30665576", + "user_type": "student", + "full_name": "Torres Cesar Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25373, + "fields": { + "user": null, + "account_number": "30658785", + "user_type": "student", + "full_name": "Lopez Corro Pamela" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25374, + "fields": { + "user": null, + "account_number": "30655319", + "user_type": "student", + "full_name": "Ortega Mendez Alejandra Isabel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25375, + "fields": { + "user": null, + "account_number": "30653330", + "user_type": "student", + "full_name": "Sanchez Lerma Rodrigo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25376, + "fields": { + "user": null, + "account_number": "30634046", + "user_type": "student", + "full_name": "Gomez Roa Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25377, + "fields": { + "user": null, + "account_number": "30633917", + "user_type": "student", + "full_name": "Avila Lopez Carlos Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25378, + "fields": { + "user": null, + "account_number": "30632538", + "user_type": "student", + "full_name": "Zarate Aguilar Federico" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25379, + "fields": { + "user": null, + "account_number": "30631023", + "user_type": "student", + "full_name": "Vidal Ponce Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25380, + "fields": { + "user": null, + "account_number": "30628102", + "user_type": "student", + "full_name": "Hernandez Arriaga Ixchel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25381, + "fields": { + "user": null, + "account_number": "30628072", + "user_type": "student", + "full_name": "Hermosillo Tomas Placido" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25382, + "fields": { + "user": null, + "account_number": "30627274", + "user_type": "student", + "full_name": "Rangel Padilla Ana Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25383, + "fields": { + "user": null, + "account_number": "30627004", + "user_type": "student", + "full_name": "Hernandez Hernandez Elihu" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25384, + "fields": { + "user": null, + "account_number": "30625318", + "user_type": "student", + "full_name": "Jaime Valencia Sinuhe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25385, + "fields": { + "user": null, + "account_number": "30624863", + "user_type": "student", + "full_name": "Silva Aranda Natalia Maria" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25386, + "fields": { + "user": null, + "account_number": "30624203", + "user_type": "student", + "full_name": "Rico Avila Abraham" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25387, + "fields": { + "user": null, + "account_number": "30623951", + "user_type": "student", + "full_name": "Ruiz Benitez Nestor Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25388, + "fields": { + "user": null, + "account_number": "30623889", + "user_type": "student", + "full_name": "Ramirez Lopez Luis Fernando" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25389, + "fields": { + "user": null, + "account_number": "30615389", + "user_type": "student", + "full_name": "Calixto Torres Viridiana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25390, + "fields": { + "user": null, + "account_number": "30613778", + "user_type": "student", + "full_name": "Fuentes Cabrera Karen Ariadne" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25391, + "fields": { + "user": null, + "account_number": "30613711", + "user_type": "student", + "full_name": "Diaz Contreras Austreberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25392, + "fields": { + "user": null, + "account_number": "30612831", + "user_type": "student", + "full_name": "Martinez Cruz Jesus Eduardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25393, + "fields": { + "user": null, + "account_number": "30612781", + "user_type": "student", + "full_name": "Mendoza ZuÑiga Tania Karen" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25394, + "fields": { + "user": null, + "account_number": "30612487", + "user_type": "student", + "full_name": "Mendoza MontaÑez Cristhian Allan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25395, + "fields": { + "user": null, + "account_number": "30611476", + "user_type": "student", + "full_name": "Morales Almanza Adrian Enrique" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25396, + "fields": { + "user": null, + "account_number": "30606382", + "user_type": "student", + "full_name": "Covielles Lopez Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25397, + "fields": { + "user": null, + "account_number": "30602159", + "user_type": "student", + "full_name": "Martinez Cantu Jose Octavio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25398, + "fields": { + "user": null, + "account_number": "30534763", + "user_type": "student", + "full_name": "Castelan Jimenez Raul" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25399, + "fields": { + "user": null, + "account_number": "30522781", + "user_type": "student", + "full_name": "Bahena Herrera Elizabeth Monserrath Guadalupe" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25400, + "fields": { + "user": null, + "account_number": "30517851", + "user_type": "student", + "full_name": "Francisco Martinez Ruben" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25401, + "fields": { + "user": null, + "account_number": "30513386", + "user_type": "student", + "full_name": "Delgado Ramos Arturo Isaac" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25402, + "fields": { + "user": null, + "account_number": "30512561", + "user_type": "student", + "full_name": "Espinal Rodriguez Mario Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25403, + "fields": { + "user": null, + "account_number": "30509329", + "user_type": "student", + "full_name": "San Martin NuÑez Yasmin Arely" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25404, + "fields": { + "user": null, + "account_number": "30505107", + "user_type": "student", + "full_name": "Ledezma Silva Marco Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25405, + "fields": { + "user": null, + "account_number": "30504705", + "user_type": "student", + "full_name": "Hernandez Cortes Efrain" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25406, + "fields": { + "user": null, + "account_number": "30503240", + "user_type": "student", + "full_name": "Ascencio Sanchez Jose Javier" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25407, + "fields": { + "user": null, + "account_number": "30480247", + "user_type": "student", + "full_name": "Garcia Jimenez Mario Alberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25408, + "fields": { + "user": null, + "account_number": "30431529", + "user_type": "student", + "full_name": "Dominguez Bobadilla Tahyna Adriana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25409, + "fields": { + "user": null, + "account_number": "30430616", + "user_type": "student", + "full_name": "Delgadillo Flores Alejandro Ramon" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25410, + "fields": { + "user": null, + "account_number": "30428038", + "user_type": "student", + "full_name": "Bueno OcaÑa Aldo Guillermo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25411, + "fields": { + "user": null, + "account_number": "30425802", + "user_type": "student", + "full_name": "Aguilar Sanchez Walter Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25412, + "fields": { + "user": null, + "account_number": "30423465", + "user_type": "student", + "full_name": "Davila Mendez Jorge" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25413, + "fields": { + "user": null, + "account_number": "30422609", + "user_type": "student", + "full_name": "Martinez Guerrero Juan Carlos" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25414, + "fields": { + "user": null, + "account_number": "30422138", + "user_type": "student", + "full_name": "Mosqueira Canseco Carlos Arturo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25415, + "fields": { + "user": null, + "account_number": "30418032", + "user_type": "student", + "full_name": "Salas Narvaez Edson Antonio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25416, + "fields": { + "user": null, + "account_number": "30410120", + "user_type": "student", + "full_name": "PiÑa Cruz Juan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25417, + "fields": { + "user": null, + "account_number": "30403383", + "user_type": "student", + "full_name": "Ramirez Salazar Josefina Monserrat" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25418, + "fields": { + "user": null, + "account_number": "30401918", + "user_type": "student", + "full_name": "Gomez Altamirano Victor Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25419, + "fields": { + "user": null, + "account_number": "30401585", + "user_type": "student", + "full_name": "Gonzalez Ayala Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25420, + "fields": { + "user": null, + "account_number": "30383838", + "user_type": "student", + "full_name": "Sanchez MuÑoz Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25421, + "fields": { + "user": null, + "account_number": "30354844", + "user_type": "student", + "full_name": "Burgos CastaÑeda Marcos Roberto" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25422, + "fields": { + "user": null, + "account_number": "30327844", + "user_type": "student", + "full_name": "Gamino Juarez Miguel Angel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25423, + "fields": { + "user": null, + "account_number": "30325530", + "user_type": "student", + "full_name": "Parra Cervantes Javier Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25424, + "fields": { + "user": null, + "account_number": "30323386", + "user_type": "student", + "full_name": "Serrano Orta Lucio" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25425, + "fields": { + "user": null, + "account_number": "30318509", + "user_type": "student", + "full_name": "Tellez Centeno Heriberto Alan" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25426, + "fields": { + "user": null, + "account_number": "30281144", + "user_type": "student", + "full_name": "Garcia Urbina Daniel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25427, + "fields": { + "user": null, + "account_number": "30257415", + "user_type": "student", + "full_name": "Salinas CarreÑo Zarate Jorge Hector" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25428, + "fields": { + "user": null, + "account_number": "30226476", + "user_type": "student", + "full_name": "Lopez Gonzalez Andres" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25429, + "fields": { + "user": null, + "account_number": "30130315", + "user_type": "student", + "full_name": "Guzman Ovando Juana Aidee" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25430, + "fields": { + "user": null, + "account_number": "30121631", + "user_type": "student", + "full_name": "Gallardo Bustos Liliana" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25431, + "fields": { + "user": null, + "account_number": "30116881", + "user_type": "student", + "full_name": "Avila Navarro Jose Luis" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25432, + "fields": { + "user": null, + "account_number": "30113556", + "user_type": "student", + "full_name": "Mancilla Contreras Rafael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25433, + "fields": { + "user": null, + "account_number": "30109190", + "user_type": "student", + "full_name": "Moreno Medina Luis Gabriel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25434, + "fields": { + "user": null, + "account_number": "30001454", + "user_type": "student", + "full_name": "Vallejo Parra Manuel" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25435, + "fields": { + "user": null, + "account_number": "10200261", + "user_type": "student", + "full_name": "Cienfuegos Riquelme Rocio Veronica" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25436, + "fields": { + "user": null, + "account_number": "09929850", + "user_type": "student", + "full_name": "Tinoco Camacho Ismael" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25437, + "fields": { + "user": null, + "account_number": "09920804", + "user_type": "student", + "full_name": "Mondragon Araujo Ricardo" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25438, + "fields": { + "user": null, + "account_number": "09812032", + "user_type": "student", + "full_name": "Estrada Casillas Mario" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25439, + "fields": { + "user": null, + "account_number": "09525556", + "user_type": "student", + "full_name": "Morales Quezada Alejandro" + } +}, +{ + "model": "authentication.userprofile", + "pk": 25440, + "fields": { + "user": 5, + "account_number": "11111111", + "user_type": "assistant", + "full_name": "Asistente1" + } +}, +{ + "model": "authentication.asistente", + "pk": 4, + "fields": { + "user_profile": 25440, + "can_manage_events": true + } +}, +{ + "model": "authentication.systemconfiguration", + "pk": 1, + "fields": { + "minimum_attendance_percentage": 80.0, + "minutes_before_event": 10, + "minutes_after_start": 25, + "updated_at": "2025-10-21T04:14:45.802Z", + "updated_by": null + } +}, +{ + "model": "events.event", + "pk": 43, + "fields": { + "title": "Transformación Digital: Construyendo el Futuro.", + "description": "Conferencia sobre transformación digital en empresas.", + "event_type": "conference", + "modality": "presencial", + "speaker": "Mtro. Ricardo Medina Alarcón", + "date": "2025-10-20", + "start_time": "18:00:00", + "end_time": "19:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.130Z" + } +}, +{ + "model": "events.event", + "pk": 44, + "fields": { + "title": "Finanzas: El campo de juego perfecto para un MAC.", + "description": "Conferencia sobre la aplicación de MAC en el ámbito financiero.", + "event_type": "conference", + "modality": "presencial", + "speaker": "Lic. Luis Giovanni Guerrero García", + "date": "2025-10-20", + "start_time": "19:00:00", + "end_time": "20:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.140Z" + } +}, +{ + "model": "events.event", + "pk": 45, + "fields": { + "title": "Matemáticas Aplicadas a Medicina a través del Procesamiento Digital de Imágenes", + "description": "Investigadora del IIMAS, Departamento de Ciencias de la Computación (CC)", + "event_type": "conference", + "modality": "presencial", + "speaker": "Dra. M. Elena Martínez-Pérez", + "date": "2025-10-21", + "start_time": "11:00:00", + "end_time": "12:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.149Z" + } +}, +{ + "model": "events.event", + "pk": 46, + "fields": { + "title": "Tecnologías IIoT al servicio de la Industria", + "description": "Conferencia sobre tecnologías IIoT aplicadas a la industria", + "event_type": "conference", + "modality": "presencial", + "speaker": "Ing. Andrey Martínez Ignacio e Ing. Eduardo Espino", + "date": "2025-10-21", + "start_time": "11:00:00", + "end_time": "12:00:00", + "location": "UIM", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.157Z" + } +}, +{ + "model": "events.event", + "pk": 47, + "fields": { + "title": "La presión fiscal como oportunidad en el entorno profesional", + "description": "CEO Konesh", + "event_type": "conference", + "modality": "presencial", + "speaker": "Dr. Héctor Antonio Gutiérrez Machorro", + "date": "2025-10-21", + "start_time": "12:00:00", + "end_time": "13:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.166Z" + } +}, +{ + "model": "events.event", + "pk": 48, + "fields": { + "title": "Matemáticas Aplicadas y Computación: Una fábrica mexicana de conocimiento y soluciones", + "description": "Profesora de Tiempo Completo de la Facultad de Ingeniería", + "event_type": "conference", + "modality": "presencial", + "speaker": "Dra. Mayra Elizondo Cortes", + "date": "2025-10-21", + "start_time": "12:00:00", + "end_time": "13:00:00", + "location": "UIM", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.174Z" + } +}, +{ + "model": "events.event", + "pk": 49, + "fields": { + "title": "Hipergráficas en el área de la salud", + "description": "Profesora de Maestría de la Facultad de Ingeniería", + "event_type": "conference", + "modality": "presencial", + "speaker": "Nilse Pamela Romero Basurto", + "date": "2025-10-21", + "start_time": "17:00:00", + "end_time": "18:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.184Z" + } +}, +{ + "model": "events.event", + "pk": 50, + "fields": { + "title": "Mi vida contada a través de los datos", + "description": "Senior Manager en el área de Datos para LATAM en Coca-Cola Company", + "event_type": "conference", + "modality": "presencial", + "speaker": "Ing. Miguel Ángel Morán Flores", + "date": "2025-10-21", + "start_time": "18:00:00", + "end_time": "19:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.194Z" + } +}, +{ + "model": "events.event", + "pk": 51, + "fields": { + "title": "Por definir", + "description": "Conferencia por Huawei (tema por definir)", + "event_type": "conference", + "modality": "presencial", + "speaker": "Huawei", + "date": "2025-10-21", + "start_time": "19:00:00", + "end_time": "20:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.203Z" + } +}, +{ + "model": "events.event", + "pk": 52, + "fields": { + "title": "Del dato a la IA: Como Oracle impulsa la IA", + "description": "AI Advisor en Oracle México", + "event_type": "conference", + "modality": "presencial", + "speaker": "Lic. Camilo Serratos Martínez", + "date": "2025-10-22", + "start_time": "17:00:00", + "end_time": "18:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.211Z" + } +}, +{ + "model": "events.event", + "pk": 53, + "fields": { + "title": "App Kachi México y su cultura", + "description": "Desarrolladores APP", + "event_type": "conference", + "modality": "presencial", + "speaker": "C. Karla Abigail Tovar Salazar y C. Jacobo Escorcia Alcantara", + "date": "2025-10-22", + "start_time": "18:00:00", + "end_time": "19:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.220Z" + } +}, +{ + "model": "events.event", + "pk": 54, + "fields": { + "title": "De principiante a protector: Luchando contra el Phishing", + "description": "Consultor de seguridad en Cisco", + "event_type": "conference", + "modality": "presencial", + "speaker": "Lic. Diego Hernández Landeros", + "date": "2025-10-22", + "start_time": "19:00:00", + "end_time": "20:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.229Z" + } +}, +{ + "model": "events.event", + "pk": 55, + "fields": { + "title": "MAC aplicado en el sector de aseguradoras", + "description": "Especialista en soluciones analíticas para el sector asegurador SAS", + "event_type": "conference", + "modality": "presencial", + "speaker": "Paul Gutiérrez Flores", + "date": "2025-10-23", + "start_time": "11:00:00", + "end_time": "12:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.238Z" + } +}, +{ + "model": "events.event", + "pk": 56, + "fields": { + "title": "Análisis de Escenas Auditivas", + "description": "Investigador del IIMAS", + "event_type": "conference", + "modality": "presencial", + "speaker": "Dr. Caleb Antonio Rascón Estebané", + "date": "2025-10-23", + "start_time": "11:00:00", + "end_time": "12:00:00", + "location": "UIM", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.247Z" + } +}, +{ + "model": "events.event", + "pk": 57, + "fields": { + "title": "Investigación en MAC con IA", + "description": "Profesores de carrera de la FES Acatlán", + "event_type": "conference", + "modality": "presencial", + "speaker": "Dra. MariCarmen González Videgaray y Mtro. Rubén Romero Ruiz", + "date": "2025-10-23", + "start_time": "12:00:00", + "end_time": "13:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.256Z" + } +}, +{ + "model": "events.event", + "pk": 58, + "fields": { + "title": "Cuando los datos hablan: explorando realidades sociales con ciencia de datos", + "description": "Investigador del IPN", + "event_type": "conference", + "modality": "presencial", + "speaker": "Dr. Miguel Felix Mata Rivera", + "date": "2025-10-23", + "start_time": "12:00:00", + "end_time": "13:00:00", + "location": "UIM", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.265Z" + } +}, +{ + "model": "events.event", + "pk": 59, + "fields": { + "title": "Morras TICS en la Industria: inclusión, habilidades y transformación en el ámbito tecnológico", + "description": "Alumnas de la Carrera de MAC", + "event_type": "conference", + "modality": "presencial", + "speaker": "Monserrat Rivas Torres / Natalie Gabrielle Franco Mitzi", + "date": "2025-10-23", + "start_time": "17:00:00", + "end_time": "18:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.272Z" + } +}, +{ + "model": "events.event", + "pk": 60, + "fields": { + "title": "La odisea: De cero a experto en 10 años", + "description": "Ingeniero de datos", + "event_type": "conference", + "modality": "presencial", + "speaker": "Lic. Adam Espinosa", + "date": "2025-10-23", + "start_time": "18:00:00", + "end_time": "19:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.282Z" + } +}, +{ + "model": "events.event", + "pk": 61, + "fields": { + "title": "La importancia de los Patrones de Diseño en el desarrollo de software, orientado a apps móviles iOS", + "description": "Desarrollador iOS, Nova Solutions", + "event_type": "conference", + "modality": "presencial", + "speaker": "Christopher Ocaña Amezcua", + "date": "2025-10-23", + "start_time": "19:00:00", + "end_time": "20:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.290Z" + } +}, +{ + "model": "events.event", + "pk": 62, + "fields": { + "title": "Ciberseguridad en entornos industriales", + "description": "Grupo Modelo", + "event_type": "conference", + "modality": "presencial", + "speaker": "Lic. Juan Carlos Ramírez Cardona", + "date": "2025-10-24", + "start_time": "11:00:00", + "end_time": "12:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.299Z" + } +}, +{ + "model": "events.event", + "pk": 63, + "fields": { + "title": "Investigación aplicada en el desarrollo tecnológico", + "description": "Investigación aplicada en el desarrollo tecnológico", + "event_type": "conference", + "modality": "presencial", + "speaker": "Ing. Gerar Karl Alexander Ballhausen Domínguez", + "date": "2025-10-24", + "start_time": "12:00:00", + "end_time": "13:00:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.308Z" + } +}, +{ + "model": "events.event", + "pk": 64, + "fields": { + "title": "Premiación y clausura", + "description": "Ceremonia de clausura de la XXI Semana Académica.", + "event_type": "conference", + "modality": "presencial", + "speaker": "nan", + "date": "2025-10-25", + "start_time": "13:00:00", + "end_time": "14:30:00", + "location": "Auditorio I", + "max_capacity": 100, + "is_active": true, + "requires_registration": false, + "meeting_link": null, + "meeting_id": null, + "created_at": "2025-10-21T04:15:44.319Z" + } +}, +{ + "model": "attendance.attendance", + "pk": 1, + "fields": { + "student": 20312, + "event": 43, + "timestamp": "2025-10-21T04:15:44.403Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 2, + "fields": { + "student": 20312, + "event": 44, + "timestamp": "2025-10-21T04:15:44.446Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 3, + "fields": { + "student": 20487, + "event": 43, + "timestamp": "2025-10-21T04:15:44.478Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 4, + "fields": { + "student": 20487, + "event": 44, + "timestamp": "2025-10-21T04:15:44.509Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 5, + "fields": { + "student": 19851, + "event": 43, + "timestamp": "2025-10-21T04:15:44.537Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 6, + "fields": { + "student": 19851, + "event": 44, + "timestamp": "2025-10-21T04:15:44.567Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 7, + "fields": { + "student": 19839, + "event": 43, + "timestamp": "2025-10-21T04:15:44.594Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 8, + "fields": { + "student": 19839, + "event": 44, + "timestamp": "2025-10-21T04:15:44.622Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 9, + "fields": { + "student": 19817, + "event": 43, + "timestamp": "2025-10-21T04:15:44.649Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 10, + "fields": { + "student": 19817, + "event": 44, + "timestamp": "2025-10-21T04:15:44.681Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 11, + "fields": { + "student": 19950, + "event": 43, + "timestamp": "2025-10-21T04:15:44.707Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 12, + "fields": { + "student": 19950, + "event": 44, + "timestamp": "2025-10-21T04:15:44.732Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 13, + "fields": { + "student": 19182, + "event": 43, + "timestamp": "2025-10-21T04:15:44.757Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 14, + "fields": { + "student": 19182, + "event": 44, + "timestamp": "2025-10-21T04:15:44.783Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 15, + "fields": { + "student": 19226, + "event": 43, + "timestamp": "2025-10-21T04:15:44.809Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 16, + "fields": { + "student": 19226, + "event": 44, + "timestamp": "2025-10-21T04:15:44.837Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 17, + "fields": { + "student": 19376, + "event": 43, + "timestamp": "2025-10-21T04:15:44.863Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 18, + "fields": { + "student": 19376, + "event": 44, + "timestamp": "2025-10-21T04:15:44.888Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 19, + "fields": { + "student": 19264, + "event": 43, + "timestamp": "2025-10-21T04:15:44.913Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 20, + "fields": { + "student": 19264, + "event": 44, + "timestamp": "2025-10-21T04:15:44.940Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 21, + "fields": { + "student": 19280, + "event": 43, + "timestamp": "2025-10-21T04:15:44.967Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 22, + "fields": { + "student": 19280, + "event": 44, + "timestamp": "2025-10-21T04:15:44.993Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 23, + "fields": { + "student": 19786, + "event": 43, + "timestamp": "2025-10-21T04:15:45.020Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 24, + "fields": { + "student": 19786, + "event": 44, + "timestamp": "2025-10-21T04:15:45.047Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 25, + "fields": { + "student": 19778, + "event": 43, + "timestamp": "2025-10-21T04:15:45.072Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 26, + "fields": { + "student": 19778, + "event": 44, + "timestamp": "2025-10-21T04:15:45.100Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 27, + "fields": { + "student": 19571, + "event": 43, + "timestamp": "2025-10-21T04:15:45.126Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 28, + "fields": { + "student": 19571, + "event": 44, + "timestamp": "2025-10-21T04:15:45.155Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 29, + "fields": { + "student": 19335, + "event": 43, + "timestamp": "2025-10-21T04:15:45.182Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 30, + "fields": { + "student": 19335, + "event": 44, + "timestamp": "2025-10-21T04:15:45.209Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 31, + "fields": { + "student": 19162, + "event": 43, + "timestamp": "2025-10-21T04:15:45.237Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 32, + "fields": { + "student": 19162, + "event": 44, + "timestamp": "2025-10-21T04:15:45.265Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 33, + "fields": { + "student": 19118, + "event": 43, + "timestamp": "2025-10-21T04:15:45.295Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 34, + "fields": { + "student": 19118, + "event": 44, + "timestamp": "2025-10-21T04:15:45.321Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 35, + "fields": { + "student": 19286, + "event": 43, + "timestamp": "2025-10-21T04:15:45.347Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 36, + "fields": { + "student": 19286, + "event": 44, + "timestamp": "2025-10-21T04:15:45.374Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 37, + "fields": { + "student": 19094, + "event": 43, + "timestamp": "2025-10-21T04:15:45.400Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 38, + "fields": { + "student": 19094, + "event": 44, + "timestamp": "2025-10-21T04:15:45.426Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 39, + "fields": { + "student": 19586, + "event": 43, + "timestamp": "2025-10-21T04:15:45.452Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 40, + "fields": { + "student": 19586, + "event": 44, + "timestamp": "2025-10-21T04:15:45.480Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 41, + "fields": { + "student": 20024, + "event": 43, + "timestamp": "2025-10-21T04:15:45.507Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 42, + "fields": { + "student": 20024, + "event": 44, + "timestamp": "2025-10-21T04:15:45.537Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 43, + "fields": { + "student": 19995, + "event": 43, + "timestamp": "2025-10-21T04:15:45.563Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 44, + "fields": { + "student": 19995, + "event": 44, + "timestamp": "2025-10-21T04:15:45.593Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 45, + "fields": { + "student": 19805, + "event": 43, + "timestamp": "2025-10-21T04:15:45.621Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 46, + "fields": { + "student": 19805, + "event": 44, + "timestamp": "2025-10-21T04:15:45.651Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 47, + "fields": { + "student": 20538, + "event": 43, + "timestamp": "2025-10-21T04:15:45.685Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 48, + "fields": { + "student": 20538, + "event": 44, + "timestamp": "2025-10-21T04:15:45.714Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 49, + "fields": { + "student": 20161, + "event": 43, + "timestamp": "2025-10-21T04:15:45.740Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 50, + "fields": { + "student": 20161, + "event": 44, + "timestamp": "2025-10-21T04:15:45.766Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 51, + "fields": { + "student": 20334, + "event": 43, + "timestamp": "2025-10-21T04:15:45.790Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 52, + "fields": { + "student": 20334, + "event": 44, + "timestamp": "2025-10-21T04:15:45.814Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 53, + "fields": { + "student": 20324, + "event": 43, + "timestamp": "2025-10-21T04:15:45.838Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 54, + "fields": { + "student": 20324, + "event": 44, + "timestamp": "2025-10-21T04:15:45.865Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 55, + "fields": { + "student": 20207, + "event": 43, + "timestamp": "2025-10-21T04:15:45.890Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 56, + "fields": { + "student": 20207, + "event": 44, + "timestamp": "2025-10-21T04:15:45.916Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 57, + "fields": { + "student": 20212, + "event": 43, + "timestamp": "2025-10-21T04:15:45.940Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 58, + "fields": { + "student": 20212, + "event": 44, + "timestamp": "2025-10-21T04:15:45.965Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 59, + "fields": { + "student": 19572, + "event": 43, + "timestamp": "2025-10-21T04:15:45.990Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 60, + "fields": { + "student": 19572, + "event": 44, + "timestamp": "2025-10-21T04:15:46.020Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 61, + "fields": { + "student": 19542, + "event": 43, + "timestamp": "2025-10-21T04:15:46.045Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 62, + "fields": { + "student": 19542, + "event": 44, + "timestamp": "2025-10-21T04:15:46.069Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 63, + "fields": { + "student": 20964, + "event": 43, + "timestamp": "2025-10-21T04:15:46.096Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 64, + "fields": { + "student": 20964, + "event": 44, + "timestamp": "2025-10-21T04:15:46.121Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 65, + "fields": { + "student": 20234, + "event": 43, + "timestamp": "2025-10-21T04:15:46.147Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 66, + "fields": { + "student": 20234, + "event": 44, + "timestamp": "2025-10-21T04:15:46.173Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 67, + "fields": { + "student": 19185, + "event": 43, + "timestamp": "2025-10-21T04:15:46.198Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 68, + "fields": { + "student": 19185, + "event": 44, + "timestamp": "2025-10-21T04:15:46.225Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 69, + "fields": { + "student": 19183, + "event": 43, + "timestamp": "2025-10-21T04:15:46.250Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 70, + "fields": { + "student": 19183, + "event": 44, + "timestamp": "2025-10-21T04:15:46.275Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 71, + "fields": { + "student": 19834, + "event": 43, + "timestamp": "2025-10-21T04:15:46.301Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 72, + "fields": { + "student": 19834, + "event": 44, + "timestamp": "2025-10-21T04:15:46.332Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 73, + "fields": { + "student": 19440, + "event": 43, + "timestamp": "2025-10-21T04:15:46.358Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 74, + "fields": { + "student": 19440, + "event": 44, + "timestamp": "2025-10-21T04:15:46.386Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 75, + "fields": { + "student": 20008, + "event": 43, + "timestamp": "2025-10-21T04:15:46.413Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 76, + "fields": { + "student": 20008, + "event": 44, + "timestamp": "2025-10-21T04:15:46.445Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 77, + "fields": { + "student": 19638, + "event": 43, + "timestamp": "2025-10-21T04:15:46.472Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 78, + "fields": { + "student": 19638, + "event": 44, + "timestamp": "2025-10-21T04:15:46.499Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 79, + "fields": { + "student": 20718, + "event": 43, + "timestamp": "2025-10-21T04:15:46.527Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 80, + "fields": { + "student": 20718, + "event": 44, + "timestamp": "2025-10-21T04:15:46.556Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 81, + "fields": { + "student": 20300, + "event": 43, + "timestamp": "2025-10-21T04:15:46.585Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 82, + "fields": { + "student": 20300, + "event": 44, + "timestamp": "2025-10-21T04:15:46.613Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 83, + "fields": { + "student": 19771, + "event": 43, + "timestamp": "2025-10-21T04:15:46.642Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 84, + "fields": { + "student": 19771, + "event": 44, + "timestamp": "2025-10-21T04:15:46.673Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 85, + "fields": { + "student": 19540, + "event": 43, + "timestamp": "2025-10-21T04:15:46.704Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 86, + "fields": { + "student": 19540, + "event": 44, + "timestamp": "2025-10-21T04:15:46.732Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 87, + "fields": { + "student": 19473, + "event": 43, + "timestamp": "2025-10-21T04:15:46.760Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 88, + "fields": { + "student": 19473, + "event": 44, + "timestamp": "2025-10-21T04:15:46.789Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 89, + "fields": { + "student": 20648, + "event": 43, + "timestamp": "2025-10-21T04:15:46.816Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 90, + "fields": { + "student": 20648, + "event": 44, + "timestamp": "2025-10-21T04:15:46.843Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 91, + "fields": { + "student": 20763, + "event": 43, + "timestamp": "2025-10-21T04:15:46.868Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 92, + "fields": { + "student": 20763, + "event": 44, + "timestamp": "2025-10-21T04:15:46.893Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 93, + "fields": { + "student": 19517, + "event": 43, + "timestamp": "2025-10-21T04:15:46.920Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 94, + "fields": { + "student": 19517, + "event": 44, + "timestamp": "2025-10-21T04:15:46.945Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 95, + "fields": { + "student": 19655, + "event": 43, + "timestamp": "2025-10-21T04:15:46.970Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 96, + "fields": { + "student": 19655, + "event": 44, + "timestamp": "2025-10-21T04:15:46.996Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 97, + "fields": { + "student": 19740, + "event": 43, + "timestamp": "2025-10-21T04:15:47.020Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 98, + "fields": { + "student": 19740, + "event": 44, + "timestamp": "2025-10-21T04:15:47.048Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 99, + "fields": { + "student": 20128, + "event": 43, + "timestamp": "2025-10-21T04:15:47.074Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 100, + "fields": { + "student": 20128, + "event": 44, + "timestamp": "2025-10-21T04:15:47.100Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 101, + "fields": { + "student": 20132, + "event": 43, + "timestamp": "2025-10-21T04:15:47.124Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 102, + "fields": { + "student": 20132, + "event": 44, + "timestamp": "2025-10-21T04:15:47.149Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 103, + "fields": { + "student": 19525, + "event": 43, + "timestamp": "2025-10-21T04:15:47.174Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 104, + "fields": { + "student": 19525, + "event": 44, + "timestamp": "2025-10-21T04:15:47.199Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 105, + "fields": { + "student": 19650, + "event": 43, + "timestamp": "2025-10-21T04:15:47.225Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 106, + "fields": { + "student": 19650, + "event": 44, + "timestamp": "2025-10-21T04:15:47.250Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 107, + "fields": { + "student": 19717, + "event": 43, + "timestamp": "2025-10-21T04:15:47.273Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 108, + "fields": { + "student": 19717, + "event": 44, + "timestamp": "2025-10-21T04:15:47.299Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 109, + "fields": { + "student": 19471, + "event": 43, + "timestamp": "2025-10-21T04:15:47.324Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 110, + "fields": { + "student": 19471, + "event": 44, + "timestamp": "2025-10-21T04:15:47.352Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 111, + "fields": { + "student": 20285, + "event": 43, + "timestamp": "2025-10-21T04:15:47.379Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 112, + "fields": { + "student": 20285, + "event": 44, + "timestamp": "2025-10-21T04:15:47.407Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 113, + "fields": { + "student": 19598, + "event": 43, + "timestamp": "2025-10-21T04:15:47.434Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 114, + "fields": { + "student": 19598, + "event": 44, + "timestamp": "2025-10-21T04:15:47.461Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 115, + "fields": { + "student": 20190, + "event": 43, + "timestamp": "2025-10-21T04:15:47.488Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 116, + "fields": { + "student": 20190, + "event": 44, + "timestamp": "2025-10-21T04:15:47.515Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 117, + "fields": { + "student": 21551, + "event": 43, + "timestamp": "2025-10-21T04:15:47.541Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 118, + "fields": { + "student": 21551, + "event": 44, + "timestamp": "2025-10-21T04:15:47.568Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 119, + "fields": { + "student": 19122, + "event": 43, + "timestamp": "2025-10-21T04:15:47.594Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 120, + "fields": { + "student": 19122, + "event": 44, + "timestamp": "2025-10-21T04:15:47.622Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 121, + "fields": { + "student": 20090, + "event": 43, + "timestamp": "2025-10-21T04:15:47.650Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 122, + "fields": { + "student": 20090, + "event": 44, + "timestamp": "2025-10-21T04:15:47.681Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 123, + "fields": { + "student": 21318, + "event": 43, + "timestamp": "2025-10-21T04:15:47.712Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 124, + "fields": { + "student": 21318, + "event": 44, + "timestamp": "2025-10-21T04:15:47.747Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 125, + "fields": { + "student": 20206, + "event": 43, + "timestamp": "2025-10-21T04:15:47.775Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 126, + "fields": { + "student": 20206, + "event": 44, + "timestamp": "2025-10-21T04:15:47.805Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 127, + "fields": { + "student": 20666, + "event": 43, + "timestamp": "2025-10-21T04:15:47.832Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 128, + "fields": { + "student": 20666, + "event": 44, + "timestamp": "2025-10-21T04:15:47.860Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 129, + "fields": { + "student": 21599, + "event": 43, + "timestamp": "2025-10-21T04:15:47.898Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 130, + "fields": { + "student": 21599, + "event": 44, + "timestamp": "2025-10-21T04:15:47.947Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 131, + "fields": { + "student": 20163, + "event": 43, + "timestamp": "2025-10-21T04:15:47.999Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 132, + "fields": { + "student": 20163, + "event": 44, + "timestamp": "2025-10-21T04:15:48.057Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 133, + "fields": { + "student": 19170, + "event": 43, + "timestamp": "2025-10-21T04:15:48.101Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 134, + "fields": { + "student": 19170, + "event": 44, + "timestamp": "2025-10-21T04:15:48.133Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 135, + "fields": { + "student": 19097, + "event": 43, + "timestamp": "2025-10-21T04:15:48.161Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 136, + "fields": { + "student": 19097, + "event": 44, + "timestamp": "2025-10-21T04:15:48.191Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 137, + "fields": { + "student": 19144, + "event": 43, + "timestamp": "2025-10-21T04:15:48.220Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 138, + "fields": { + "student": 19144, + "event": 44, + "timestamp": "2025-10-21T04:15:48.259Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 139, + "fields": { + "student": 19274, + "event": 43, + "timestamp": "2025-10-21T04:15:48.307Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 140, + "fields": { + "student": 19274, + "event": 44, + "timestamp": "2025-10-21T04:15:48.358Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 141, + "fields": { + "student": 19244, + "event": 43, + "timestamp": "2025-10-21T04:15:48.418Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 142, + "fields": { + "student": 19244, + "event": 44, + "timestamp": "2025-10-21T04:15:48.464Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 143, + "fields": { + "student": 19347, + "event": 43, + "timestamp": "2025-10-21T04:15:48.517Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 144, + "fields": { + "student": 19347, + "event": 44, + "timestamp": "2025-10-21T04:15:48.562Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 145, + "fields": { + "student": 21060, + "event": 43, + "timestamp": "2025-10-21T04:15:48.595Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 146, + "fields": { + "student": 21060, + "event": 44, + "timestamp": "2025-10-21T04:15:48.629Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 147, + "fields": { + "student": 19730, + "event": 43, + "timestamp": "2025-10-21T04:15:48.662Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 148, + "fields": { + "student": 19730, + "event": 44, + "timestamp": "2025-10-21T04:15:48.696Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 149, + "fields": { + "student": 19573, + "event": 43, + "timestamp": "2025-10-21T04:15:48.731Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 150, + "fields": { + "student": 19573, + "event": 44, + "timestamp": "2025-10-21T04:15:48.759Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 151, + "fields": { + "student": 19386, + "event": 43, + "timestamp": "2025-10-21T04:15:48.788Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 152, + "fields": { + "student": 19386, + "event": 44, + "timestamp": "2025-10-21T04:15:48.815Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 153, + "fields": { + "student": 19620, + "event": 43, + "timestamp": "2025-10-21T04:15:48.842Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 154, + "fields": { + "student": 19620, + "event": 44, + "timestamp": "2025-10-21T04:15:48.873Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 155, + "fields": { + "student": 20062, + "event": 43, + "timestamp": "2025-10-21T04:15:48.909Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 156, + "fields": { + "student": 20062, + "event": 44, + "timestamp": "2025-10-21T04:15:48.947Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 157, + "fields": { + "student": 19502, + "event": 43, + "timestamp": "2025-10-21T04:15:48.986Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 158, + "fields": { + "student": 19502, + "event": 44, + "timestamp": "2025-10-21T04:15:49.015Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 159, + "fields": { + "student": 19225, + "event": 43, + "timestamp": "2025-10-21T04:15:49.041Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 160, + "fields": { + "student": 19225, + "event": 44, + "timestamp": "2025-10-21T04:15:49.066Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 161, + "fields": { + "student": 19416, + "event": 43, + "timestamp": "2025-10-21T04:15:49.092Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 162, + "fields": { + "student": 19416, + "event": 44, + "timestamp": "2025-10-21T04:15:49.120Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 163, + "fields": { + "student": 19375, + "event": 43, + "timestamp": "2025-10-21T04:15:49.145Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 164, + "fields": { + "student": 19375, + "event": 44, + "timestamp": "2025-10-21T04:15:49.173Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 165, + "fields": { + "student": 19466, + "event": 43, + "timestamp": "2025-10-21T04:15:49.200Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 166, + "fields": { + "student": 19466, + "event": 44, + "timestamp": "2025-10-21T04:15:49.226Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 167, + "fields": { + "student": 19732, + "event": 43, + "timestamp": "2025-10-21T04:15:49.254Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 168, + "fields": { + "student": 19732, + "event": 44, + "timestamp": "2025-10-21T04:15:49.279Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 169, + "fields": { + "student": 19321, + "event": 43, + "timestamp": "2025-10-21T04:15:49.304Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 170, + "fields": { + "student": 19321, + "event": 44, + "timestamp": "2025-10-21T04:15:49.330Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 171, + "fields": { + "student": 19990, + "event": 43, + "timestamp": "2025-10-21T04:15:49.357Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 172, + "fields": { + "student": 19990, + "event": 44, + "timestamp": "2025-10-21T04:15:49.385Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 173, + "fields": { + "student": 19954, + "event": 43, + "timestamp": "2025-10-21T04:15:49.412Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 174, + "fields": { + "student": 19954, + "event": 44, + "timestamp": "2025-10-21T04:15:49.439Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 175, + "fields": { + "student": 19381, + "event": 43, + "timestamp": "2025-10-21T04:15:49.464Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 176, + "fields": { + "student": 19381, + "event": 44, + "timestamp": "2025-10-21T04:15:49.490Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 177, + "fields": { + "student": 19389, + "event": 43, + "timestamp": "2025-10-21T04:15:49.515Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 178, + "fields": { + "student": 19389, + "event": 44, + "timestamp": "2025-10-21T04:15:49.542Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 179, + "fields": { + "student": 21017, + "event": 43, + "timestamp": "2025-10-21T04:15:49.569Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 180, + "fields": { + "student": 21017, + "event": 44, + "timestamp": "2025-10-21T04:15:49.595Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 181, + "fields": { + "student": 20410, + "event": 43, + "timestamp": "2025-10-21T04:15:49.620Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 182, + "fields": { + "student": 20410, + "event": 44, + "timestamp": "2025-10-21T04:15:49.647Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 183, + "fields": { + "student": 20592, + "event": 43, + "timestamp": "2025-10-21T04:15:49.671Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 184, + "fields": { + "student": 20592, + "event": 44, + "timestamp": "2025-10-21T04:15:49.697Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 185, + "fields": { + "student": 20027, + "event": 43, + "timestamp": "2025-10-21T04:15:49.726Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 186, + "fields": { + "student": 20027, + "event": 44, + "timestamp": "2025-10-21T04:15:49.761Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 187, + "fields": { + "student": 19460, + "event": 43, + "timestamp": "2025-10-21T04:15:49.787Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 188, + "fields": { + "student": 19460, + "event": 44, + "timestamp": "2025-10-21T04:15:49.812Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 189, + "fields": { + "student": 19671, + "event": 43, + "timestamp": "2025-10-21T04:15:49.837Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 190, + "fields": { + "student": 19671, + "event": 44, + "timestamp": "2025-10-21T04:15:49.866Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 191, + "fields": { + "student": 19483, + "event": 43, + "timestamp": "2025-10-21T04:15:49.897Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 192, + "fields": { + "student": 19483, + "event": 44, + "timestamp": "2025-10-21T04:15:49.922Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 193, + "fields": { + "student": 20789, + "event": 43, + "timestamp": "2025-10-21T04:15:49.948Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 194, + "fields": { + "student": 20789, + "event": 44, + "timestamp": "2025-10-21T04:15:49.977Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 195, + "fields": { + "student": 20191, + "event": 43, + "timestamp": "2025-10-21T04:15:50.006Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 196, + "fields": { + "student": 20191, + "event": 44, + "timestamp": "2025-10-21T04:15:50.035Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 197, + "fields": { + "student": 20010, + "event": 43, + "timestamp": "2025-10-21T04:15:50.061Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 198, + "fields": { + "student": 20010, + "event": 44, + "timestamp": "2025-10-21T04:15:50.089Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 199, + "fields": { + "student": 20856, + "event": 43, + "timestamp": "2025-10-21T04:15:50.115Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 200, + "fields": { + "student": 20856, + "event": 44, + "timestamp": "2025-10-21T04:15:50.145Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 201, + "fields": { + "student": 21618, + "event": 43, + "timestamp": "2025-10-21T04:15:50.173Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 202, + "fields": { + "student": 19158, + "event": 43, + "timestamp": "2025-10-21T04:15:50.204Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 203, + "fields": { + "student": 19081, + "event": 43, + "timestamp": "2025-10-21T04:15:50.236Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 204, + "fields": { + "student": 19082, + "event": 43, + "timestamp": "2025-10-21T04:15:50.266Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 205, + "fields": { + "student": 19083, + "event": 43, + "timestamp": "2025-10-21T04:15:50.296Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 206, + "fields": { + "student": 19885, + "event": 43, + "timestamp": "2025-10-21T04:15:50.328Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 207, + "fields": { + "student": 19721, + "event": 43, + "timestamp": "2025-10-21T04:15:50.357Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 208, + "fields": { + "student": 19085, + "event": 43, + "timestamp": "2025-10-21T04:15:50.388Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 209, + "fields": { + "student": 19521, + "event": 43, + "timestamp": "2025-10-21T04:15:50.420Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 210, + "fields": { + "student": 19116, + "event": 43, + "timestamp": "2025-10-21T04:15:50.451Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 211, + "fields": { + "student": 19093, + "event": 43, + "timestamp": "2025-10-21T04:15:50.483Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 212, + "fields": { + "student": 19160, + "event": 43, + "timestamp": "2025-10-21T04:15:50.513Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 213, + "fields": { + "student": 21189, + "event": 43, + "timestamp": "2025-10-21T04:15:50.543Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 214, + "fields": { + "student": 20477, + "event": 43, + "timestamp": "2025-10-21T04:15:50.574Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 215, + "fields": { + "student": 19709, + "event": 43, + "timestamp": "2025-10-21T04:15:50.604Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 216, + "fields": { + "student": 20083, + "event": 43, + "timestamp": "2025-10-21T04:15:50.634Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 217, + "fields": { + "student": 20515, + "event": 43, + "timestamp": "2025-10-21T04:15:50.664Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 218, + "fields": { + "student": 20692, + "event": 43, + "timestamp": "2025-10-21T04:15:50.693Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 219, + "fields": { + "student": 20676, + "event": 43, + "timestamp": "2025-10-21T04:15:50.724Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 220, + "fields": { + "student": 19931, + "event": 43, + "timestamp": "2025-10-21T04:15:50.761Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 221, + "fields": { + "student": 19084, + "event": 43, + "timestamp": "2025-10-21T04:15:50.793Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 222, + "fields": { + "student": 19200, + "event": 43, + "timestamp": "2025-10-21T04:15:50.822Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 223, + "fields": { + "student": 19087, + "event": 43, + "timestamp": "2025-10-21T04:15:50.851Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 224, + "fields": { + "student": 19554, + "event": 43, + "timestamp": "2025-10-21T04:15:50.879Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 225, + "fields": { + "student": 19506, + "event": 43, + "timestamp": "2025-10-21T04:15:50.907Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 226, + "fields": { + "student": 19605, + "event": 43, + "timestamp": "2025-10-21T04:15:50.939Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 227, + "fields": { + "student": 20438, + "event": 43, + "timestamp": "2025-10-21T04:15:50.969Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 228, + "fields": { + "student": 19212, + "event": 43, + "timestamp": "2025-10-21T04:15:50.999Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 229, + "fields": { + "student": 19825, + "event": 43, + "timestamp": "2025-10-21T04:15:51.027Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 230, + "fields": { + "student": 19110, + "event": 43, + "timestamp": "2025-10-21T04:15:51.054Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 231, + "fields": { + "student": 20492, + "event": 43, + "timestamp": "2025-10-21T04:15:51.084Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 232, + "fields": { + "student": 19252, + "event": 43, + "timestamp": "2025-10-21T04:15:51.113Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 233, + "fields": { + "student": 19195, + "event": 43, + "timestamp": "2025-10-21T04:15:51.145Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 234, + "fields": { + "student": 19175, + "event": 43, + "timestamp": "2025-10-21T04:15:51.176Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 235, + "fields": { + "student": 19372, + "event": 43, + "timestamp": "2025-10-21T04:15:51.207Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 236, + "fields": { + "student": 19209, + "event": 43, + "timestamp": "2025-10-21T04:15:51.237Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 237, + "fields": { + "student": 21334, + "event": 43, + "timestamp": "2025-10-21T04:15:51.266Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 238, + "fields": { + "student": 19190, + "event": 43, + "timestamp": "2025-10-21T04:15:51.308Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 239, + "fields": { + "student": 19344, + "event": 43, + "timestamp": "2025-10-21T04:15:51.336Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 240, + "fields": { + "student": 19287, + "event": 43, + "timestamp": "2025-10-21T04:15:51.367Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 241, + "fields": { + "student": 19207, + "event": 43, + "timestamp": "2025-10-21T04:15:51.395Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 242, + "fields": { + "student": 19837, + "event": 43, + "timestamp": "2025-10-21T04:15:51.424Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 243, + "fields": { + "student": 19294, + "event": 43, + "timestamp": "2025-10-21T04:15:51.453Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 244, + "fields": { + "student": 19101, + "event": 43, + "timestamp": "2025-10-21T04:15:51.482Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 245, + "fields": { + "student": 19104, + "event": 43, + "timestamp": "2025-10-21T04:15:51.511Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 246, + "fields": { + "student": 19126, + "event": 43, + "timestamp": "2025-10-21T04:15:51.540Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 247, + "fields": { + "student": 19435, + "event": 43, + "timestamp": "2025-10-21T04:15:51.568Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 248, + "fields": { + "student": 20004, + "event": 43, + "timestamp": "2025-10-21T04:15:51.597Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 249, + "fields": { + "student": 19829, + "event": 43, + "timestamp": "2025-10-21T04:15:51.625Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 250, + "fields": { + "student": 20041, + "event": 43, + "timestamp": "2025-10-21T04:15:51.654Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 251, + "fields": { + "student": 19745, + "event": 43, + "timestamp": "2025-10-21T04:15:51.683Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 252, + "fields": { + "student": 19781, + "event": 43, + "timestamp": "2025-10-21T04:15:51.711Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 253, + "fields": { + "student": 20195, + "event": 43, + "timestamp": "2025-10-21T04:15:51.743Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 254, + "fields": { + "student": 19945, + "event": 43, + "timestamp": "2025-10-21T04:15:51.770Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 255, + "fields": { + "student": 20551, + "event": 43, + "timestamp": "2025-10-21T04:15:51.796Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 256, + "fields": { + "student": 19651, + "event": 43, + "timestamp": "2025-10-21T04:15:51.824Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 257, + "fields": { + "student": 19579, + "event": 43, + "timestamp": "2025-10-21T04:15:51.852Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 258, + "fields": { + "student": 19684, + "event": 43, + "timestamp": "2025-10-21T04:15:51.879Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 259, + "fields": { + "student": 19092, + "event": 43, + "timestamp": "2025-10-21T04:15:51.906Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 260, + "fields": { + "student": 19618, + "event": 43, + "timestamp": "2025-10-21T04:15:51.935Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 261, + "fields": { + "student": 19468, + "event": 43, + "timestamp": "2025-10-21T04:15:51.962Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 262, + "fields": { + "student": 19169, + "event": 43, + "timestamp": "2025-10-21T04:15:51.991Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 263, + "fields": { + "student": 20604, + "event": 43, + "timestamp": "2025-10-21T04:15:52.019Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 264, + "fields": { + "student": 20138, + "event": 43, + "timestamp": "2025-10-21T04:15:52.052Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 265, + "fields": { + "student": 19088, + "event": 43, + "timestamp": "2025-10-21T04:15:52.085Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 266, + "fields": { + "student": 19266, + "event": 43, + "timestamp": "2025-10-21T04:15:52.115Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 267, + "fields": { + "student": 19305, + "event": 43, + "timestamp": "2025-10-21T04:15:52.145Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 268, + "fields": { + "student": 20196, + "event": 43, + "timestamp": "2025-10-21T04:15:52.175Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 269, + "fields": { + "student": 20047, + "event": 43, + "timestamp": "2025-10-21T04:15:52.207Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 270, + "fields": { + "student": 19793, + "event": 43, + "timestamp": "2025-10-21T04:15:52.241Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 271, + "fields": { + "student": 20569, + "event": 43, + "timestamp": "2025-10-21T04:15:52.274Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 272, + "fields": { + "student": 19263, + "event": 43, + "timestamp": "2025-10-21T04:15:52.306Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 273, + "fields": { + "student": 21328, + "event": 43, + "timestamp": "2025-10-21T04:15:52.337Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 274, + "fields": { + "student": 20225, + "event": 43, + "timestamp": "2025-10-21T04:15:52.368Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 275, + "fields": { + "student": 19171, + "event": 43, + "timestamp": "2025-10-21T04:15:52.398Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 276, + "fields": { + "student": 20309, + "event": 43, + "timestamp": "2025-10-21T04:15:52.428Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 277, + "fields": { + "student": 19495, + "event": 43, + "timestamp": "2025-10-21T04:15:52.459Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 278, + "fields": { + "student": 20265, + "event": 43, + "timestamp": "2025-10-21T04:15:52.490Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendance", + "pk": 279, + "fields": { + "student": 19086, + "event": 43, + "timestamp": "2025-10-21T04:15:52.523Z", + "registered_by": 25440, + "registration_method": "manual", + "notes": null, + "is_valid": true + } +}, +{ + "model": "attendance.attendancestats", + "pk": 1, + "fields": { + "student": 20312, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.465Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 2, + "fields": { + "student": 20487, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.527Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 3, + "fields": { + "student": 19851, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.584Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 4, + "fields": { + "student": 19839, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.639Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 5, + "fields": { + "student": 19817, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.697Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 6, + "fields": { + "student": 19950, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.747Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 7, + "fields": { + "student": 19182, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.799Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 8, + "fields": { + "student": 19226, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.853Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 9, + "fields": { + "student": 19376, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.903Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 10, + "fields": { + "student": 19264, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:44.956Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 11, + "fields": { + "student": 19280, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.008Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 12, + "fields": { + "student": 19786, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.062Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 13, + "fields": { + "student": 19778, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.116Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 14, + "fields": { + "student": 19571, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.171Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 15, + "fields": { + "student": 19335, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.226Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 16, + "fields": { + "student": 19162, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.283Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 17, + "fields": { + "student": 19118, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.337Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 18, + "fields": { + "student": 19286, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.389Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 19, + "fields": { + "student": 19094, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.442Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 20, + "fields": { + "student": 19586, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.497Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 21, + "fields": { + "student": 20024, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.552Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 22, + "fields": { + "student": 19995, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.611Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 23, + "fields": { + "student": 19805, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.671Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 24, + "fields": { + "student": 20538, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.730Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 25, + "fields": { + "student": 20161, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.781Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 26, + "fields": { + "student": 20334, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.829Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 27, + "fields": { + "student": 20324, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.881Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 28, + "fields": { + "student": 20207, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.931Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 29, + "fields": { + "student": 20212, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:45.980Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 30, + "fields": { + "student": 19572, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.035Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 31, + "fields": { + "student": 19542, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.086Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 32, + "fields": { + "student": 20964, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.137Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 33, + "fields": { + "student": 20234, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.189Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 34, + "fields": { + "student": 19185, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.240Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 35, + "fields": { + "student": 19183, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.290Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 36, + "fields": { + "student": 19834, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.347Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 37, + "fields": { + "student": 19440, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.403Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 38, + "fields": { + "student": 20008, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.461Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 39, + "fields": { + "student": 19638, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.516Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 40, + "fields": { + "student": 20718, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.573Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 41, + "fields": { + "student": 20300, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.631Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 42, + "fields": { + "student": 19771, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.693Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 43, + "fields": { + "student": 19540, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.749Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 44, + "fields": { + "student": 19473, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.806Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 45, + "fields": { + "student": 20648, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.858Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 46, + "fields": { + "student": 20763, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.910Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 47, + "fields": { + "student": 19517, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:46.960Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 48, + "fields": { + "student": 19655, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.010Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 49, + "fields": { + "student": 19740, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.065Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 50, + "fields": { + "student": 20128, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.115Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 51, + "fields": { + "student": 20132, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.164Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 52, + "fields": { + "student": 19525, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.214Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 53, + "fields": { + "student": 19650, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.264Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 54, + "fields": { + "student": 19717, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.315Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 55, + "fields": { + "student": 19471, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.367Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 56, + "fields": { + "student": 20285, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.423Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 57, + "fields": { + "student": 19598, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.478Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 58, + "fields": { + "student": 20190, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.530Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 59, + "fields": { + "student": 21551, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.583Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 60, + "fields": { + "student": 19122, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.639Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 61, + "fields": { + "student": 20090, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.701Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 62, + "fields": { + "student": 21318, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.763Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 63, + "fields": { + "student": 20206, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.821Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 64, + "fields": { + "student": 20666, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.880Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 65, + "fields": { + "student": 21599, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:47.979Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 66, + "fields": { + "student": 20163, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.083Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 67, + "fields": { + "student": 19170, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.150Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 68, + "fields": { + "student": 19097, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.209Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 69, + "fields": { + "student": 19144, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.290Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 70, + "fields": { + "student": 19274, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.394Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 71, + "fields": { + "student": 19244, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.498Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 72, + "fields": { + "student": 19347, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.581Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 73, + "fields": { + "student": 21060, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.650Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 74, + "fields": { + "student": 19730, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.716Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 75, + "fields": { + "student": 19573, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.777Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 76, + "fields": { + "student": 19386, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.831Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 77, + "fields": { + "student": 19620, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.895Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 78, + "fields": { + "student": 20062, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:48.970Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 79, + "fields": { + "student": 19502, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.032Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 80, + "fields": { + "student": 19225, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.081Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 81, + "fields": { + "student": 19416, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.135Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 82, + "fields": { + "student": 19375, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.190Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 83, + "fields": { + "student": 19466, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.244Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 84, + "fields": { + "student": 19732, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.295Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 85, + "fields": { + "student": 19321, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.346Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 86, + "fields": { + "student": 19990, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.402Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 87, + "fields": { + "student": 19954, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.454Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 88, + "fields": { + "student": 19381, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.505Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 89, + "fields": { + "student": 19389, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.559Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 90, + "fields": { + "student": 21017, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.610Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 91, + "fields": { + "student": 20410, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.661Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 92, + "fields": { + "student": 20592, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.714Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 93, + "fields": { + "student": 20027, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.777Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 94, + "fields": { + "student": 19460, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.826Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 95, + "fields": { + "student": 19671, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.886Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 96, + "fields": { + "student": 19483, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.938Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 97, + "fields": { + "student": 20789, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:49.995Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 98, + "fields": { + "student": 20191, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:50.050Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 99, + "fields": { + "student": 20010, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:50.104Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 100, + "fields": { + "student": 20856, + "total_events": 18, + "attended_events": 2, + "attendance_percentage": 11.11, + "last_updated": "2025-10-21T04:15:50.163Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 101, + "fields": { + "student": 21618, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.193Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 102, + "fields": { + "student": 19158, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.225Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 103, + "fields": { + "student": 19081, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.256Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 104, + "fields": { + "student": 19082, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.286Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 105, + "fields": { + "student": 19083, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.316Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 106, + "fields": { + "student": 19885, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.347Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 107, + "fields": { + "student": 19721, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.378Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 108, + "fields": { + "student": 19085, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.409Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 109, + "fields": { + "student": 19521, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.440Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 110, + "fields": { + "student": 19116, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.472Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 111, + "fields": { + "student": 19093, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.503Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 112, + "fields": { + "student": 19160, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.533Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 113, + "fields": { + "student": 21189, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.563Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 114, + "fields": { + "student": 20477, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.593Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 115, + "fields": { + "student": 19709, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.624Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 116, + "fields": { + "student": 20083, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.653Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 117, + "fields": { + "student": 20515, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.683Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 118, + "fields": { + "student": 20692, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.713Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 119, + "fields": { + "student": 20676, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.744Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 120, + "fields": { + "student": 19931, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.783Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 121, + "fields": { + "student": 19084, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.811Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 122, + "fields": { + "student": 19200, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.841Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 123, + "fields": { + "student": 19087, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.869Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 124, + "fields": { + "student": 19554, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.898Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 125, + "fields": { + "student": 19506, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.930Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 126, + "fields": { + "student": 19605, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.959Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 127, + "fields": { + "student": 20438, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:50.989Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 128, + "fields": { + "student": 19212, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.017Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 129, + "fields": { + "student": 19825, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.044Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 130, + "fields": { + "student": 19110, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.073Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 131, + "fields": { + "student": 20492, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.104Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 132, + "fields": { + "student": 19252, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.133Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 133, + "fields": { + "student": 19195, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.165Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 134, + "fields": { + "student": 19175, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.197Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 135, + "fields": { + "student": 19372, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.227Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 136, + "fields": { + "student": 19209, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.256Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 137, + "fields": { + "student": 21334, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.291Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 138, + "fields": { + "student": 19190, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.326Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 139, + "fields": { + "student": 19344, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.357Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 140, + "fields": { + "student": 19287, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.385Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 141, + "fields": { + "student": 19207, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.413Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 142, + "fields": { + "student": 19837, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.443Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 143, + "fields": { + "student": 19294, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.472Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 144, + "fields": { + "student": 19101, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.501Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 145, + "fields": { + "student": 19104, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.529Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 146, + "fields": { + "student": 19126, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.558Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 147, + "fields": { + "student": 19435, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.587Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 148, + "fields": { + "student": 20004, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.615Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 149, + "fields": { + "student": 19829, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.644Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 150, + "fields": { + "student": 20041, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.673Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 151, + "fields": { + "student": 19745, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.701Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 152, + "fields": { + "student": 19781, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.733Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 153, + "fields": { + "student": 20195, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.761Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 154, + "fields": { + "student": 19945, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.788Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 155, + "fields": { + "student": 20551, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.814Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 156, + "fields": { + "student": 19651, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.842Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 157, + "fields": { + "student": 19579, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.870Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 158, + "fields": { + "student": 19684, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.897Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 159, + "fields": { + "student": 19092, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.924Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 160, + "fields": { + "student": 19618, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.952Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 161, + "fields": { + "student": 19468, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:51.981Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 162, + "fields": { + "student": 19169, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.009Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 163, + "fields": { + "student": 20604, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.040Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 164, + "fields": { + "student": 20138, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.074Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 165, + "fields": { + "student": 19088, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.105Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 166, + "fields": { + "student": 19266, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.135Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 167, + "fields": { + "student": 19305, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.165Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 168, + "fields": { + "student": 20196, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.195Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 169, + "fields": { + "student": 20047, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.229Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 170, + "fields": { + "student": 19793, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.263Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 171, + "fields": { + "student": 20569, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.294Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 172, + "fields": { + "student": 19263, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.326Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 173, + "fields": { + "student": 21328, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.357Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 174, + "fields": { + "student": 20225, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.388Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 175, + "fields": { + "student": 19171, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.417Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 176, + "fields": { + "student": 20309, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.449Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 177, + "fields": { + "student": 19495, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.480Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 178, + "fields": { + "student": 20265, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.513Z" + } +}, +{ + "model": "attendance.attendancestats", + "pk": 179, + "fields": { + "student": 19086, + "total_events": 18, + "attended_events": 1, + "attendance_percentage": 5.56, + "last_updated": "2025-10-21T04:15:52.541Z" + } +} +] diff --git a/backend/init_db.py b/backend/init_db.py new file mode 100644 index 0000000..a5294af --- /dev/null +++ b/backend/init_db.py @@ -0,0 +1,104 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +Script de inicialización de base de datos. +Carga automáticamente los fixtures si la BD está vacía. +""" +import os +import sys +import django + +# Configurar Django +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mac_attendance.settings') +django.setup() + +from django.contrib.auth.models import User +from django.core.management import call_command + + +def main(): + print("=" * 60) + print("Inicializando Base de Datos") + print("=" * 60) + print() + + # Verificar si ya hay usuarios + user_count = User.objects.count() + + if user_count > 0: + print(f"[INFO] La base de datos ya tiene {user_count} usuario(s)") + print("[INFO] No se cargarán fixtures") + print() + print("Si quieres resetear la BD, ejecuta:") + print(" 1. docker-compose -f docker-compose.dev.yml down -v") + print(" 2. docker-compose -f docker-compose.dev.yml up -d") + print(" 3. Espera a que este script se ejecute automáticamente") + return + + print("[INFO] Base de datos vacía, cargando datos iniciales...") + print() + + # Buscar archivos de fixtures + fixtures_dir = os.path.join(os.path.dirname(__file__), 'fixtures') + + if not os.path.exists(fixtures_dir): + print(f"[WARNING] No se encontró directorio de fixtures: {fixtures_dir}") + print("[INFO] Creando superusuario por defecto...") + create_default_superuser() + return + + # Buscar archivos JSON en fixtures + fixture_files = [f for f in os.listdir(fixtures_dir) if f.endswith('.json')] + + if not fixture_files: + print(f"[WARNING] No se encontraron fixtures en: {fixtures_dir}") + print("[INFO] Creando superusuario por defecto...") + create_default_superuser() + return + + # Cargar cada fixture + for fixture_file in sorted(fixture_files): + fixture_path = os.path.join(fixtures_dir, fixture_file) + print(f"[LOADING] Cargando {fixture_file}...") + + try: + call_command('loaddata', fixture_path, verbosity=0) + print(f"[OK] {fixture_file} cargado exitosamente") + except Exception as e: + print(f"[ERROR] Error al cargar {fixture_file}: {str(e)}") + + print() + print("=" * 60) + print("[OK] Inicialización completada!") + print("=" * 60) + print() + + # Mostrar información de usuarios creados + users = User.objects.all() + print(f"Usuarios creados: {users.count()}") + for user in users: + role = "Superusuario" if user.is_superuser else "Usuario" + print(f" - {user.username} ({role})") + print() + + +def create_default_superuser(): + """Crear un superusuario por defecto si no hay fixtures""" + print("[CREATE] Creando superusuario por defecto...") + try: + User.objects.create_superuser( + username='admin', + email='admin@mac.com', + password='admin123' # CAMBIAR EN PRODUCCIÓN + ) + print("[OK] Superusuario creado:") + print(" Usuario: admin") + print(" Password: admin123") + print() + print("[WARNING] IMPORTANTE: Cambia esta contraseña en producción!") + except Exception as e: + print(f"[ERROR] No se pudo crear el superusuario: {str(e)}") + + +if __name__ == "__main__": + main() diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 31d741d..63c1d7b 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -26,6 +26,7 @@ services: dockerfile: docker/Dockerfile.backend.dev command: > sh -c "python manage.py migrate && + python init_db.py && python manage.py collectstatic --noinput && python manage.py runserver 0.0.0.0:8000" volumes: diff --git a/docker-compose.yml b/docker-compose.yml index f24cedb..deb29af 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,6 +22,7 @@ services: dockerfile: docker/Dockerfile.backend command: > sh -c "python manage.py migrate && + python init_db.py && python manage.py collectstatic --noinput && gunicorn --bind 0.0.0.0:8000 --workers 3 --timeout 300 mac_attendance.wsgi:application" volumes: diff --git a/export_fixtures.py b/export_fixtures.py new file mode 100644 index 0000000..c85c6c2 --- /dev/null +++ b/export_fixtures.py @@ -0,0 +1,102 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +Script para exportar fixtures de la base de datos actual. +Usalo cuando quieras compartir tu base de datos con colaboradores. +""" +import subprocess +import os +import sys + +# Configurar salida UTF-8 para Windows +if sys.platform == 'win32': + import io + sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace') + +def main(): + print("=" * 50) + print("Exportando datos de la base de datos") + print("=" * 50) + print() + + # Verificar que los contenedores esten corriendo + result = subprocess.run( + ["docker", "ps", "--format", "{{.Names}}"], + capture_output=True, + text=True + ) + + if "pagina-de-asistencia-mac-backend-1" not in result.stdout: + print("[ERROR] El contenedor backend no esta corriendo") + print("Ejecuta: docker-compose -f docker-compose.dev.yml up -d") + sys.exit(1) + + # Crear directorio de fixtures + fixtures_dir = os.path.join("backend", "fixtures") + os.makedirs(fixtures_dir, exist_ok=True) + print(f"[DIR] Directorio de fixtures: {fixtures_dir}") + print() + + # Exportar datos de usuarios y perfiles + print("[EXPORT] Exportando usuarios y perfiles...") + cmd = [ + "docker", "exec", "pagina-de-asistencia-mac-backend-1", + "python", "manage.py", "dumpdata", + "--indent", "2", + "auth.user", + "authentication.userprofile" + ] + + result = subprocess.run(cmd, capture_output=True, text=True) + + if result.returncode != 0: + print(f"[ERROR] Error al exportar: {result.stderr}") + sys.exit(1) + + # Guardar en archivo + output_file = os.path.join(fixtures_dir, "initial_users.json") + with open(output_file, 'w', encoding='utf-8') as f: + f.write(result.stdout) + + file_size = os.path.getsize(output_file) / 1024 # KB + print(f"[OK] Usuarios exportados: {output_file} ({file_size:.2f} KB)") + print() + + # Exportar eventos y asistencias (si existen) + print("[EXPORT] Exportando eventos y asistencias...") + cmd = [ + "docker", "exec", "pagina-de-asistencia-mac-backend-1", + "python", "manage.py", "dumpdata", + "--indent", "2", + "events.event", + "attendance.attendance" + ] + + result = subprocess.run(cmd, capture_output=True, text=True) + + if result.returncode == 0 and result.stdout.strip() != "[]": + output_file = os.path.join(fixtures_dir, "initial_events.json") + with open(output_file, 'w', encoding='utf-8') as f: + f.write(result.stdout) + + file_size = os.path.getsize(output_file) / 1024 # KB + print(f"[OK] Eventos exportados: {output_file} ({file_size:.2f} KB)") + else: + print("[INFO] No hay eventos para exportar") + + print() + print("=" * 50) + print("[OK] Exportacion completada!") + print("=" * 50) + print() + print("Ahora puedes compartir estos archivos:") + print(" 1. Sube a GitHub:") + print(" git add backend/fixtures/") + print(" git commit -m 'Agregar fixtures iniciales'") + print(" git push origin main") + print() + print(" 2. O comparte por otro medio (Google Drive, etc.)") + print() + +if __name__ == "__main__": + main()