diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ef418f5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +secrets.py diff --git a/DBPortal/__init__.py b/DBPortal/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/DBPortal/__pycache__/__init__.cpython-36.pyc b/DBPortal/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..bb8159a Binary files /dev/null and b/DBPortal/__pycache__/__init__.cpython-36.pyc differ diff --git a/DBPortal/__pycache__/secrets.cpython-36.pyc b/DBPortal/__pycache__/secrets.cpython-36.pyc new file mode 100644 index 0000000..ca2fd0b Binary files /dev/null and b/DBPortal/__pycache__/secrets.cpython-36.pyc differ diff --git a/DBPortal/__pycache__/settings.cpython-36.pyc b/DBPortal/__pycache__/settings.cpython-36.pyc new file mode 100644 index 0000000..70dbf52 Binary files /dev/null and b/DBPortal/__pycache__/settings.cpython-36.pyc differ diff --git a/DBPortal/__pycache__/urls.cpython-36.pyc b/DBPortal/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000..b8f9f3e Binary files /dev/null and b/DBPortal/__pycache__/urls.cpython-36.pyc differ diff --git a/DBPortal/__pycache__/wsgi.cpython-36.pyc b/DBPortal/__pycache__/wsgi.cpython-36.pyc new file mode 100644 index 0000000..827b5f5 Binary files /dev/null and b/DBPortal/__pycache__/wsgi.cpython-36.pyc differ diff --git a/DBPortal/asgi.py b/DBPortal/asgi.py new file mode 100644 index 0000000..b896313 --- /dev/null +++ b/DBPortal/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for DBPortal project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DBPortal.settings') + +application = get_asgi_application() diff --git a/DBPortal/settings.py b/DBPortal/settings.py new file mode 100644 index 0000000..5c21786 --- /dev/null +++ b/DBPortal/settings.py @@ -0,0 +1,146 @@ +""" +Django settings for DBPortal project. + +Generated by 'django-admin startproject' using Django 3.0. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.0/ref/settings/ +""" + +import os +import django_heroku +from . import secrets + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +TEMPLATE_DIR = os.path.join(BASE_DIR, "templates") +STATIC_DIR = os.path.join(BASE_DIR, "static") + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = secrets.SECRET_KEY + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'users.apps.UsersConfig', + 'rest_framework', + 'crispy_forms', + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'DBPortal.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [TEMPLATE_DIR], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'DBPortal.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/3.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.0/howto/static-files/ + +PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) +STATIC_ROOT = os.path.join(PROJECT_ROOT, 'staticfiles') +STATIC_URL = '/static/' +STATICFILES_DIRS = [ + STATIC_DIR, +] + +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_URL = '/media/' + +SEND_GRID_API_KEY = secrets.SEND_GRID_API_KEY + +EMAIL_USE_TLS = True +EMAIL_HOST = 'smtp.sendgrid.net' +EMAIL_HOST_USER = secrets.EMAIL_HOST_USER +EMAIL_HOST_PASSWORD = secrets.EMAIL_HOST_PASSWORD +EMAIL_PORT = 587 + +CRISPY_TEMPLATE_PACK = 'bootstrap4' + +django_heroku.settings(locals()) diff --git a/DBPortal/urls.py b/DBPortal/urls.py new file mode 100644 index 0000000..70af319 --- /dev/null +++ b/DBPortal/urls.py @@ -0,0 +1,29 @@ +"""DBPortal URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include +from django.conf import settings +from django.conf.urls.static import static + + +urlpatterns = [ + path('admin/', admin.site.urls), + path('', include('users.urls')), + path('api-auth/', include('rest_framework.urls')), +] + +if settings.DEBUG: + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/DBPortal/wsgi.py b/DBPortal/wsgi.py new file mode 100644 index 0000000..0e62b8a --- /dev/null +++ b/DBPortal/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for DBPortal project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DBPortal.settings') + +application = get_wsgi_application() diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..235246a --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn DBPortal.wsgi diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..d585e4c Binary files /dev/null and b/db.sqlite3 differ diff --git a/dbportal/bin/__pycache__/django-admin.cpython-36.pyc b/dbportal/bin/__pycache__/django-admin.cpython-36.pyc new file mode 100644 index 0000000..32ae1a9 Binary files /dev/null and b/dbportal/bin/__pycache__/django-admin.cpython-36.pyc differ diff --git a/dbportal/bin/__pycache__/runxlrd.cpython-36.pyc b/dbportal/bin/__pycache__/runxlrd.cpython-36.pyc new file mode 100644 index 0000000..7c4b822 Binary files /dev/null and b/dbportal/bin/__pycache__/runxlrd.cpython-36.pyc differ diff --git a/dbportal/bin/__pycache__/vba_extract.cpython-36.pyc b/dbportal/bin/__pycache__/vba_extract.cpython-36.pyc new file mode 100644 index 0000000..a94ed1e Binary files /dev/null and b/dbportal/bin/__pycache__/vba_extract.cpython-36.pyc differ diff --git a/dbportal/bin/activate b/dbportal/bin/activate new file mode 100644 index 0000000..deb9990 --- /dev/null +++ b/dbportal/bin/activate @@ -0,0 +1,76 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r + fi + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + if [ ! "$1" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/home/ayush/Desktop/github/DBPortal/dbportal" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + if [ "x(dbportal) " != x ] ; then + PS1="(dbportal) ${PS1:-}" + else + if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then + # special case for Aspen magic directories + # see http://www.zetadev.com/software/aspen/ + PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1" + else + PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1" + fi + fi + export PS1 +fi + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r +fi diff --git a/dbportal/bin/activate.csh b/dbportal/bin/activate.csh new file mode 100644 index 0000000..f473c9f --- /dev/null +++ b/dbportal/bin/activate.csh @@ -0,0 +1,37 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/ayush/Desktop/github/DBPortal/dbportal" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + if ("dbportal" != "") then + set env_name = "dbportal" + else + if (`basename "VIRTUAL_ENV"` == "__") then + # special case for Aspen magic directories + # see http://www.zetadev.com/software/aspen/ + set env_name = `basename \`dirname "$VIRTUAL_ENV"\`` + else + set env_name = `basename "$VIRTUAL_ENV"` + endif + endif + set prompt = "[$env_name] $prompt" + unset env_name +endif + +alias pydoc python -m pydoc + +rehash diff --git a/dbportal/bin/activate.fish b/dbportal/bin/activate.fish new file mode 100644 index 0000000..d21db03 --- /dev/null +++ b/dbportal/bin/activate.fish @@ -0,0 +1,75 @@ +# This file must be used with ". bin/activate.fish" *from fish* (http://fishshell.org) +# you cannot run it directly + +function deactivate -d "Exit virtualenv and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + functions -e fish_prompt + set -e _OLD_FISH_PROMPT_OVERRIDE + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + + set -e VIRTUAL_ENV + if test "$argv[1]" != "nondestructive" + # Self destruct! + functions -e deactivate + end +end + +# unset irrelevant variables +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/ayush/Desktop/github/DBPortal/dbportal" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# unset PYTHONHOME if set +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # save the current fish_prompt function as the function _old_fish_prompt + functions -c fish_prompt _old_fish_prompt + + # with the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command + set -l old_status $status + + # Prompt override? + if test -n "(dbportal) " + printf "%s%s" "(dbportal) " (set_color normal) + else + # ...Otherwise, prepend env + set -l _checkbase (basename "$VIRTUAL_ENV") + if test $_checkbase = "__" + # special case for Aspen magic directories + # see http://www.zetadev.com/software/aspen/ + printf "%s[%s]%s " (set_color -b blue white) (basename (dirname "$VIRTUAL_ENV")) (set_color normal) + else + printf "%s(%s)%s" (set_color -b blue white) (basename "$VIRTUAL_ENV") (set_color normal) + end + end + + # Restore the return status of the previous command. + echo "exit $old_status" | . + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" +end diff --git a/dbportal/bin/django-admin b/dbportal/bin/django-admin new file mode 100755 index 0000000..3e80c78 --- /dev/null +++ b/dbportal/bin/django-admin @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from django.core.management import execute_from_command_line + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(execute_from_command_line()) diff --git a/dbportal/bin/django-admin.py b/dbportal/bin/django-admin.py new file mode 100755 index 0000000..15d4b16 --- /dev/null +++ b/dbportal/bin/django-admin.py @@ -0,0 +1,5 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 +from django.core import management + +if __name__ == "__main__": + management.execute_from_command_line() diff --git a/dbportal/bin/easy_install b/dbportal/bin/easy_install new file mode 100755 index 0000000..33dc12a --- /dev/null +++ b/dbportal/bin/easy_install @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/dbportal/bin/easy_install-3.6 b/dbportal/bin/easy_install-3.6 new file mode 100755 index 0000000..33dc12a --- /dev/null +++ b/dbportal/bin/easy_install-3.6 @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/dbportal/bin/gunicorn b/dbportal/bin/gunicorn new file mode 100755 index 0000000..5121706 --- /dev/null +++ b/dbportal/bin/gunicorn @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from gunicorn.app.wsgiapp import run + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(run()) diff --git a/dbportal/bin/pip b/dbportal/bin/pip new file mode 100755 index 0000000..4b701dd --- /dev/null +++ b/dbportal/bin/pip @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from pip import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/dbportal/bin/pip3 b/dbportal/bin/pip3 new file mode 100755 index 0000000..4b701dd --- /dev/null +++ b/dbportal/bin/pip3 @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from pip import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/dbportal/bin/pip3.6 b/dbportal/bin/pip3.6 new file mode 100755 index 0000000..4b701dd --- /dev/null +++ b/dbportal/bin/pip3.6 @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from pip import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/dbportal/bin/python b/dbportal/bin/python new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/dbportal/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/dbportal/bin/python3 b/dbportal/bin/python3 new file mode 120000 index 0000000..ae65fda --- /dev/null +++ b/dbportal/bin/python3 @@ -0,0 +1 @@ +/usr/bin/python3 \ No newline at end of file diff --git a/dbportal/bin/runxlrd.py b/dbportal/bin/runxlrd.py new file mode 100755 index 0000000..d77b4a4 --- /dev/null +++ b/dbportal/bin/runxlrd.py @@ -0,0 +1,420 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 +# Copyright (c) 2005-2012 Stephen John Machin, Lingfo Pty Ltd +# This script is part of the xlrd package, which is released under a +# BSD-style licence. + +from __future__ import print_function + +cmd_doc = """ +Commands: + +2rows Print the contents of first and last row in each sheet +3rows Print the contents of first, second and last row in each sheet +bench Same as "show", but doesn't print -- for profiling +biff_count[1] Print a count of each type of BIFF record in the file +biff_dump[1] Print a dump (char and hex) of the BIFF records in the file +fonts hdr + print a dump of all font objects +hdr Mini-overview of file (no per-sheet information) +hotshot Do a hotshot profile run e.g. ... -f1 hotshot bench bigfile*.xls +labels Dump of sheet.col_label_ranges and ...row... for each sheet +name_dump Dump of each object in book.name_obj_list +names Print brief information for each NAME record +ov Overview of file +profile Like "hotshot", but uses cProfile +show Print the contents of all rows in each sheet +version[0] Print versions of xlrd and Python and exit +xfc Print "XF counts" and cell-type counts -- see code for details + +[0] means no file arg +[1] means only one file arg i.e. no glob.glob pattern +""" + +options = None +if __name__ == "__main__": + + PSYCO = 0 + + import xlrd + import sys + import time + import glob + import traceback + import gc + + from xlrd.timemachine import xrange, REPR + + + class LogHandler(object): + + def __init__(self, logfileobj): + self.logfileobj = logfileobj + self.fileheading = None + self.shown = 0 + + def setfileheading(self, fileheading): + self.fileheading = fileheading + self.shown = 0 + + def write(self, text): + if self.fileheading and not self.shown: + self.logfileobj.write(self.fileheading) + self.shown = 1 + self.logfileobj.write(text) + + null_cell = xlrd.empty_cell + + def show_row(bk, sh, rowx, colrange, printit): + if bk.ragged_rows: + colrange = range(sh.row_len(rowx)) + if not colrange: return + if printit: print() + if bk.formatting_info: + for colx, ty, val, cxfx in get_row_data(bk, sh, rowx, colrange): + if printit: + print("cell %s%d: type=%d, data: %r, xfx: %s" + % (xlrd.colname(colx), rowx+1, ty, val, cxfx)) + else: + for colx, ty, val, _unused in get_row_data(bk, sh, rowx, colrange): + if printit: + print("cell %s%d: type=%d, data: %r" % (xlrd.colname(colx), rowx+1, ty, val)) + + def get_row_data(bk, sh, rowx, colrange): + result = [] + dmode = bk.datemode + ctys = sh.row_types(rowx) + cvals = sh.row_values(rowx) + for colx in colrange: + cty = ctys[colx] + cval = cvals[colx] + if bk.formatting_info: + cxfx = str(sh.cell_xf_index(rowx, colx)) + else: + cxfx = '' + if cty == xlrd.XL_CELL_DATE: + try: + showval = xlrd.xldate_as_tuple(cval, dmode) + except xlrd.XLDateError as e: + showval = "%s:%s" % (type(e).__name__, e) + cty = xlrd.XL_CELL_ERROR + elif cty == xlrd.XL_CELL_ERROR: + showval = xlrd.error_text_from_code.get(cval, '' % cval) + else: + showval = cval + result.append((colx, cty, showval, cxfx)) + return result + + def bk_header(bk): + print() + print("BIFF version: %s; datemode: %s" + % (xlrd.biff_text_from_num[bk.biff_version], bk.datemode)) + print("codepage: %r (encoding: %s); countries: %r" + % (bk.codepage, bk.encoding, bk.countries)) + print("Last saved by: %r" % bk.user_name) + print("Number of data sheets: %d" % bk.nsheets) + print("Use mmap: %d; Formatting: %d; On demand: %d" + % (bk.use_mmap, bk.formatting_info, bk.on_demand)) + print("Ragged rows: %d" % bk.ragged_rows) + if bk.formatting_info: + print("FORMATs: %d, FONTs: %d, XFs: %d" + % (len(bk.format_list), len(bk.font_list), len(bk.xf_list))) + if not options.suppress_timing: + print("Load time: %.2f seconds (stage 1) %.2f seconds (stage 2)" + % (bk.load_time_stage_1, bk.load_time_stage_2)) + print() + + def show_fonts(bk): + print("Fonts:") + for x in xrange(len(bk.font_list)): + font = bk.font_list[x] + font.dump(header='== Index %d ==' % x, indent=4) + + def show_names(bk, dump=0): + bk_header(bk) + if bk.biff_version < 50: + print("Names not extracted in this BIFF version") + return + nlist = bk.name_obj_list + print("Name list: %d entries" % len(nlist)) + for nobj in nlist: + if dump: + nobj.dump(sys.stdout, + header="\n=== Dump of name_obj_list[%d] ===" % nobj.name_index) + else: + print("[%d]\tName:%r macro:%r scope:%d\n\tresult:%r\n" + % (nobj.name_index, nobj.name, nobj.macro, nobj.scope, nobj.result)) + + def print_labels(sh, labs, title): + if not labs:return + for rlo, rhi, clo, chi in labs: + print("%s label range %s:%s contains:" + % (title, xlrd.cellname(rlo, clo), xlrd.cellname(rhi-1, chi-1))) + for rx in xrange(rlo, rhi): + for cx in xrange(clo, chi): + print(" %s: %r" % (xlrd.cellname(rx, cx), sh.cell_value(rx, cx))) + + def show_labels(bk): + # bk_header(bk) + hdr = 0 + for shx in range(bk.nsheets): + sh = bk.sheet_by_index(shx) + clabs = sh.col_label_ranges + rlabs = sh.row_label_ranges + if clabs or rlabs: + if not hdr: + bk_header(bk) + hdr = 1 + print("sheet %d: name = %r; nrows = %d; ncols = %d" % + (shx, sh.name, sh.nrows, sh.ncols)) + print_labels(sh, clabs, 'Col') + print_labels(sh, rlabs, 'Row') + if bk.on_demand: bk.unload_sheet(shx) + + def show(bk, nshow=65535, printit=1): + bk_header(bk) + if 0: + rclist = xlrd.sheet.rc_stats.items() + rclist = sorted(rclist) + print("rc stats") + for k, v in rclist: + print("0x%04x %7d" % (k, v)) + if options.onesheet: + try: + shx = int(options.onesheet) + except ValueError: + shx = bk.sheet_by_name(options.onesheet).number + shxrange = [shx] + else: + shxrange = range(bk.nsheets) + # print("shxrange", list(shxrange)) + for shx in shxrange: + sh = bk.sheet_by_index(shx) + nrows, ncols = sh.nrows, sh.ncols + colrange = range(ncols) + anshow = min(nshow, nrows) + print("sheet %d: name = %s; nrows = %d; ncols = %d" % + (shx, REPR(sh.name), sh.nrows, sh.ncols)) + if nrows and ncols: + # Beat the bounds + for rowx in xrange(nrows): + nc = sh.row_len(rowx) + if nc: + sh.row_types(rowx)[nc-1] + sh.row_values(rowx)[nc-1] + sh.cell(rowx, nc-1) + for rowx in xrange(anshow-1): + if not printit and rowx % 10000 == 1 and rowx > 1: + print("done %d rows" % (rowx-1,)) + show_row(bk, sh, rowx, colrange, printit) + if anshow and nrows: + show_row(bk, sh, nrows-1, colrange, printit) + print() + if bk.on_demand: bk.unload_sheet(shx) + + def count_xfs(bk): + bk_header(bk) + for shx in range(bk.nsheets): + sh = bk.sheet_by_index(shx) + nrows = sh.nrows + print("sheet %d: name = %r; nrows = %d; ncols = %d" % + (shx, sh.name, sh.nrows, sh.ncols)) + # Access all xfindexes to force gathering stats + type_stats = [0, 0, 0, 0, 0, 0, 0] + for rowx in xrange(nrows): + for colx in xrange(sh.row_len(rowx)): + xfx = sh.cell_xf_index(rowx, colx) + assert xfx >= 0 + cty = sh.cell_type(rowx, colx) + type_stats[cty] += 1 + print("XF stats", sh._xf_index_stats) + print("type stats", type_stats) + print() + if bk.on_demand: bk.unload_sheet(shx) + + def main(cmd_args): + import optparse + global options, PSYCO + usage = "\n%prog [options] command [input-file-patterns]\n" + cmd_doc + oparser = optparse.OptionParser(usage) + oparser.add_option( + "-l", "--logfilename", + default="", + help="contains error messages") + oparser.add_option( + "-v", "--verbosity", + type="int", default=0, + help="level of information and diagnostics provided") + oparser.add_option( + "-m", "--mmap", + type="int", default=-1, + help="1: use mmap; 0: don't use mmap; -1: accept heuristic") + oparser.add_option( + "-e", "--encoding", + default="", + help="encoding override") + oparser.add_option( + "-f", "--formatting", + type="int", default=0, + help="0 (default): no fmt info\n" + "1: fmt info (all cells)\n", + ) + oparser.add_option( + "-g", "--gc", + type="int", default=0, + help="0: auto gc enabled; 1: auto gc disabled, manual collect after each file; 2: no gc") + oparser.add_option( + "-s", "--onesheet", + default="", + help="restrict output to this sheet (name or index)") + oparser.add_option( + "-u", "--unnumbered", + action="store_true", default=0, + help="omit line numbers or offsets in biff_dump") + oparser.add_option( + "-d", "--on-demand", + action="store_true", default=0, + help="load sheets on demand instead of all at once") + oparser.add_option( + "-t", "--suppress-timing", + action="store_true", default=0, + help="don't print timings (diffs are less messy)") + oparser.add_option( + "-r", "--ragged-rows", + action="store_true", default=0, + help="open_workbook(..., ragged_rows=True)") + options, args = oparser.parse_args(cmd_args) + if len(args) == 1 and args[0] in ("version", ): + pass + elif len(args) < 2: + oparser.error("Expected at least 2 args, found %d" % len(args)) + cmd = args[0] + xlrd_version = getattr(xlrd, "__VERSION__", "unknown; before 0.5") + if cmd == 'biff_dump': + xlrd.dump(args[1], unnumbered=options.unnumbered) + sys.exit(0) + if cmd == 'biff_count': + xlrd.count_records(args[1]) + sys.exit(0) + if cmd == 'version': + print("xlrd: %s, from %s" % (xlrd_version, xlrd.__file__)) + print("Python:", sys.version) + sys.exit(0) + if options.logfilename: + logfile = LogHandler(open(options.logfilename, 'w')) + else: + logfile = sys.stdout + mmap_opt = options.mmap + mmap_arg = xlrd.USE_MMAP + if mmap_opt in (1, 0): + mmap_arg = mmap_opt + elif mmap_opt != -1: + print('Unexpected value (%r) for mmap option -- assuming default' % mmap_opt) + fmt_opt = options.formatting | (cmd in ('xfc', )) + gc_mode = options.gc + if gc_mode: + gc.disable() + for pattern in args[1:]: + for fname in glob.glob(pattern): + print("\n=== File: %s ===" % fname) + if logfile != sys.stdout: + logfile.setfileheading("\n=== File: %s ===\n" % fname) + if gc_mode == 1: + n_unreachable = gc.collect() + if n_unreachable: + print("GC before open:", n_unreachable, "unreachable objects") + if PSYCO: + import psyco + psyco.full() + PSYCO = 0 + try: + t0 = time.time() + bk = xlrd.open_workbook( + fname, + verbosity=options.verbosity, logfile=logfile, + use_mmap=mmap_arg, + encoding_override=options.encoding, + formatting_info=fmt_opt, + on_demand=options.on_demand, + ragged_rows=options.ragged_rows, + ) + t1 = time.time() + if not options.suppress_timing: + print("Open took %.2f seconds" % (t1-t0,)) + except xlrd.XLRDError as e: + print("*** Open failed: %s: %s" % (type(e).__name__, e)) + continue + except KeyboardInterrupt: + print("*** KeyboardInterrupt ***") + traceback.print_exc(file=sys.stdout) + sys.exit(1) + except BaseException as e: + print("*** Open failed: %s: %s" % (type(e).__name__, e)) + traceback.print_exc(file=sys.stdout) + continue + t0 = time.time() + if cmd == 'hdr': + bk_header(bk) + elif cmd == 'ov': # OverView + show(bk, 0) + elif cmd == 'show': # all rows + show(bk) + elif cmd == '2rows': # first row and last row + show(bk, 2) + elif cmd == '3rows': # first row, 2nd row and last row + show(bk, 3) + elif cmd == 'bench': + show(bk, printit=0) + elif cmd == 'fonts': + bk_header(bk) + show_fonts(bk) + elif cmd == 'names': # named reference list + show_names(bk) + elif cmd == 'name_dump': # named reference list + show_names(bk, dump=1) + elif cmd == 'labels': + show_labels(bk) + elif cmd == 'xfc': + count_xfs(bk) + else: + print("*** Unknown command <%s>" % cmd) + sys.exit(1) + del bk + if gc_mode == 1: + n_unreachable = gc.collect() + if n_unreachable: + print("GC post cmd:", fname, "->", n_unreachable, "unreachable objects") + if not options.suppress_timing: + t1 = time.time() + print("\ncommand took %.2f seconds\n" % (t1-t0,)) + + return None + + av = sys.argv[1:] + if not av: + main(av) + firstarg = av[0].lower() + if firstarg == "hotshot": + import hotshot + import hotshot.stats + av = av[1:] + prof_log_name = "XXXX.prof" + prof = hotshot.Profile(prof_log_name) + # benchtime, result = prof.runcall(main, *av) + result = prof.runcall(main, *(av, )) + print("result", repr(result)) + prof.close() + stats = hotshot.stats.load(prof_log_name) + stats.strip_dirs() + stats.sort_stats('time', 'calls') + stats.print_stats(20) + elif firstarg == "profile": + import cProfile + av = av[1:] + cProfile.run('main(av)', 'YYYY.prof') + import pstats + p = pstats.Stats('YYYY.prof') + p.strip_dirs().sort_stats('cumulative').print_stats(30) + elif firstarg == "psyco": + PSYCO = 1 + main(av[1:]) + else: + main(av) diff --git a/dbportal/bin/sqlformat b/dbportal/bin/sqlformat new file mode 100755 index 0000000..7d208df --- /dev/null +++ b/dbportal/bin/sqlformat @@ -0,0 +1,11 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +# -*- coding: utf-8 -*- +import re +import sys + +from sqlparse.__main__ import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/dbportal/bin/vba_extract.py b/dbportal/bin/vba_extract.py new file mode 100755 index 0000000..5d71f14 --- /dev/null +++ b/dbportal/bin/vba_extract.py @@ -0,0 +1,62 @@ +#!/home/ayush/Desktop/github/DBPortal/dbportal/bin/python3 + +############################################################################## +# +# vba_extract - A simple utility to extract a vbaProject.bin binary from an +# Excel 2007+ xlsm file for insertion into an XlsxWriter file. +# +# Copyright 2013-2019, John McNamara, jmcnamara@cpan.org +# +import sys +from zipfile import ZipFile +from zipfile import BadZipfile + +# The VBA project file we want to extract. +vba_filename = 'vbaProject.bin' + +# Get the xlsm file name from the commandline. +if len(sys.argv) > 1: + xlsm_file = sys.argv[1] +else: + print("\nUtility to extract a vbaProject.bin binary from an Excel 2007+ " + "xlsm macro file for insertion into an XlsxWriter file." + "\n" + "See: https://xlsxwriter.readthedocs.io/working_with_macros.html\n" + "\n" + "Usage: vba_extract file.xlsm\n") + exit() + +try: + # Open the Excel xlsm file as a zip file. + xlsm_zip = ZipFile(xlsm_file, 'r') + + # Read the xl/vbaProject.bin file. + vba_data = xlsm_zip.read('xl/' + vba_filename) + + # Write the vba data to a local file. + vba_file = open(vba_filename, "wb") + vba_file.write(vba_data) + vba_file.close() + +except IOError as e: + print("File error: %s" % str(e)) + exit() + +except KeyError as e: + # Usually when there isn't a xl/vbaProject.bin member in the file. + print("File error: %s" % str(e)) + print("File may not be an Excel xlsm macro file: '%s'" % xlsm_file) + exit() + +except BadZipfile as e: + # Usually if the file is an xls file and not an xlsm file. + print("File error: %s: '%s'" % (str(e), xlsm_file)) + print("File may not be an Excel xlsm macro file.") + exit() + +except Exception as e: + # Catch any other exceptions. + print("File error: %s" % str(e)) + exit() + +print("Extracted: %s" % vba_filename) diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/AUTHORS b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/AUTHORS new file mode 100644 index 0000000..642cdc0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/AUTHORS @@ -0,0 +1,955 @@ +Django was originally created in late 2003 at World Online, the Web division +of the Lawrence Journal-World newspaper in Lawrence, Kansas. + +Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS -- +people who have submitted patches, reported bugs, added translations, helped +answer newbie questions, and generally made Django that much better: + + Aaron Cannon + Aaron Swartz + Aaron T. Myers + Abeer Upadhyay + Abhinav Patil + Abhishek Gautam + Adam Allred + Adam Bogdał + Adam Donaghy + Adam Johnson + Adam Malinowski + Adam Vandenberg + Adiyat Mubarak + Adnan Umer + Adrian Holovaty + Adrien Lemaire + Afonso Fernández Nogueira + AgarFu + Ahmad Alhashemi + Ahmad Al-Ibrahim + Ahmed Eltawela + ajs + Akash Agrawal + Akis Kesoglou + Aksel Ethem + Akshesh Doshi + alang@bright-green.com + Alasdair Nicol + Albert Wang + Alcides Fonseca + Aleksandra Sendecka + Aleksi Häkli + Alexander Dutton + Alexander Myodov + Alexandr Tatarinov + Alex Becker + Alex Couper + Alex Dedul + Alex Gaynor + Alex Hill + Alex Ogier + Alex Robbins + Alexey Boriskin + Alexey Tsivunin + Aljosa Mohorovic + Amit Chakradeo + Amit Ramon + Amit Upadhyay + A. Murat Eren + Ana Belen Sarabia + Ana Krivokapic + Andi Albrecht + André Ericson + Andrei Kulakov + Andreas + Andreas Mock + Andreas Pelme + Andrés Torres Marroquín + Andrew Brehaut + Andrew Clark + Andrew Durdin + Andrew Godwin + Andrew Pinkham + Andrews Medina + Andriy Sokolovskiy + Andy Dustman + Andy Gayton + andy@jadedplanet.net + Anssi Kääriäinen + ant9000@netwise.it + Anthony Briggs + Anton Samarchyan + Antoni Aloy + Antonio Cavedoni + Antonis Christofides + Antti Haapala + Antti Kaihola + Anubhav Joshi + Aram Dulyan + arien + Armin Ronacher + Aron Podrigal + Artem Gnilov + Arthur + Arthur Koziel + Arthur Rio + Arvis Bickovskis + Aryeh Leib Taurog + A S Alam + Asif Saif Uddin + atlithorn + Audrey Roy + av0000@mail.ru + Axel Haustant + Aymeric Augustin + Bahadır Kandemir + Baishampayan Ghose + Baptiste Mispelon + Barry Pederson + Bartolome Sanchez Salado + Bartosz Grabski + Bashar Al-Abdulhadi + Bastian Kleineidam + Batiste Bieler + Batman + Batuhan Taskaya + Baurzhan Ismagulov + Ben Dean Kawamura + Ben Firshman + Ben Godfrey + Benjamin Wohlwend + Ben Khoo + Ben Slavin + Ben Sturmfels + Berker Peksag + Bernd Schlapsi + Bernhard Essl + berto + Bill Fenner + Bjørn Stabell + Bo Marchman + Bogdan Mateescu + Bojan Mihelac + Bouke Haarsma + Božidar Benko + Brad Melin + Brandon Chinn + Brant Harris + Brendan Hayward + Brendan Quinn + Brenton Simpson + Brett Cannon + Brett Hoerner + Brian Beck + Brian Fabian Crain + Brian Harring + Brian Ray + Brian Rosner + Bruce Kroeze + Bruno Alla + Bruno Renié + brut.alll@gmail.com + Bryan Chow + Bryan Veloso + bthomas + btoll@bestweb.net + C8E + Caio Ariede + Calvin Spealman + Cameron Curry + Cameron Knight (ckknight) + Can Burak Çilingir + Can Sarıgöl + Carl Meyer + Carles Pina i Estany + Carlos Eduardo de Paula + Carlos Matías de la Torre + Carlton Gibson + cedric@terramater.net + Chad Whitman + ChaosKCW + Charlie Leifer + charly.wilhelm@gmail.com + Chason Chaffin + Cheng Zhang + Chris Adams + Chris Beaven + Chris Bennett + Chris Cahoon + Chris Chamberlin + Chris Jerdonek + Chris Jones + Chris Lamb + Chris Streeter + Christian Barcenas + Christian Metts + Christian Oudard + Christian Tanzer + Christophe Pettus + Christopher Adams + Christopher Babiak + Christopher Lenz + Christoph Mędrela + Chris Wagner + Chris Wesseling + Chris Wilson + Claude Paroz + Clint Ecker + colin@owlfish.com + Colin Wood + Collin Anderson + Collin Grady + Craig Blaszczyk + crankycoder@gmail.com + Curtis Maloney (FunkyBob) + dackze+django@gmail.com + Dagur Páll Ammendrup + Dane Springmeyer + Dan Fairs + Daniel Alves Barbosa de Oliveira Vaz + Daniel Duan + Daniele Procida + Daniel Greenfeld + dAniel hAhler + Daniel Jilg + Daniel Lindsley + Daniel Poelzleithner + Daniel Pyrathon + Daniel Roseman + Daniel Tao + Daniel Wiesmann + Danilo Bargen + Dan Johnson + Dan Palmer + Dan Poirier + Dan Stephenson + Dan Watson + dave@thebarproject.com + David Ascher + David Avsajanishvili + David Blewett + David Brenneman + David Cramer + David Danier + David Eklund + David Foster + David Gouldin + david@kazserve.org + David Krauth + David Larlet + David Reynolds + David Sanders + David Schein + David Tulig + Davide Ceretti + Deepak Thukral + Denis Kuzmichyov + Derek Willis + Deric Crago + deric@monowerks.com + Deryck Hodge + Dimitris Glezos + Dirk Datzert + Dirk Eschler + Dmitri Fedortchenko + Dmitry Jemerov + dne@mayonnaise.net + Dolan Antenucci + Donald Harvey + Donald Stufft + Don Spaulding + Doug Beck + Doug Napoleone + dready + dusk@woofle.net + Ed Morley + eibaan@gmail.com + elky + Emmanuelle Delescolle + Emil Stenström + enlight + Enrico + Eric Boersma + Eric Brandwein + Eric Floehr + Eric Florenzano + Eric Holscher + Eric Moritz + Eric Palakovich Carr + Erik Karulf + Erik Romijn + eriks@win.tue.nl + Erwin Junge + Esdras Beleza + Espen Grindhaug + Eugene Lazutkin + Evan Grim + Fabrice Aneche + favo@exoweb.net + fdr + Federico Capoano + Filip Noetzel + Filip Wasilewski + Finn Gruwier Larsen + Flávio Juvenal da Silva Junior + flavio.curella@gmail.com + Florian Apolloner + Florian Moussous + Francisco Albarran Cristobal + Francisco Couzo + François Freitag + Frank Tegtmeyer + Frank Wierzbicki + Frank Wiles + František Malina + Fraser Nevett + Gabriel Grant + Gabriel Hurley + gandalf@owca.info + Garry Lawrence + Garry Polley + Garth Kidd + Gary Wilson + Gasper Koren + Gasper Zejn + Gavin Wahl + Ge Hanbin + geber@datacollect.com + Geert Vanderkelen + George Karpenkov + George Song + George Vilches + Georg "Hugo" Bauer + Georgi Stanojevski + Gerardo Orozco + Gil Gonçalves + Girish Kumar + Gisle Aas + Glenn Maynard + glin@seznam.cz + GomoX + Gonzalo Saavedra + Gopal Narayanan + Graham Carlyle + Grant Jenks + Greg Chapple + Gregor Allensworth + Gregor Müllegger + Grigory Fateyev + Grzegorz Ślusarek + Guilherme Mesquita Gondim + Guillaume Pannatier + Gustavo Picon + hambaloney + Hang Park + Hannes Ljungberg + Hannes Struß + Hasan Ramezani + Hawkeye + Helen Sherwood-Taylor + Henrique Romano + Henry Dang + Hidde Bultsma + Himanshu Chauhan + hipertracker@gmail.com + Hiroki Kiyohara + Honza Král + Horst Gutmann + Hugo Osvaldo Barrera + HyukJin Jang + Hyun Mi Ae + Iacopo Spalletti + Ian A Wilson + Ian Clelland + Ian G. Kelly + Ian Holsman + Ian Lee + Ibon + Idan Gazit + Idan Melamed + Ifedapo Olarewaju + Igor Kolar + Illia Volochii + Ilya Semenov + Ingo Klöcker + I.S. van Oostveen + ivan.chelubeev@gmail.com + Ivan Sagalaev (Maniac) + Jaap Roes + Jack Moffitt + Jacob Burch + Jacob Green + Jacob Kaplan-Moss + Jakub Paczkowski + Jakub Wilk + Jakub Wiśniowski + james_027@yahoo.com + James Aylett + James Bennett + James Murty + James Tauber + James Timmins + James Wheare + Jannis Leidel + Janos Guljas + Jan Pazdziora + Jan Rademaker + Jarek Głowacki + Jarek Zgoda + Jason Davies (Esaj) + Jason Huggins + Jason McBrayer + jason.sidabras@gmail.com + Jason Yan + Javier Mansilla + Jay Parlar + Jay Welborn + Jay Wineinger + J. Clifford Dyer + jcrasta@gmail.com + jdetaeye + Jeff Anderson + Jeff Balogh + Jeff Hui + Jeffrey Gelens + Jeff Triplett + Jeffrey Yancey + Jens Diemer + Jens Page + Jensen Cochran + Jeong-Min Lee + Jérémie Blaser + Jeremy Bowman + Jeremy Carbaugh + Jeremy Dunck + Jeremy Lainé + Jesse Young + Jezeniel Zapanta + jhenry + Jim Dalton + Jimmy Song + Jiri Barton + Joachim Jablon + Joao Oliveira + Joao Pedro Silva + Joe Heck + Joel Bohman + Joel Heenan + Joel Watts + Joe Topjian + Johan C. Stöver + Johann Queuniet + john@calixto.net + John D'Agostino + John D'Ambrosio + John Huddleston + John Moses + John Paulett + John Shaffer + Jökull Sólberg Auðunsson + Jon Dufresne + Jonas Haag + Jonatas C. D. + Jonathan Buchanan + Jonathan Daugherty (cygnus) + Jonathan Feignberg + Jonathan Slenders + Jordan Dimov + Jordi J. Tablada + Jorge Bastida + Jorge Gajon + José Tomás Tocino García + Josef Rousek + Joseph Kocherhans + Josh Smeaton + Joshua Cannon + Joshua Ginsberg + Jozko Skrablin + J. Pablo Fernandez + jpellerin@gmail.com + Juan Catalano + Juan Manuel Caicedo + Juan Pedro Fisanotti + Julia Elman + Julia Matsieva + Julian Bez + Julien Phalip + Junyoung Choi + junzhang.jn@gmail.com + Jure Cuhalev + Justin Bronn + Justine Tunney + Justin Lilly + Justin Michalicek + Justin Myles Holmes + Jyrki Pulliainen + Kadesarin Sanjek + Karderio + Karen Tracey + Karol Sikora + Katherine “Kati” Michel + Kathryn Killebrew + Katie Miller + Keith Bussell + Kenneth Love + Kent Hauser + Kevin Grinberg + Kevin Kubasik + Kevin McConnell + Kieran Holland + kilian + Klaas van Schelven + knox + konrad@gwu.edu + Kowito Charoenratchatabhan + Krišjānis Vaiders + krzysiek.pawlik@silvermedia.pl + Krzysztof Jurewicz + Krzysztof Kulewski + kurtiss@meetro.com + Lakin Wecker + Lars Yencken + Lau Bech Lauritzen + Laurent Luce + Laurent Rahuel + lcordier@point45.com + Leah Culver + Leandra Finger + Lee Reilly + Lee Sanghyuck + Leo "hylje" Honkanen + Leo Shklovskii + Leo Soto + lerouxb@gmail.com + Lex Berezhny + Liang Feng + limodou + Lincoln Smith + Loek van Gent + Loïc Bistuer + Lowe Thiderman + Luan Pablo + Lucas Connors + Luciano Ramalho + Ludvig Ericson + Luis C. Berrocal + Łukasz Langa + Łukasz Rekucki + Luke Granger-Brown + Luke Plant + Maciej Fijalkowski + Maciej Wiśniowski + Mads Jensen + Makoto Tsuyuki + Malcolm Tredinnick + Manuel Saelices + Manuzhai + Marc Aymerich Gubern + Marc Egli + Marcel Telka + Marc Fargas + Marc Garcia + Marcin Wróbel + Marc Remolt + Marc Tamlyn + Marc-Aurèle Brothier + Marian Andre + Marijn Vriens + Mario Gonzalez + Mariusz Felisiak + Mark Biggers + Mark Gensler + mark@junklight.com + Mark Lavin + Mark Sandstrom + Markus Amalthea Magnuson + Markus Holtermann + Marten Kenbeek + Marti Raudsepp + martin.glueck@gmail.com + Martin Green + Martin Kosír + Martin Mahner + Martin Maney + Martin von Gagern + Mart Sõmermaa + Marty Alchin + masonsimon+django@gmail.com + Massimiliano Ravelli + Massimo Scamarcia + Mathieu Agopian + Matías Bordese + Matt Boersma + Matt Croydon + Matt Deacalion Stevens + Matt Dennenbaum + Matthew Flanagan + Matthew Schinckel + Matthew Somerville + Matthew Tretter + Matthew Wilkes + Matthias Kestenholz + Matthias Pronk + Matt Hoskins + Matt McClanahan + Matt Riggott + Matt Robenolt + Mattia Larentis + Mattia Procopio + Mattias Loverot + mattycakes@gmail.com + Max Burstein + Max Derkachev + Maxime Lorant + Maxime Turcotte + Maximilian Merz + Maximillian Dornseif + mccutchen@gmail.com + Meir Kriheli + Michael Hall + Michael Josephson + Michael Manfre + michael.mcewan@gmail.com + Michael Placentra II + Michael Radziej + Michael Sanders + Michael Schwarz + Michael Sinov + Michael Thornhill + Michal Chruszcz + michal@plovarna.cz + Michał Modzelewski + Mihai Damian + Mihai Preda + Mikaël Barbero + Mike Axiak + Mike Grouchy + Mike Malone + Mike Richardson + Mike Wiacek + Mikhail Korobov + Mikko Hellsing + Mikołaj Siedlarek + milkomeda + Milton Waddams + mitakummaa@gmail.com + mmarshall + Moayad Mardini + Morgan Aubert + Moritz Sichert + Morten Bagai + msaelices + msundstr + Mushtaq Ali + Mykola Zamkovoi + Nadège Michel + Nagy Károly + Nasimul Haque + Nasir Hussain + Natalia Bidart + Nate Bragg + Nathan Gaberel + Neal Norwitz + Nebojša Dorđević + Ned Batchelder + Nena Kojadin + Niall Dalton + Niall Kelly + Nick Efford + Nick Lane + Nick Pope + Nick Presta + Nick Sandford + Nick Sarbicki + Niclas Olofsson + Nicola Larosa + Nicolas Lara + Nicolas Noé + Niran Babalola + Nis Jørgensen + Nowell Strite + Nuno Mariz + oggie rob + oggy + Oliver Beattie + Oliver Rutherfurd + Olivier Sels + Olivier Tabone + Orestis Markou + Orne Brocaar + Oscar Ramirez + Ossama M. Khayat + Owen Griffiths + Pablo Martín + Panos Laganakos + Pascal Hartig + Pascal Varet + Patrik Sletmo + Paul Bissex + Paul Collier + Paul Collins + Paul Donohue + Paul Lanier + Paul McLanahan + Paul McMillan + Paulo Poiati + Paulo Scardine + Paul Smith + Pavel Kulikov + pavithran s + Pavlo Kapyshin + permonik@mesias.brnonet.cz + Petar Marić + Pete Crosier + peter@mymart.com + Peter Sheats + Peter van Kampen + Peter Zsoldos + Pete Shinners + Petr Marhoun + pgross@thoughtworks.com + phaedo + phil.h.smith@gmail.com + Philip Lindborg + Philippe Raoult + phil@produxion.net + Piotr Jakimiak + Piotr Lewandowski + plisk + polpak@yahoo.com + pradeep.gowda@gmail.com + Preston Holmes + Preston Timmons + Priyansh Saxena + Przemysław Buczkowski + Przemysław Suliga + Rachel Tobin + Rachel Willmer + Radek Švarz + Raffaele Salmaso + Rajesh Dhawan + Ramez Ashraf + Ramin Farajpour Cami + Ramiro Morales + Ramon Saraiva + Ram Rachum + Randy Barlow + Raphaël Barrois + Raphael Michel + Raúl Cumplido + Rebecca Smith + Remco Wendt + Renaud Parent + Renbi Yu + Reza Mohammadi + rhettg@gmail.com + Ricardo Javier Cárdenes Medina + ricardojbarrios@gmail.com + Riccardo Di Virgilio + Riccardo Magliocchetti + Richard Davies + Richard House + Rick Wagner + Rigel Di Scala + Robert Coup + Robert Myers + Roberto Aguilar + Robert Rock Howard + Robert Wittams + Rob Golding-Day + Rob Hudson + Rob Nguyen + Robin Munn + Rodrigo Pinheiro Marques de Araújo + Romain Garrigues + Ronny Haryanto + Ross Poulton + Rozza + Rudolph Froger + Rudy Mutter + Rune Rønde Laursen + Russell Cloran + Russell Keith-Magee + Russ Webber + Ryan Hall + ryankanno + Ryan Kelly + Ryan Niemeyer + Ryan Rubin + Ryno Mathee + Sachin Jat + Sam Newman + Sander Dijkhuis + Sanket Saurav + Sanyam Khurana + Sarthak Mehrish + schwank@gmail.com + Scot Hacker + Scott Barr + Scott Fitsimones + Scott Pashley + scott@staplefish.com + Sean Brant + Sebastian Hillig + Sebastian Spiegel + Segyo Myung + Selwin Ong + Sengtha Chay + Senko Rašić + serbaut@gmail.com + Sergei Maertens + Sergey Fedoseev + Sergey Kolosov + Seth Hill + Shai Berger + Shannon -jj Behrens + Shawn Milochik + Silvan Spross + Simeon Visser + Simon Blanchard + Simon Charette + Simon Greenhill + Simon Litchfield + Simon Meers + Simon Williams + Simon Willison + Sjoerd Job Postmus + Slawek Mikula + sloonz + smurf@smurf.noris.de + sopel + Srinivas Reddy Thatiparthy + Stanislas Guerra + Stanislaus Madueke + Stanislav Karpov + starrynight + Stefan R. Filipek + Stefane Fermgier + Stefano Rivera + Stéphane Raimbault + Stephan Jaekel + Stephen Burrows + Steven L. Smith (fvox13) + Steven Noorbergen (Xaroth) + Stuart Langridge + Subhav Gautam + Sujay S Kumar + Sune Kirkeby + Sung-Jin Hong + SuperJared + Susan Tan + Sutrisno Efendi + Swaroop C H + Szilveszter Farkas + Taavi Teska + Tai Lee + Takashi Matsuo + Tareque Hossain + Taylor Mitchell + Terry Huang + thebjorn + Thejaswi Puthraya + Thijs van Dien + Thom Wiggers + Thomas Chaumeny + Thomas Güttler + Thomas Kerpe + Thomas Sorrel + Thomas Steinacher + Thomas Stromberg + Thomas Tanner + tibimicu@gmx.net + Tim Allen + Tim Givois + Tim Graham + Tim Heap + Tim Saylor + Tobias Kunze + Tobias McNulty + tobias@neuyork.de + Todd O'Bryan + Tom Christie + Tom Forbes + Tom Insam + Tom Tobin + Tomáš Ehrlich + Tomáš Kopeček + Tome Cvitan + Tomek Paczkowski + Tomer Chachamu + Tommy Beadle + Tore Lundqvist + torne-django@wolfpuppy.org.uk + Travis Cline + Travis Pinney + Travis Swicegood + Travis Terry + Trevor Caira + Trey Long + tstromberg@google.com + tt@gurgle.no + Tyler Tarabula + Tyson Clugg + Tyson Tate + Unai Zalakain + Valentina Mukhamedzhanova + valtron + Vasiliy Stavenko + Vasil Vangelovski + Victor Andrée + viestards.lists@gmail.com + Viktor Danyliuk + Ville Säävuori + Vinay Karanam + Vinay Sajip + Vincent Foley + Vinny Do + Vitaly Babiy + Vladimir Kuzma + Vlado + Vsevolod Solovyov + Vytis Banaitis + wam-djangobug@wamber.net + Wang Chun + Warren Smith + Waylan Limberg + Wiktor Kołodziej + Wiley Kestner + Wiliam Alves de Souza + Will Ayd + William Schwartz + Will Hardy + Wilson Miner + Wim Glenn + wojtek + Xia Kai + Yann Fouillat + Yann Malet + Yasushi Masuda + ye7cakf02@sneakemail.com + ymasuda@ethercube.com + Yoong Kang Lim + Yusuke Miyazaki + Zac Hatfield-Dodds + Zachary Voase + Zach Liu + Zach Thompson + Zain Memon + Zak Johnson + Žan Anderle + Zbigniew Siciarz + zegor + Zeynel Özdemir + Zlatko Mašek + + +A big THANK YOU goes to: + + Rob Curley and Ralph Gage for letting us open-source Django. + + Frank Wiles for making excellent arguments for open-sourcing, and for + his sage sysadmin advice. + + Ian Bicking for convincing Adrian to ditch code generation. + + Mark Pilgrim for "Dive Into Python" (https://www.diveinto.org/python3/). + + Guido van Rossum for creating Python. diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/INSTALLER b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/LICENSE b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/LICENSE new file mode 100644 index 0000000..5f4f225 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) Django Software Foundation and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of Django nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/LICENSE.python b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/LICENSE.python new file mode 100644 index 0000000..d517733 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/LICENSE.python @@ -0,0 +1,266 @@ +Django is licensed under the three-clause BSD license; see the file +LICENSE for details. + +Django includes code from the Python standard library, which is licensed under +the Python license, a permissive open source license. The copyright and license +is included below for compliance with Python's terms. + +---------------------------------------------------------------------- + +Copyright (c) 2001-present Python Software Foundation; All Rights Reserved + +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations (now Zope +Corporation, see http://www.zope.com). In 2001, the Python Software +Foundation (PSF, see http://www.python.org/psf/) was formed, a +non-profit organization created specifically to own Python-related +Intellectual Property. Zope Corporation is a sponsoring member of +the PSF. + +All Python releases are Open Source (see http://www.opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Python Software Foundation; All +Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the Internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the Internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/METADATA b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/METADATA new file mode 100644 index 0000000..00cbc7b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/METADATA @@ -0,0 +1,89 @@ +Metadata-Version: 2.1 +Name: Django +Version: 3.0.1 +Summary: A high-level Python Web framework that encourages rapid development and clean, pragmatic design. +Home-page: https://www.djangoproject.com/ +Author: Django Software Foundation +Author-email: foundation@djangoproject.com +License: BSD +Project-URL: Documentation, https://docs.djangoproject.com/ +Project-URL: Funding, https://www.djangoproject.com/fundraising/ +Project-URL: Source, https://github.com/django/django +Project-URL: Tracker, https://code.djangoproject.com/ +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Framework :: Django +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Topic :: Internet :: WWW/HTTP +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI +Classifier: Topic :: Software Development :: Libraries :: Application Frameworks +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.6 +Requires-Dist: pytz +Requires-Dist: sqlparse (>=0.2.2) +Requires-Dist: asgiref (~=3.2) +Provides-Extra: argon2 +Requires-Dist: argon2-cffi (>=16.1.0) ; extra == 'argon2' +Provides-Extra: bcrypt +Requires-Dist: bcrypt ; extra == 'bcrypt' + +====== +Django +====== + +Django is a high-level Python Web framework that encourages rapid development +and clean, pragmatic design. Thanks for checking it out. + +All documentation is in the "``docs``" directory and online at +https://docs.djangoproject.com/en/stable/. If you're just getting started, +here's how we recommend you read the docs: + +* First, read ``docs/intro/install.txt`` for instructions on installing Django. + +* Next, work through the tutorials in order (``docs/intro/tutorial01.txt``, + ``docs/intro/tutorial02.txt``, etc.). + +* If you want to set up an actual deployment server, read + ``docs/howto/deployment/index.txt`` for instructions. + +* You'll probably want to read through the topical guides (in ``docs/topics``) + next; from there you can jump to the HOWTOs (in ``docs/howto``) for specific + problems, and check out the reference (``docs/ref``) for gory details. + +* See ``docs/README`` for instructions on building an HTML version of the docs. + +Docs are updated rigorously. If you find any problems in the docs, or think +they should be clarified in any way, please take 30 seconds to fill out a +ticket here: https://code.djangoproject.com/newticket + +To get more help: + +* Join the ``#django`` channel on irc.freenode.net. Lots of helpful people hang + out there. See https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial if you're + new to IRC. + +* Join the django-users mailing list, or read the archives, at + https://groups.google.com/group/django-users. + +To contribute to Django: + +* Check out https://docs.djangoproject.com/en/dev/internals/contributing/ for + information about getting involved. + +To run Django's test suite: + +* Follow the instructions in the "Unit tests" section of + ``docs/internals/contributing/writing-code/unit-tests.txt``, published online at + https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#running-the-unit-tests + + diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/RECORD b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/RECORD new file mode 100644 index 0000000..59d1508 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/RECORD @@ -0,0 +1,4218 @@ +../../../bin/django-admin.py,sha256=OOv0QKYqhDD2O4X3HQx3gFFQ-CC7hSLnWuzZnQXeiiA,115 +django/__init__.py,sha256=vOH_kRKKLjltH4qthOhl747ABZcq2D0S5GlLQTcCZHE,799 +django/__main__.py,sha256=9a5To1vQXqf2Jg_eh8nLvIc0GXmDjEXv4jE1QZEqBFk,211 +django/shortcuts.py,sha256=XdSS1JMI7C96gr2IF9k28vIuBIcP8uTPNH96_5Ol4oY,4896 +django/apps/__init__.py,sha256=t0F4yceU4SbybMeWBvpuE6RsGaENmQCVbNSdSuXiEMs,90 +django/apps/config.py,sha256=kJMPbuGia8AIZ3HKEBsLBC2El0B3NmqRxSceAk6ZLuo,8711 +django/apps/registry.py,sha256=0eWzy63WRGYEvM2x5jHNsmMDXvxcHY4xHbsSB_5Opas,17512 +django/bin/django-admin.py,sha256=FWxg_nmLPNGqXwSMw0QvZsKNQsiVBHrSsNfgALIXqQ0,128 +django/conf/__init__.py,sha256=lmIpPq1sZxaCA_ZtX1p0USlFEByuZCogrZNml8hL1Ns,8651 +django/conf/global_settings.py,sha256=xaYvKgiKnwFvF1r9eTWbYFP3XinLEEhO4PHLa8pClMw,22054 +django/conf/app_template/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/app_template/admin.py-tpl,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63 +django/conf/app_template/apps.py-tpl,sha256=lZ1k1B3K5ntPWSn-CSd0cvDuijeoQE43wztE0tXyeMQ,114 +django/conf/app_template/models.py-tpl,sha256=Vjc0p2XbAPgE6HyTF6vll98A4eDhA5AvaQqsc4kQ9AQ,57 +django/conf/app_template/tests.py-tpl,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60 +django/conf/app_template/views.py-tpl,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63 +django/conf/app_template/migrations/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/__init__.py,sha256=1Ept-YLZ_zTvgYqUeiwR9xEocrdAJa6sSjfz6HpyMqg,12771 +django/conf/locale/af/LC_MESSAGES/django.mo,sha256=B7Yqdo9SJqIFvKIN5ewSh3NS9Qs9cxTQzfJHUSJf25M,20552 +django/conf/locale/af/LC_MESSAGES/django.po,sha256=nkaZCZLdkp3zkd7Zvv8SvJIC_RTWABFOUuNe4a8uUgU,25708 +django/conf/locale/ar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ar/formats.py,sha256=nm5cnBh1YYjwD4eydBZ5AoknwN54piwrpB25ijpDT-o,696 +django/conf/locale/ar/LC_MESSAGES/django.mo,sha256=xkd9zLJaQPwx6QFyfTF2li5XgEPW0rwlzqio8RNPls0,25381 +django/conf/locale/ar/LC_MESSAGES/django.po,sha256=QRN4oGB_5eecvNakQbidUGtDN2DxJrgnm3d2p3h-2mE,32702 +django/conf/locale/ast/LC_MESSAGES/django.mo,sha256=XSStt50HP-49AJ8wFcnbn55SLncJCsS2lx_4UwK-h-8,15579 +django/conf/locale/ast/LC_MESSAGES/django.po,sha256=7qZUb5JjfrWLqtXPRjpNOMNycbcsEYpNO-oYmazLTk4,23675 +django/conf/locale/az/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/az/formats.py,sha256=kHDIAAKnVH6nGVRLx4GeztAqeMJ5URMZaMGbtPjUDRA,1191 +django/conf/locale/az/LC_MESSAGES/django.mo,sha256=8y_ipg4tfUsqbMaoenJMHiXHdygMrlQkKKsG0V352ww,20768 +django/conf/locale/az/LC_MESSAGES/django.po,sha256=49fu5DgZ67pGr8eSGWDHO8WZIIxONbAOE-QKpo4zl0E,26039 +django/conf/locale/be/LC_MESSAGES/django.mo,sha256=lUawByISiYb3vs6KWpIoauf-f6BmTNtbSIrqtjEwHIE,35552 +django/conf/locale/be/LC_MESSAGES/django.po,sha256=1_mHgTiSTQe26T3SeODIHaKcCq_W1z4RMiDtSvhKJNY,37911 +django/conf/locale/bg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/bg/formats.py,sha256=iC9zYHKphMaSnluBZfYvH1kV5aDyl3ycsqVjxOoqfOY,705 +django/conf/locale/bg/LC_MESSAGES/django.mo,sha256=waXZHPoXhhG66IImvup89uOkmyYJ9CYxY1QQixiRnTg,23463 +django/conf/locale/bg/LC_MESSAGES/django.po,sha256=EhssLuAtNldT3r8b8Y7s45-kQrAG6NLEDzUsk5BQJ4c,29856 +django/conf/locale/bn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/bn/formats.py,sha256=INeNl0xlt9B-YJTkcdC2kSpJLly9d5AKT60GMyS-Bm4,964 +django/conf/locale/bn/LC_MESSAGES/django.mo,sha256=sB0RIFrGS11Z8dx5829oOFw55vuO4vty3W4oVzIEe8Q,16660 +django/conf/locale/bn/LC_MESSAGES/django.po,sha256=rF9vML3LDOqXkmK6R_VF3tQaFEoZI7besJAPx5qHNM0,26877 +django/conf/locale/br/LC_MESSAGES/django.mo,sha256=5OharB6bGeG3xYWMGu-VRZd7vVtkjkkY9udQkiUCrYk,14165 +django/conf/locale/br/LC_MESSAGES/django.po,sha256=Wevk20bwJKK7eKEoL24eq8iNBnQxR_7JTu6Y_44-7iI,23771 +django/conf/locale/bs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/bs/formats.py,sha256=NltIKZw0-WnZW0QY2D2EqqdctUyNc8FEARZ1RRYKtHo,705 +django/conf/locale/bs/LC_MESSAGES/django.mo,sha256=Xa5QAbsHIdLkyG4nhLCD4UHdCngrw5Oh120abCNdWlA,10824 +django/conf/locale/bs/LC_MESSAGES/django.po,sha256=IB-2VvrQKUivAMLMpQo1LGRAxw3kj-7kB6ckPai0fug,22070 +django/conf/locale/ca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ca/formats.py,sha256=rQJTIIy-DNSu0mASIoXLHWpS8rVar64zkJ-NTM1VMTM,951 +django/conf/locale/ca/LC_MESSAGES/django.mo,sha256=WI0eSYr8KZ5JiFV9Fkzgfi0PXS5JgSBi-SvBJ0eJzUs,26821 +django/conf/locale/ca/LC_MESSAGES/django.po,sha256=vjVzprOERkZliAaugeMynO7P74q9UfYTiOQAxvIoJ04,29006 +django/conf/locale/cs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/cs/formats.py,sha256=SwI-7bIW0Hc1K8G06IDOuZZ1rocqvtrufcpFdBPuq3Q,1637 +django/conf/locale/cs/LC_MESSAGES/django.mo,sha256=-3-JoeX0W1deblqKI4Qg0X_t73zRGCDL5Z6suPn5zjU,28568 +django/conf/locale/cs/LC_MESSAGES/django.po,sha256=dqAPHSEE-_GqRyYH9hvV8uJxnzRp8eaF7W-3mX6ucWw,31051 +django/conf/locale/cy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/cy/formats.py,sha256=Ukvq4OBLyWTtkeaC8JuX4BJwCzP6BrJE2REEIuh3YWE,1757 +django/conf/locale/cy/LC_MESSAGES/django.mo,sha256=s7mf895rsoiqrPrXpyWg2k85rN8umYB2aTExWMTux7s,18319 +django/conf/locale/cy/LC_MESSAGES/django.po,sha256=S-1PVWWVgYmugHoYUlmTFAzKCpI81n9MIAhkETbpUoo,25758 +django/conf/locale/da/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/da/formats.py,sha256=jquE6tLj9nOxcGtH_326w57sH9BKhP4BKtPz6eCi4k8,941 +django/conf/locale/da/LC_MESSAGES/django.mo,sha256=M1qIIkpgz10mxBUXFTrcDlj369TK8fPgznMDeOynOmU,26413 +django/conf/locale/da/LC_MESSAGES/django.po,sha256=BMWHR0-romaljilDluFSUXKzYHPBg0LV19hMu1fuX3Q,28503 +django/conf/locale/de/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/de/formats.py,sha256=bbYv_pvU7CcgAK7uwsLP33d4WJKEJ3nHyFjOGoLRSbk,1035 +django/conf/locale/de/LC_MESSAGES/django.mo,sha256=aqlXjL54zfCSKAvYfcK7ZzzVchaC4_Lrmjl4LqEj6RU,21271 +django/conf/locale/de/LC_MESSAGES/django.po,sha256=AqCM07ZMY5VOWQ7ln_RQx1sDv9VCtidqDpmLNhAboqo,26782 +django/conf/locale/de_CH/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/de_CH/formats.py,sha256=Qyry8mSDw2bDA_qGLNA7uWMCD1xMHe7K-5zORrHYF7E,1379 +django/conf/locale/dsb/LC_MESSAGES/django.mo,sha256=TrDzF6FXpc2YpxaUxjLZq1LZkdY3JeapkyvsvE1kyk4,22944 +django/conf/locale/dsb/LC_MESSAGES/django.po,sha256=1w_d54u7wY9OdMgY2Aw4emXLsMwksIrD69RX-cbxCkE,28372 +django/conf/locale/el/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/el/formats.py,sha256=i6NoGblrfzTMa8YB56ZXwZITwqh1XmVi8TE8a6REOCU,1387 +django/conf/locale/el/LC_MESSAGES/django.mo,sha256=0s3haoOvNv89_-eypEed6GNJLnlTs7d-PZOF-XCB1Hg,26805 +django/conf/locale/el/LC_MESSAGES/django.po,sha256=T9bh5i35dma3C2TOQxfO21vpfR8OIgzzKzf6L7iU54w,32398 +django/conf/locale/en/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en/formats.py,sha256=QAMybGqJETPG_vx3kQM4UGyaOffkx5no1dqpU9ri9cc,1750 +django/conf/locale/en/LC_MESSAGES/django.mo,sha256=mVpSj1AoAdDdW3zPZIg5ZDsDbkSUQUMACg_BbWHGFig,356 +django/conf/locale/en/LC_MESSAGES/django.po,sha256=Y1iWLbzxvNFpDMF6ppAnI4bTBgULZcQDq_45PFNsQyw,28734 +django/conf/locale/en_AU/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en_AU/formats.py,sha256=ahNtDcF-uKEhsa8J5V2RPn80RCZJIpxSEc2BMEAljKE,2052 +django/conf/locale/en_AU/LC_MESSAGES/django.mo,sha256=js3_n3k5hOtU15__AYZ7pFtpfubIeoXZlav05O27sNg,15223 +django/conf/locale/en_AU/LC_MESSAGES/django.po,sha256=lvkcp457FspF5rNwHKY4RndXCdcjaRVygndWRsdKm4M,23302 +django/conf/locale/en_GB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en_GB/formats.py,sha256=qtvBeKK2jv3dTETbbBJDYeFbgTXmAkQsRkyOzR2FGIo,2052 +django/conf/locale/en_GB/LC_MESSAGES/django.mo,sha256=jSIe44HYGfzQlPtUZ8tWK2vCYM9GqCKs-CxLURn4e1o,12108 +django/conf/locale/en_GB/LC_MESSAGES/django.po,sha256=PTXvOpkxgZFRoyiqftEAuMrFcYRLfLDd6w0K8crN8j4,22140 +django/conf/locale/eo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/eo/formats.py,sha256=iemUtasv_36Z5WlKy9bSWGzptkBDxsB_MeCBaDqp3W4,2270 +django/conf/locale/eo/LC_MESSAGES/django.mo,sha256=bxU_9NOlTR6Y5lF31RzX8otmOmJ_haJSm_VA7ox-m2s,20345 +django/conf/locale/eo/LC_MESSAGES/django.po,sha256=D1OnehULWo53ynakFoFLSDJ6-G20QWJNFDPRnicO1E8,25725 +django/conf/locale/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es/formats.py,sha256=Z-aM3Z7h7Fjk2SAWKhnUYiuKbHpc7nZZ3-wnelK0NwI,949 +django/conf/locale/es/LC_MESSAGES/django.mo,sha256=t0ui3E1wmkfBl18mSCvPGa7b5htRE2tWGxpamvRsLfs,20948 +django/conf/locale/es/LC_MESSAGES/django.po,sha256=HnDPC2AUwQkqSwAyRh5RRam2zuNan_amVMEeSDAJz1s,26911 +django/conf/locale/es_AR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_AR/formats.py,sha256=wY64-6a2hajRveIgJLpkKES_v-QejkkgExdnnJdYN1E,935 +django/conf/locale/es_AR/LC_MESSAGES/django.mo,sha256=2tvAd_q4cdqi0Zj1mEFXrrwV7dD6YdZN_0iGjQW2c6I,27531 +django/conf/locale/es_AR/LC_MESSAGES/django.po,sha256=IZoprRLHU5Bj0AZwJWcQypjXBbRpVxOfY0Co2QNvq4Y,29480 +django/conf/locale/es_CO/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_CO/formats.py,sha256=kvTsKSaK7oDWK6a-SeO3V3e__64SjtDBMWoq0ouVDJ4,700 +django/conf/locale/es_CO/LC_MESSAGES/django.mo,sha256=l3HZhJROILQRT1gTi7CVxL2etNjqZWHR2ssvHQbCq5g,18139 +django/conf/locale/es_CO/LC_MESSAGES/django.po,sha256=JQzUDpoeDgEFch8DyOMd5rlzpGhICA2fTYUYOBbR55g,24825 +django/conf/locale/es_MX/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_MX/formats.py,sha256=tny9CPrJJV5qRJ_myuiQ8fMfg3fnNtv3q6aOSxLdK0E,799 +django/conf/locale/es_MX/LC_MESSAGES/django.mo,sha256=7Tgp0d4rtaT7r0xE7mcuaz4ZkijdFDf4qKW34SaKSx0,14006 +django/conf/locale/es_MX/LC_MESSAGES/django.po,sha256=NAdu2y6IjTxEx-EAcWAu6FDGcNKghH6XbMeJzQsIvAA,23075 +django/conf/locale/es_NI/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_NI/formats.py,sha256=QMfHoEWcpR_8yLaE66w5UjmPjtgTAU7Yli8JHgSxGRI,740 +django/conf/locale/es_PR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_PR/formats.py,sha256=mYKWumkfGElGDL92G0nO_loBoSOOFKs0ktsI3--nlLQ,671 +django/conf/locale/es_VE/LC_MESSAGES/django.mo,sha256=Z9s2wC-GPX4kfVTdWVDTGqupu8SLu3M_YG_NXAiT8Lw,18876 +django/conf/locale/es_VE/LC_MESSAGES/django.po,sha256=bdkssLWy4c-CDSMIcz3U2XGmhnLIcut9yQoDhtYu7c8,25212 +django/conf/locale/et/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/et/formats.py,sha256=kD0IrKxW4AlMhS6fUEXUtyPWfsdLuBzdDHiEmdfzadQ,707 +django/conf/locale/et/LC_MESSAGES/django.mo,sha256=ApIDODmKOM-blCdZuvW9ERENhKAtnzxnRqFR4xeCqTg,19410 +django/conf/locale/et/LC_MESSAGES/django.po,sha256=XuhIsSOrTPOqrta-t4F793MhdeazAk7R5xw97-iOR6Y,25412 +django/conf/locale/eu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/eu/formats.py,sha256=R-Ex1e1CoDDIul2LGuhXH5-ZBsiRpTerqxqRAmB8gFM,749 +django/conf/locale/eu/LC_MESSAGES/django.mo,sha256=l07msMSyWE5fXmpWA4jp2NiKKG1ej3u017HiiimXYGs,20737 +django/conf/locale/eu/LC_MESSAGES/django.po,sha256=BIJfur2Wiu4t0W6byiOxrtpmBL71klxHGMnko-O87Ro,26140 +django/conf/locale/fa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fa/formats.py,sha256=RCDlj-iiAS7MVgWwOFSvQ_-QROhBm-7d8OP6QhkcGZw,722 +django/conf/locale/fa/LC_MESSAGES/django.mo,sha256=3GF6nh-46ybpoz1dPftADBfrQMfNpIklLxb--GVcmu8,23887 +django/conf/locale/fa/LC_MESSAGES/django.po,sha256=mB9tCR_RajbwYK1oIhUh_DKcuccJ-ovg1vcCbT9TTZI,29438 +django/conf/locale/fi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fi/formats.py,sha256=L4-Y1nX-OwKv__oN5PVgRq3P1uJ8Nwuf72zkd44QiS0,1325 +django/conf/locale/fi/LC_MESSAGES/django.mo,sha256=a9mxl5dOWkknJ4nTvPxEWfrQhn0YucFslSfPm-NoyEc,20548 +django/conf/locale/fi/LC_MESSAGES/django.po,sha256=L0hpYu_w9pBbtKjgde9Vf2g5TDCxNfoB_U-DB9Y6L84,26023 +django/conf/locale/fr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fr/formats.py,sha256=fcbOaNmoQWU5O87YsviFsqQ1SXaRZ0opsCvgygCklqE,1389 +django/conf/locale/fr/LC_MESSAGES/django.mo,sha256=vLgzzyXkKxIx7Nm575AGGQNd-PgImfxKt3cEMkRUK10,28021 +django/conf/locale/fr/LC_MESSAGES/django.po,sha256=A2ULSAnOlixldmAH-EmNd7OfHL8YrhRjioCHjiqGmEE,30167 +django/conf/locale/fy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fy/formats.py,sha256=mJXj1dHUnO883PYWPwuI07CNbjmnfBTQVRXZMg2hmOk,658 +django/conf/locale/fy/LC_MESSAGES/django.mo,sha256=9P7zoJtaYHfXly8d6zBoqkxLM98dO8uI6nmWtsGu-lM,2286 +django/conf/locale/fy/LC_MESSAGES/django.po,sha256=jveK-2MjopbqC9jWcrYbttIb4DUmFyW1_-0tYaD6R0I,19684 +django/conf/locale/ga/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ga/formats.py,sha256=Kotsp4o-6XvJ1sQrxIaab3qEW2k4oyPdJhcqvlgbGnU,682 +django/conf/locale/ga/LC_MESSAGES/django.mo,sha256=TwaGLoMU-XSk53QYIfV-51y8IccNsIpf2k1_u8xLhIc,14063 +django/conf/locale/ga/LC_MESSAGES/django.po,sha256=ATUD_ejoia6FHqzTxrRZiiJfJbbs2tlgfWOngi8OAeU,24063 +django/conf/locale/gd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/gd/formats.py,sha256=tWbR1bTImiH457bq3pEyqdr4H2ONUdhOv2rZ2cYUdC8,715 +django/conf/locale/gd/LC_MESSAGES/django.mo,sha256=gNFDHoTN8bCwAzC7fLiXLr7rVspeHhE9n23eKkFc6e4,23346 +django/conf/locale/gd/LC_MESSAGES/django.po,sha256=rgclNT1QEo0hisqAnh1ZraqfY8Wr2li3iZSgfF4Jf-8,29078 +django/conf/locale/gl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/gl/formats.py,sha256=Tr41ECf7XNn4iekgPGUSKI6-lDkcHj1SaHno5gPa5hw,757 +django/conf/locale/gl/LC_MESSAGES/django.mo,sha256=utB99vnkb5SLff8K0i3gFI8Nu_eirBxDEpFKbZ_voPY,14253 +django/conf/locale/gl/LC_MESSAGES/django.po,sha256=rvhCJsURGjM2ekm6NBjY5crVGc5lrQv2qpHj35dM3qc,23336 +django/conf/locale/he/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/he/formats.py,sha256=-3Yt81fQFRo7ZwRpwTdTTDLLtbMdGSyC5n5RWcnqINU,712 +django/conf/locale/he/LC_MESSAGES/django.mo,sha256=Eo6SJtYa4YuE64GwJN_UzphKVdJVYoGiuBItiy89uaE,24373 +django/conf/locale/he/LC_MESSAGES/django.po,sha256=3eeSEaYddgv11VKLUQiLr62F-RWPfhl-rRYadK420Fo,29832 +django/conf/locale/hi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/hi/formats.py,sha256=dBY0JvWinGeNiDy4ZrnrtPaZQdwU7JugkzHE22C-M0A,684 +django/conf/locale/hi/LC_MESSAGES/django.mo,sha256=YdjVUSbrYEwqgBadYTsqo_kMk11Go9rWxi7YusTNHng,17619 +django/conf/locale/hi/LC_MESSAGES/django.po,sha256=lMO24dkr-_JckprApyLHd0NpUSpquk9o_pf0z-8xEtM,27303 +django/conf/locale/hr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/hr/formats.py,sha256=XfnsPwZiQfga6RwviGwazNIEU0HAjaj5as_nOk-Frts,2041 +django/conf/locale/hr/LC_MESSAGES/django.mo,sha256=HP4PCb-i1yYsl5eqCamg5s3qBxZpS_aXDDKZ4Hlbbcc,19457 +django/conf/locale/hr/LC_MESSAGES/django.po,sha256=qeVJgKiAv5dKR2msD2iokSOApZozB3Gp0xqzC09jnvs,26329 +django/conf/locale/hsb/LC_MESSAGES/django.mo,sha256=3blAvqT9_uK-JFrzGOZRpSFGeSeRPgteuxm0DwE5hg4,24889 +django/conf/locale/hsb/LC_MESSAGES/django.po,sha256=Dpx_qPFK4wmdSyydQJZGxYyopvFuOCasFH6ah0-GsVY,29210 +django/conf/locale/hu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/hu/formats.py,sha256=l-CD1wEvLKcWMTyYIvnPcA6eQYE14-elkQ4jkEtYSZk,1052 +django/conf/locale/hu/LC_MESSAGES/django.mo,sha256=dmlHz6MvW93UtDl9do03BtXmppeFA4pv9X-52dqB38A,27817 +django/conf/locale/hu/LC_MESSAGES/django.po,sha256=DKOJ8Pv2nNwliCKwwlWXC95WMbvwuKM-nqPyWaRB1gY,30068 +django/conf/locale/hy/LC_MESSAGES/django.mo,sha256=KfmTnB-3ZUKDHeNgLiego2Af0WZoHTuNKss3zE-_XOE,22207 +django/conf/locale/hy/LC_MESSAGES/django.po,sha256=kNKlJ5NqZmeTnnxdqhmU3kXiqT9t8MgAFgxM2V09AIc,28833 +django/conf/locale/ia/LC_MESSAGES/django.mo,sha256=drP4pBfkeaVUGO2tAB6r-IUu2cvDQiOWUJfPqsA0iEo,18430 +django/conf/locale/ia/LC_MESSAGES/django.po,sha256=VKowp9naiGfou8TrMutWPoUob-tDFB6W99yswHInNcw,24900 +django/conf/locale/id/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/id/formats.py,sha256=d6FIM_bRvKVQtOmS1p_Le81y7UqnS5zqfjtq-krGqzo,2070 +django/conf/locale/id/LC_MESSAGES/django.mo,sha256=TumauWgn_bfPXoRncaFSU8Nd2v2yjyARohDEuQbjuxk,26351 +django/conf/locale/id/LC_MESSAGES/django.po,sha256=eMSszj_Tb_skzp1uzzMMg-lUD2nygpi4lfMDk9y33Gg,28402 +django/conf/locale/io/LC_MESSAGES/django.mo,sha256=uI78C7Qkytf3g1A6kVWiri_CbS55jReO2XmRfLTeNs0,14317 +django/conf/locale/io/LC_MESSAGES/django.po,sha256=FyN4ZTfNPV5TagM8NEhRts8y_FhehIPPouh_MfslnWY,23124 +django/conf/locale/is/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/is/formats.py,sha256=4BbmtZUfTOsQ818Qi6NEZ54QUwd2I8H2wbnaTe0Df74,688 +django/conf/locale/is/LC_MESSAGES/django.mo,sha256=fBhG730SguKDrEhCJbY1Xhd993aRIj7C-kYT0tWRNXI,25231 +django/conf/locale/is/LC_MESSAGES/django.po,sha256=2FTiHylZk5dMtuEq_UAr52lOkONWhSKc11gvxXBNDX0,28473 +django/conf/locale/it/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/it/formats.py,sha256=QK1cnZ4b420JFItMk6tFibOztIalSseiMMFSyoDMco0,2017 +django/conf/locale/it/LC_MESSAGES/django.mo,sha256=vnNF4B0B-zlA8lsyOIHUT9gcj_RiSf2GGxjJQVfvdwc,20834 +django/conf/locale/it/LC_MESSAGES/django.po,sha256=kD3GqedvOgE1tI0WkwfHxmgRAoKc00wcrImKpnnmBtE,26503 +django/conf/locale/ja/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ja/formats.py,sha256=V6eTbaEUuWeJr-2NEAdQr08diKzOlFox1DbugC5xHpk,729 +django/conf/locale/ja/LC_MESSAGES/django.mo,sha256=aqrgj0F08Ls_ZdbonGe2MI3YmcDv-Hs-2mKARYazW0Q,22749 +django/conf/locale/ja/LC_MESSAGES/django.po,sha256=f9uQjYpPgOj7yfhSKNbt-eDqx_or5s04ohOp358PMjk,27940 +django/conf/locale/ka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ka/formats.py,sha256=He8e8V8LwpCB9R-oZ3xq6XF3OhySg0wIqb16mtME4MQ,2115 +django/conf/locale/ka/LC_MESSAGES/django.mo,sha256=4e8at-KNaxYJKIJd8r6iPrYhEdnaJ1qtPw-QHPMh-Sc,24759 +django/conf/locale/ka/LC_MESSAGES/django.po,sha256=pIgaLU6hXgVQ2WJp1DTFoubI7zHOUkkKMddwV3PTdt8,32088 +django/conf/locale/kab/LC_MESSAGES/django.mo,sha256=x5Kyq2Uf3XNlQP06--4lT8Q1MacA096hZbyMJRrHYIc,7139 +django/conf/locale/kab/LC_MESSAGES/django.po,sha256=DsFL3IzidcAnPoAWIfIbGJ6Teop1yKPBRALeLYrdiFA,20221 +django/conf/locale/kk/LC_MESSAGES/django.mo,sha256=krjcDvA5bu591zcP76bWp2mD2FL1VUl7wutaZjgD668,13148 +django/conf/locale/kk/LC_MESSAGES/django.po,sha256=RgM4kzn46ZjkSDHMAsyOoUg7GdxGiZ-vaEOdf7k0c5A,23933 +django/conf/locale/km/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/km/formats.py,sha256=o0v-vZQaH-v-7ttAc0H0tSWAQPYQlxHDm0tvLzuPJfw,750 +django/conf/locale/km/LC_MESSAGES/django.mo,sha256=kEvhZlH7lkY1DUIHTHhFVQzOMAPd_-QMItXTYX0j1xY,7223 +django/conf/locale/km/LC_MESSAGES/django.po,sha256=QgRxEiJMopO14drcmeSG6XEXQpiAyfQN0Ot6eH4gca8,21999 +django/conf/locale/kn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/kn/formats.py,sha256=FK0SWt0_88-SJkA1xz01sKOkAce5ZEyF-F0HUlO5N4k,680 +django/conf/locale/kn/LC_MESSAGES/django.mo,sha256=fQ7AD5tUiV_PZFBxUjNPQN79dWBJKqfoYwRdrOaQjU4,17515 +django/conf/locale/kn/LC_MESSAGES/django.po,sha256=fS4Z7L4NGVQ6ipZ7lMHAqAopTBP0KkOc-eBK0IYdbBE,28133 +django/conf/locale/ko/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ko/formats.py,sha256=S2EcLIPMbVxRuWnRzWp2R7VzIVBaa4t6XqliTILwM4I,2255 +django/conf/locale/ko/LC_MESSAGES/django.mo,sha256=XNdPyK2dQqthDyT-qlCdKY7mNNazobPOUwjeXIaA_Lo,22180 +django/conf/locale/ko/LC_MESSAGES/django.po,sha256=BOI1BMbfz4eTR69fAWQOBWm8Ukp0lsBgnW6Cc3DhF-w,27262 +django/conf/locale/lb/LC_MESSAGES/django.mo,sha256=tQSJLQUeD5iUt-eA2EsHuyYqsCSYFtbGdryATxisZsc,8008 +django/conf/locale/lb/LC_MESSAGES/django.po,sha256=GkKPLO3zfGTNync-xoYTf0vZ2GUSAotAjfPSP01SDMU,20622 +django/conf/locale/lt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/lt/formats.py,sha256=wnele5vB2HN-LvOli8K7tGZQUJlSmQW_ZhgoULgqa0o,1765 +django/conf/locale/lt/LC_MESSAGES/django.mo,sha256=VWrkGGbkN_1UKH9QJcPqKVSRIY2JSJjK23B7oXQqpcA,22750 +django/conf/locale/lt/LC_MESSAGES/django.po,sha256=GDdmsy8FopCM8_VTQKoeGWB918aCT1su4VZktAbnmqA,28534 +django/conf/locale/lv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/lv/formats.py,sha256=NodzlrtA6_0k7bmCs6a9-TjhAriGZcTT12M1-aN-j-4,1841 +django/conf/locale/lv/LC_MESSAGES/django.mo,sha256=rdgDoHieD-0yynmL3PG75QvWzjW8gnkjn1bQhBF8aXE,27797 +django/conf/locale/lv/LC_MESSAGES/django.po,sha256=ZU_AEl7beXjY9kZByTo1tbJkZHaH3STSWfSkZxvoi5M,30151 +django/conf/locale/mk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/mk/formats.py,sha256=svukojExoWux5uk8K1W3NhbQUvEbWTht5_HybAmTaiU,1677 +django/conf/locale/mk/LC_MESSAGES/django.mo,sha256=Cy9hWW-PYSARKdepaqLtDvKxbdj1FtVb8I4wfPuecMc,23082 +django/conf/locale/mk/LC_MESSAGES/django.po,sha256=hRAZ5mPP7j3kSyvLx3TNSD3c-8pLRpny36Uo2VNQoZA,29539 +django/conf/locale/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ml/formats.py,sha256=QAMybGqJETPG_vx3kQM4UGyaOffkx5no1dqpU9ri9cc,1750 +django/conf/locale/ml/LC_MESSAGES/django.mo,sha256=SU27ZRS8-ZcgBg6AHYuQx4j-jfk722Dg3C4smfjQ1JQ,30785 +django/conf/locale/ml/LC_MESSAGES/django.po,sha256=rnw82X8aGznO16Ch932Gt87zWgkbduR8V7gpW1JuG6U,36532 +django/conf/locale/mn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/mn/formats.py,sha256=ET9fum7iEOCGRt9E-tWXjvHHvr9YmAR5UxmEHXjJsTc,676 +django/conf/locale/mn/LC_MESSAGES/django.mo,sha256=sd860BHXfgAjDzU3CiwO3JirA8S83nSr4Vy3QUpXHyU,24783 +django/conf/locale/mn/LC_MESSAGES/django.po,sha256=VBgXVee15TTorC7zwYFwmHM4qgpYy11yclv_u7UTNwA,30004 +django/conf/locale/mr/LC_MESSAGES/django.mo,sha256=aERpEBdJtkSwBj6zOtiKDaXuFzepi8_IwvPPHi8QtGU,1591 +django/conf/locale/mr/LC_MESSAGES/django.po,sha256=GFtk4tVQVi8b7N7KEhoNubVw_PV08pyRvcGOP270s1Q,19401 +django/conf/locale/my/LC_MESSAGES/django.mo,sha256=SjYOewwnVim3-GrANk2RNanOjo6Hy2omw0qnpkMzTlM,2589 +django/conf/locale/my/LC_MESSAGES/django.po,sha256=b_QSKXc3lS2Xzb45yVYVg307uZNaAnA0eoXX2ZmNiT0,19684 +django/conf/locale/nb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/nb/formats.py,sha256=n2C0JR5Y8JiNXapfAjMHVnaxBL0OhPOwGquca37vI4o,1701 +django/conf/locale/nb/LC_MESSAGES/django.mo,sha256=K-PZrgWX9IcMo1U5wPd7nOdrIB9ekmB1Rn3bFNdCStA,20230 +django/conf/locale/nb/LC_MESSAGES/django.po,sha256=ZexmaPKGGTagwOM3XSqxxhhxhQwC6RnrjtyaN0uiIZo,25618 +django/conf/locale/ne/LC_MESSAGES/django.mo,sha256=M8OGFAtyVY0luBVrecYRTpNAxU1pEVnRoK57AsglNXE,27099 +django/conf/locale/ne/LC_MESSAGES/django.po,sha256=OV0NistmboKzq-gmkExGLwCA9nlK7bYMv7x4ws6DgSQ,33028 +django/conf/locale/nl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/nl/formats.py,sha256=kMY8SpEDMdvSD3Bcluz-EdSYdV3VhgTs30Z2qIpN_wM,4407 +django/conf/locale/nl/LC_MESSAGES/django.mo,sha256=uj2r0gJHiim9tmeaWKIq3oNhgg4ADLsL5AETOmFCBYM,26776 +django/conf/locale/nl/LC_MESSAGES/django.po,sha256=FGgWVFL3t6sp76j3Vs0zas3bsO1ptsFr2D25AgDwkt4,29236 +django/conf/locale/nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/nn/formats.py,sha256=UpOmzU0aFIh2MrRZ0PuY4LZ2mXe15SL-_Z_yAVM3fxM,1745 +django/conf/locale/nn/LC_MESSAGES/django.mo,sha256=8CoLejnImo9TMbt-CR7NK8WAbX3wm89AgZOuPn-werQ,13212 +django/conf/locale/nn/LC_MESSAGES/django.po,sha256=AWPfAtzROtcEjxr0YWGTcNBWF7qnyF3wxhGkLiBIQ5k,22582 +django/conf/locale/os/LC_MESSAGES/django.mo,sha256=LBpf_dyfBnvGOvthpn5-oJuFiSNHrgiVHBzJBR-FxOw,17994 +django/conf/locale/os/LC_MESSAGES/django.po,sha256=WYlAnNYwGFnH76Elnnth6YP2TWA-fEtvV5UinnNj7AA,26278 +django/conf/locale/pa/LC_MESSAGES/django.mo,sha256=H1hCnQzcq0EiSEaayT6t9H-WgONO5V4Cf7l25H2930M,11253 +django/conf/locale/pa/LC_MESSAGES/django.po,sha256=26ifUdCX9fOiXfWvgMkOXlsvS6h6nNskZcIBoASJec4,23013 +django/conf/locale/pl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/pl/formats.py,sha256=UjzylphDLBOy4IlFY3SAvaTIwxsjKz41wZMxUDzM7KA,1082 +django/conf/locale/pl/LC_MESSAGES/django.mo,sha256=zcGkGsWNodTFFrem8ul9qFknGyuNzfIvD9DcbBeLF78,29162 +django/conf/locale/pl/LC_MESSAGES/django.po,sha256=vzgZHTNiLYz9i1QuqUjBqTP3CNp3zOgcMdj52KdwX4E,32418 +django/conf/locale/pt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/pt/formats.py,sha256=B7_tX50445cz2hiLJBid1vY0z9BDYouTAaCXLwr117Y,1652 +django/conf/locale/pt/LC_MESSAGES/django.mo,sha256=nlj_L7Z2FkXs1w6wCGGseuZ_U-IecnlfYRtG5jPkGrs,20657 +django/conf/locale/pt/LC_MESSAGES/django.po,sha256=ETTedbjU2J4FLi2QDHNN8C7zlAsvLWNUlYzkEV1WB6s,26224 +django/conf/locale/pt_BR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/pt_BR/formats.py,sha256=46QDzg8pNMlw5MAs3U8Rj8SykK8Ck6SZBONk5_VzY2Q,1369 +django/conf/locale/pt_BR/LC_MESSAGES/django.mo,sha256=SBTqf61cB_ngvdeqrTA-bTgj4eDE-j5niPS3kj7yRec,26922 +django/conf/locale/pt_BR/LC_MESSAGES/django.po,sha256=hud56oF3dIpRuaHCbHX4U4Mc66MIC8heTQgQFmkclmc,29939 +django/conf/locale/ro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ro/formats.py,sha256=hpxpg6HcFGX5HFpypZ-GA4GkAsXCWuivMHLyyV1U2Rw,928 +django/conf/locale/ro/LC_MESSAGES/django.mo,sha256=IMUybfJat0koxf_jSv6urQQuiHlldUhjrqo3FR303WA,22141 +django/conf/locale/ro/LC_MESSAGES/django.po,sha256=mdMWVR6kXJwUSxul2bpu3IoWom6kWDiES6Iw5ziynj0,27499 +django/conf/locale/ru/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ru/formats.py,sha256=wM47-gl6N2XbknMIUAvNmqxNyso6bNnwU11RzoLK3RM,1202 +django/conf/locale/ru/LC_MESSAGES/django.mo,sha256=RcGlv-XmSXP6UsFvoAh-K08_1fV0TxEB1jYtQs2rK00,28645 +django/conf/locale/ru/LC_MESSAGES/django.po,sha256=3OFjJTuPbJGlkfxR3mweazgnWjZY5If_aSpl-HZDD7A,34742 +django/conf/locale/sk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sk/formats.py,sha256=uDeovJ6Oo39vxb_Y2EbwlqBh3F4N6D6EOpYzPMDH4yU,1108 +django/conf/locale/sk/LC_MESSAGES/django.mo,sha256=M3eLAQW6d4N8fgIeg9L5rcuMFjUbM4Y02YqIbbQRqCE,22177 +django/conf/locale/sk/LC_MESSAGES/django.po,sha256=g4-ioagq5vYN_Te90XqVTCU8hNiN-akD-vH9X7K7r6A,27943 +django/conf/locale/sl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sl/formats.py,sha256=fChz1Gj0lUVg-BnLITgoKcUXKlRTesowYokrWUbdQtc,2053 +django/conf/locale/sl/LC_MESSAGES/django.mo,sha256=uaPbjsAAam_SrzenHjeHgTC3Pxn6BEecXgnDY9HOzwg,21921 +django/conf/locale/sl/LC_MESSAGES/django.po,sha256=MZ8Lz3dN5JSxw7l8bFRN0ozeW4Sue0jnRURm2zpOcuI,27860 +django/conf/locale/sq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sq/formats.py,sha256=X7IXRLlVWmlgNSa2TSvshv8Vhtjfv0V1Okg0adqVl3o,688 +django/conf/locale/sq/LC_MESSAGES/django.mo,sha256=INTv9TZYzvTkcsxJBsZSUMwRe3bzw5anKxGU6rIW69I,27245 +django/conf/locale/sq/LC_MESSAGES/django.po,sha256=q6OcICPDrDWS1Cjy9djLQnqkM1l6MjwlCqWK2ZZwGJ4,29318 +django/conf/locale/sr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sr/formats.py,sha256=SGrIbHa8LJdOV_nlmwShGOQ1Wz-l4lNpufHQsPMJcFk,1946 +django/conf/locale/sr/LC_MESSAGES/django.mo,sha256=Erq8bvDPM7mIwaex60UXvP1CJ95YB3Sk5HfSzYwiERM,25978 +django/conf/locale/sr/LC_MESSAGES/django.po,sha256=4smbDVBdXZhr2ONb2wg55i5eNGlZSSu60pSvalKpDaY,31291 +django/conf/locale/sr_Latn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sr_Latn/formats.py,sha256=SGrIbHa8LJdOV_nlmwShGOQ1Wz-l4lNpufHQsPMJcFk,1946 +django/conf/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=OBHBUFDhj1fJ9iLIri8YbYHFfR_ohh5VU-WEmklOyXU,14025 +django/conf/locale/sr_Latn/LC_MESSAGES/django.po,sha256=_E7ir5z7cdJ_A18xnSeHYbF_77HGiGKT7YqMHSVjzmU,23156 +django/conf/locale/sv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sv/formats.py,sha256=25cpkzB06_S54wXu-yGNJ7_6zcsAH39KnvzlWnkzGlI,1504 +django/conf/locale/sv/LC_MESSAGES/django.mo,sha256=UEnIZt9DYHRzPDsISXQkRLxMUmB42jUTe3EDWDZ1vRo,20646 +django/conf/locale/sv/LC_MESSAGES/django.po,sha256=6ZfuM8tUmG7trlqgRX-IEjneRpd9ZJdhoKmbM2n_-VQ,26135 +django/conf/locale/sw/LC_MESSAGES/django.mo,sha256=aUmIVLANgSCTK5Lq8QZPEKWjZWnsnBvm_-ZUcih3J6g,13534 +django/conf/locale/sw/LC_MESSAGES/django.po,sha256=GOE6greXZoLhpccsfPZjE6lR3G4vpK230EnIOdjsgPk,22698 +django/conf/locale/ta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ta/formats.py,sha256=LbLmzaXdmz4UbzNCbINYOJLggyU1ytxWAME3iHVt9NY,682 +django/conf/locale/ta/LC_MESSAGES/django.mo,sha256=2EvEs7bTr6I9_YNZGqCGcWGg5LQKGyPHKe7Tb6VfeVk,7094 +django/conf/locale/ta/LC_MESSAGES/django.po,sha256=-3lCxEViZARsCyr71lop6VdR_IC117hz0ACcLmv8G6Q,22038 +django/conf/locale/te/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/te/formats.py,sha256=aSddq7fhlOce3zBLdTNDQA5L_gfAhsmKRCuyQ8O5TyY,680 +django/conf/locale/te/LC_MESSAGES/django.mo,sha256=MtQHRAbX8LJjvl1IUJMf16ZxAsKeEc1ZhnA_xXDSZUs,13260 +django/conf/locale/te/LC_MESSAGES/django.po,sha256=PNjAf7ZEh_ox15KUrF4GTJOFIz0MOpCDEkcCGKYn9dA,25088 +django/conf/locale/th/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/th/formats.py,sha256=vBGsPtMZkJZN0gVcX3eCDVE3KHsjJJ94EW2_9tCT0W4,1072 +django/conf/locale/th/LC_MESSAGES/django.mo,sha256=SJeeJWbdF-Lae5BendxlyMKqx5zdDmh3GCQa8ER5FyY,18629 +django/conf/locale/th/LC_MESSAGES/django.po,sha256=K4ITjzHLq6DyTxgMAfu3CoGxrTd3aG2J6-ZxQj2KG1U,27507 +django/conf/locale/tr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/tr/formats.py,sha256=38lfcqhKBQMUh9mXUMcTgpWMheP4hHryt3b9GZNxWjw,1076 +django/conf/locale/tr/LC_MESSAGES/django.mo,sha256=MwLkQ2D3W1uo6rU3ppbCz5-JDBA0HH8i3D1jWcqaUsE,27464 +django/conf/locale/tr/LC_MESSAGES/django.po,sha256=GotGIMMhaGrGFq9A6bJChOKwkOgB7SHUIpY0dxIv9XI,29782 +django/conf/locale/tt/LC_MESSAGES/django.mo,sha256=r554DvdPjD_S8hBRjW8ehccEjEk8h7czQsp46FZZ_Do,14500 +django/conf/locale/tt/LC_MESSAGES/django.po,sha256=W8QgEAH7yXNmjWoF-UeqyVAu5jEMHZ5MXE60e5sawJc,24793 +django/conf/locale/udm/LC_MESSAGES/django.mo,sha256=cIf0i3TjY-yORRAcSev3mIsdGYT49jioTHZtTLYAEyc,12822 +django/conf/locale/udm/LC_MESSAGES/django.po,sha256=n9Az_8M8O5y16yE3iWmK20R9F9VoKBh3jR3iKwMgFlY,23113 +django/conf/locale/uk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/uk/formats.py,sha256=VOqr0IcT2ab42aP7FWAXMILV1KXBckqt44v0CKSpJHg,1361 +django/conf/locale/uk/LC_MESSAGES/django.mo,sha256=_Vvwyz3hb9YoBOJHOiIiMcyNjsIikwB2oMMXZgX0diI,28034 +django/conf/locale/uk/LC_MESSAGES/django.po,sha256=P46eBkDLepBLFx2gaYZNfcHR4Yqwl8D3hw2eNj4uoUY,34117 +django/conf/locale/ur/LC_MESSAGES/django.mo,sha256=M6R2DYFRBvcVRAsgVxVOLvH3e8v14b2mJs650UlUb2I,12291 +django/conf/locale/ur/LC_MESSAGES/django.po,sha256=Lr0DXaPqWtCFAxn10BQ0vlvZIMNRvCg_QJQxAC01eWk,23479 +django/conf/locale/uz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/uz/formats.py,sha256=RWbG6f69Bv3OHgyd058NXjX9CCd0BQkW96Ul1swAJKU,1301 +django/conf/locale/uz/LC_MESSAGES/django.mo,sha256=QoYJOfeTHH2mTvc9UEoOd-LgLZB_PAl0MfGy4Aov3hc,27108 +django/conf/locale/uz/LC_MESSAGES/django.po,sha256=RocD9pbC1nS0ynRQLMzRCJ_HVJnp5mLINWvdm9mdwP8,28886 +django/conf/locale/vi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/vi/formats.py,sha256=H_lZwBQUKUWjtoN0oZOxXw0SsoNWnXg3pKADPYX3RrI,762 +django/conf/locale/vi/LC_MESSAGES/django.mo,sha256=-cjbOfq39b_BkIvuzArbYpmC-xlj7ioHDde8eSn6WVU,17446 +django/conf/locale/vi/LC_MESSAGES/django.po,sha256=P0b8vYKefTiVFswhXSWW0pIo-0Ubr4LKqKnFYcVPFVE,25058 +django/conf/locale/zh_Hans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/zh_Hans/formats.py,sha256=U-1yJketLR187TFCBAzgUCt0UlZNvCxoLgBkYhZz2Ts,1745 +django/conf/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=i50A2Vo6jl6x14jX1gQiBZfT1-vM_l5LCnTT5ldZHvc,19844 +django/conf/locale/zh_Hans/LC_MESSAGES/django.po,sha256=uUsArSbL4FUsFBtt6xw4Hgxlc06MV6dC-FuLIUuznPw,25587 +django/conf/locale/zh_Hant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/zh_Hant/formats.py,sha256=U-1yJketLR187TFCBAzgUCt0UlZNvCxoLgBkYhZz2Ts,1745 +django/conf/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=1U3cID-BpV09p0sgYryzJCCApQYVlCtb4fJ5IPB8wtc,19560 +django/conf/locale/zh_Hant/LC_MESSAGES/django.po,sha256=buHXYy_UKFoGW8xz6PNrSwbMx-p8gwmPRgdWGBYwT2U,24939 +django/conf/project_template/manage.py-tpl,sha256=ytMiojzkr7Qg3VnkI9Hw6KPuozIpMULyOc0oTnqou8A,638 +django/conf/project_template/project_name/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/project_template/project_name/asgi.py-tpl,sha256=q_6Jo5tLy6ba-S7pLs3YTK7byxSBmU0oYylYJlNvwHI,428 +django/conf/project_template/project_name/settings.py-tpl,sha256=4JwYHW6nbDUufEkQOQjOY08slnLMETQAJ9dqr4PjsmU,3210 +django/conf/project_template/project_name/urls.py-tpl,sha256=vrokVPIRgYajr3Osw2_D1gCndrJ-waGU3tkpnzhWync,775 +django/conf/project_template/project_name/wsgi.py-tpl,sha256=OCfjjCsdEeXPkJgFIrMml_FURt7msovNUPnjzb401fs,428 +django/conf/urls/__init__.py,sha256=Lp9Zc17tRy3bVwULxq1_8qBloXbgmqiQiIzzbqkqDSk,402 +django/conf/urls/i18n.py,sha256=TG_09WedGtcOhijJtDxxcQkcOU15Dikq0NkLGVvwvCI,1184 +django/conf/urls/static.py,sha256=WHZ7JNbBEQVshD0-sdImvAW635uV-msIyP2VYntzrPk,886 +django/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/__init__.py,sha256=K5IZ6J5ujshspna6ubTvpFfTBjU7p8EhsbvW6G7fMwY,1243 +django/contrib/admin/actions.py,sha256=S7p0NpRADNwhPidrN3rKN_LCJaFCKHXX9wcJyVpplsw,3018 +django/contrib/admin/apps.py,sha256=p0EKbVZEU82JyEKrGA5lIY6uPCWgJGzyJM_kij-Juvg,766 +django/contrib/admin/checks.py,sha256=aInjV7SMFRgMT59evOCtQDzNP7byQ8eEn-ws2DDhEdo,44756 +django/contrib/admin/decorators.py,sha256=jQS6FQ2PxaqGYTYNa4jdx-qSVPV9Uf5bRhbC9PF0BMM,969 +django/contrib/admin/exceptions.py,sha256=lWAupa8HTBROgZbDeYS1n_vOl_85dcmPhDwz0-Ke1ug,331 +django/contrib/admin/filters.py,sha256=kjzbvf9Ez0aaWNf6LPUVmiV51Ji-Sana4W5pipmRiBQ,17788 +django/contrib/admin/forms.py,sha256=hDFBqCKLLp8_ea0T0gshsgUHw0RgUtNoHCp3Q5fkOhA,1001 +django/contrib/admin/helpers.py,sha256=BazBQDjMzkXBSQ9U0l2wK4AIW6lM0tk4i2qkJBze-4k,15553 +django/contrib/admin/models.py,sha256=StUVq7jQZLCsp1QCgOCnUvILl6Ax-ZtTm7zAoyJvmh4,5673 +django/contrib/admin/options.py,sha256=GO_rulKQ6Kf7SWG6Kf87iVfmEjYWWCtGfUVkbVIr6Yg,92332 +django/contrib/admin/sites.py,sha256=kOmVB6Btgd0gfenh0Y0nBSpXF6XJHVyvSzUAbNBGuI4,20973 +django/contrib/admin/tests.py,sha256=eO-iV08qo6zrNuPibtb5hrQyByq20VDk0pjWSLYTXFE,7301 +django/contrib/admin/utils.py,sha256=6XYbw_NR1AeFwltwd1SVKZDVa45smBIN-e7E0MT37U8,19315 +django/contrib/admin/widgets.py,sha256=fQ6KV8YnpNOGs0EMs_B2Trzhmwfv4f300w2-zoj4Qdw,17260 +django/contrib/admin/locale/af/LC_MESSAGES/django.mo,sha256=Wbc2ubHv3Zw-N7pIV46MHcjv3Cigaab7rPm8qzBvfQI,16245 +django/contrib/admin/locale/af/LC_MESSAGES/django.po,sha256=HcM8xRLWALn6F2Ynz1KgZl7SRq5zDI7BYI38ste4FcI,17622 +django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo,sha256=dmctO7tPkPwdbpp-tVmZrR0QLZekrJ1aE3rnm6vvUQM,4477 +django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po,sha256=1wwspqp0rsSupVes7zjYLyNT_wY4lFefqhpXH5wBdJM,4955 +django/contrib/admin/locale/am/LC_MESSAGES/django.mo,sha256=UOwMxYH1r5AEBpu-P9zxHazk3kwI4CtsPosGIYtl6Hs,8309 +django/contrib/admin/locale/am/LC_MESSAGES/django.po,sha256=NmsIZoBEQwyBIqbKjkwCJ2_iMHnMKB87atoT0iuNXrw,14651 +django/contrib/admin/locale/ar/LC_MESSAGES/django.mo,sha256=DhTZRYLGi98h9gmQfsIlAms0cCkm0nuozk-lFVNLNVk,17621 +django/contrib/admin/locale/ar/LC_MESSAGES/django.po,sha256=LMfZRZ8yjehdgcLh2HceynRhgDi_XzDEsWZWVXR5noI,19973 +django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo,sha256=gLwHSlr1xGvsbFO1S8mnqM-NVzCUQ75n-X1NCBeANe8,4959 +django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po,sha256=1lgw43gz9MCvcujDQ4eGUvo8Qn5DE2fGvSC_qOs5bEs,6200 +django/contrib/admin/locale/ast/LC_MESSAGES/django.mo,sha256=3uffu2zPbQ1rExUsG_ambggq854Vy8HbullkCYdazA4,2476 +django/contrib/admin/locale/ast/LC_MESSAGES/django.po,sha256=wCWFh9viYUhTGOX0mW3fpN2z0kdE6b7IaA-A5zzb3Yo,11676 +django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo,sha256=kiG-lzQidkXER5s_6POO1G91mcAv9VAkAXI25jdYBLE,2137 +django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po,sha256=s4s6aHocTlzGcFi0p7cFGTi3K8AgoPvFCv7-Hji6At0,4085 +django/contrib/admin/locale/az/LC_MESSAGES/django.mo,sha256=qG76OtMvUFnySaBcdaJQAJPDGH8iaktUyQ8PEdFx4Y8,16875 +django/contrib/admin/locale/az/LC_MESSAGES/django.po,sha256=mNS5Fgr1P8lxWFoPdhsbfM9EaFdu4KFPta-EsX8-UxA,18231 +django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo,sha256=lwMWU4eHd5TLqpkeebGktXq1cSsqzE-siTD_IcA3bZk,4621 +django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po,sha256=72nOuDSiU2fb_RgmJ_sNpVpTBSFX1oVydPm-QqD8AX0,5102 +django/contrib/admin/locale/be/LC_MESSAGES/django.mo,sha256=SUecwpsuU4pjCuPE2_Kz6boVdJi1Qk3DdJnj6H8G7rU,20862 +django/contrib/admin/locale/be/LC_MESSAGES/django.po,sha256=5kEQjk4g4EuUm_j7JIP8_i9xjGejCetMMNlWdIjWjPA,22125 +django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo,sha256=a27Z-0vfUAhZ04XsIo31qvoFbWd8-aX8vZHdqiBNmcA,5901 +django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po,sha256=rmtZT3Rg0quYADxOubaFTiDBwUlh6Un1eRGW2QG6f6Y,6451 +django/contrib/admin/locale/bg/LC_MESSAGES/django.mo,sha256=iJzYciumvR_r42WmC3yjTdiWrQmS94p_x0gTWvV9lOc,20070 +django/contrib/admin/locale/bg/LC_MESSAGES/django.po,sha256=9ouezfohVViX6NFG57IFXTzcuMSvAafd6NKncMFJBds,21493 +django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo,sha256=TGNzP1smzgZmo5-s4VKD1E-nWTMtCSjp_hco1a0j4BQ,5565 +django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po,sha256=5uiQqnTyz0R-1vJTHqY0opwnQhMfgPoB-PxOkGpxNwk,6016 +django/contrib/admin/locale/bn/LC_MESSAGES/django.mo,sha256=fKmzDwzLp0Qlv4bvWscf0evanPRAXwR04B6IeJ7wGSw,15247 +django/contrib/admin/locale/bn/LC_MESSAGES/django.po,sha256=-go1WtUozfqbnKlUQr-jNnvEXf98eIZjq-C8KjRJ6NA,19812 +django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo,sha256=t_OiMyPMsR2IdH65qfD9qvQfpWbwFueNuY72XSed2Io,2313 +django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po,sha256=iFwEJi4k3ULklCq9eQNUhKVblivQPJIoC_6lbyEkotY,4576 +django/contrib/admin/locale/br/LC_MESSAGES/django.mo,sha256=yCuMwrrEB_H44UsnKwY0E87sLpect_AMo0GdBjMZRPs,6489 +django/contrib/admin/locale/br/LC_MESSAGES/django.po,sha256=WMU_sN0ENWgyEbKOm8uVQfTQh9sabvKihtSdMt4XQBM,13717 +django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo,sha256=n7Yx2k9sAVSNtdY-2Ao6VFsnsx4aiExZ3TF_DnnrKU0,1658 +django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po,sha256=gjg-VapbI9n_827CqNYhbtIQ8W9UcMmMObCsxCzReUU,4108 +django/contrib/admin/locale/bs/LC_MESSAGES/django.mo,sha256=44D550fxiO59Pczu5HZ6gvWEClsfmMuaxQWbA4lCW2M,8845 +django/contrib/admin/locale/bs/LC_MESSAGES/django.po,sha256=FrieR1JB4ssdWwYitJVpZO-odzPBKrW4ZsGK9LA595I,14317 +django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo,sha256=SupUK-RLDcqJkpLEsOVjgZOWBRKQMALZLRXGEnA623M,1183 +django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po,sha256=TOtcfw-Spn5Y8Yugv2OlPoaZ5DRwJjRIl-YKiyU092U,3831 +django/contrib/admin/locale/ca/LC_MESSAGES/django.mo,sha256=eI6D8SuOAUeJRWxvuOS0m_baK-LYZzn9a1qs7iJgI7U,17070 +django/contrib/admin/locale/ca/LC_MESSAGES/django.po,sha256=r3rzUCimuL_wktegqXdsN_gi5t3i979fUXeLxPKYR-w,18580 +django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo,sha256=xEkD4j5aPzRddlLC8W3aCZ7ah5RHC-MKTgFXI2uTPTI,4519 +django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po,sha256=CLxLUlg5GUQyWa-SC-8QpKdmdcpuzJl6TXHNRlO2s_E,5098 +django/contrib/admin/locale/cs/LC_MESSAGES/django.mo,sha256=IqvVdz-6AnoAj3KM5lNx8lLDAZki0CPlWGyIWV3KR44,17243 +django/contrib/admin/locale/cs/LC_MESSAGES/django.po,sha256=T9xnsj2r1dkCDKBmsUkUs9-FH1-bihudhrv4ajJMzBg,18736 +django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo,sha256=7dNfGDqJ25FoxSBvUVJmYoYQ4wymwKs_oHBPZTo6SU0,5012 +django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po,sha256=FWiaxDEWDMQjkm5j2CidZoRx8RqbWdmTCd-EHZE6gUo,5666 +django/contrib/admin/locale/cy/LC_MESSAGES/django.mo,sha256=7ifUyqraN1n0hbyTVb_UjRIG1jdn1HcwehugHBiQvHs,12521 +django/contrib/admin/locale/cy/LC_MESSAGES/django.po,sha256=bS_gUoKklZwd3Vs0YlRTt24-k5ure5ObTu-b5nB5qCA,15918 +django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo,sha256=fOCA1fXEmJw_QaXEISLkuBhaMnEmP1ssP9lhqdCCC3c,3801 +django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po,sha256=OVcS-3tlMJS_T58qnZbWLGczHwFyAjbuWr35YwuxAVM,5082 +django/contrib/admin/locale/da/LC_MESSAGES/django.mo,sha256=WeUwr2SXbRUtFQYznHVNhffVH5lAJTeOARgKeCnLWEY,16492 +django/contrib/admin/locale/da/LC_MESSAGES/django.po,sha256=wrSqsV5zPc_p86yXIyuI6oT_nglj81zr_mnMZamApfg,17845 +django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo,sha256=ZQjGF8F5-luFPX30uGhM4DvUiXw0rhornXrM5K4kmMY,4472 +django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po,sha256=W73un-TOtLe7M5xTc_5GWA7jG0Uq3JKAGvO81Tvfvj4,5110 +django/contrib/admin/locale/de/LC_MESSAGES/django.mo,sha256=0lfScCgStjRldINiX90iExA4yPncETH4PU98kT7w6ZQ,17151 +django/contrib/admin/locale/de/LC_MESSAGES/django.po,sha256=jXiF0E_apjQ7n5WwyUIymxOkHOObv6IvTchFPvPxMmw,18624 +django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo,sha256=_aUsqSeIo9dHAiy6daB-BLselNy7tuPUEf7kVCgEByM,4602 +django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po,sha256=ilCflt4q60Rr1D9wEPNpZQMvJO1R7udNsRgZiml3PdI,5068 +django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo,sha256=JrZYVI9p980knGzoAeVXRmoJXoxj9LPfpYnGBibIuaY,17280 +django/contrib/admin/locale/dsb/LC_MESSAGES/django.po,sha256=xuj9qjt70E4GOaz4XqYRw5ArPnXhRNZbEjQCc5zSjUE,18516 +django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo,sha256=dXeUPn56ZlRRGbBeHaG6YIwou46k0mu00FU7HCX1ou8,5016 +django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po,sha256=TGt8DJWrQ5Qs0SgJjjjeDmwZTGTPEBgeDFRvUhrrMRA,5490 +django/contrib/admin/locale/el/LC_MESSAGES/django.mo,sha256=7pnFzsUwA3Z3AdqccRmr2K6A2hfrhNGsvtFJFI0uOZU,23088 +django/contrib/admin/locale/el/LC_MESSAGES/django.po,sha256=vnMzGKYAAgZqo03IdyEJQv1jAMPIlQ2INh3P7cR2HDc,24662 +django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo,sha256=vfha6S1wDTxgteeprHdCY6j1SnSWDdbC67aoks7TVFw,5888 +django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po,sha256=GJQytMIHNrJeWWnpaoGud4M6aiJCtJ7csyXzmfS6GZs,6560 +django/contrib/admin/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/admin/locale/en/LC_MESSAGES/django.po,sha256=GAiOM4V5nyBWB_ztQsphvivaNEGToGMVI-iIOoccMVE,23207 +django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po,sha256=02sibdoGO77DCuqCRr_w9-4wd50f-TK1m-TFZ7vVf5o,6601 +django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo,sha256=DVjhYEbArfdAQLuE0YAG99eWxa9_eNEz2o9A6X6MrEY,2894 +django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po,sha256=CO7AV-NmmmwnXyBIybSfNZLdXiavphWsd9LNZQNqDL4,11800 +django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo,sha256=LWNYXUicANYZeiNx4mb6pFpjnsaggPTxTBCbNKxPtFw,1714 +django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po,sha256=UZk0oHToRtHzlviraFzWcZlpVAOk_W2oq4NquxevQoE,3966 +django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo,sha256=pFkTMRDDj76WA91wtGPjUB7Pq2PN7IJEC54Tewobrlc,11159 +django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po,sha256=REUJMGLGRyDMkqh4kJdYXO9R0Y6CULFVumJ_P3a0nv0,15313 +django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo,sha256=hW325c2HlYIIdvNE308c935_IaDu7_qeP-NlwPnklhQ,3147 +django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po,sha256=Ol5j1-BLbtSIDgbcC0o7tg_uHImcjJQmkA4-kSmZY9o,4581 +django/contrib/admin/locale/eo/LC_MESSAGES/django.mo,sha256=Kq-XFhLK56KXwDE2r2x93w9JVFSxgXqCU_XKb38DxhU,16252 +django/contrib/admin/locale/eo/LC_MESSAGES/django.po,sha256=Yr37pm5u1xEb9vuUucJmbs9aPErpog9AP9nIr8GQpBU,17752 +django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo,sha256=I1Ue345qSHPmJpX4yiYgomQ8vMgshRt1S1D_ZVJWf7g,4452 +django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po,sha256=BdSRWCYCDxLxtbcPSfRdAMGoTRWOWaxRGpdCIm-3HA0,5040 +django/contrib/admin/locale/es/LC_MESSAGES/django.mo,sha256=xuKy1h77UlayYqn_G4JjJVb1Vy6nVUtiUmdy6MT544Q,17223 +django/contrib/admin/locale/es/LC_MESSAGES/django.po,sha256=YKlRrWfJ1-N_8U9kvLVF9umIfFTtBvw-EpPFsJBITWA,19165 +django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo,sha256=44RpmIC1vT7OGz4ubSAzoiU8OysfLsnueZcIqdF6gjQ,4627 +django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po,sha256=t2Jn5RZo7e-UzqVwgBAejuBceWCidWjXvd--cWEq6rI,5302 +django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo,sha256=cfERHNKFLh_2Uv41rcRxRl0jfXswmd-9G7164N5Dluw,17461 +django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po,sha256=BjgAbhctN5tmdd87eDd8Lj2uUU8PeOMVSbrJ5LjaLw4,18732 +django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo,sha256=BvWxoVnDcpODCCC4MbZwG07x2GnEcj0t8l0kISgSuSc,4851 +django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po,sha256=DB0e4M6Y5sUdEAvByhGA2nhScOnBZx40SManaAWvpyo,5350 +django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo,sha256=0k8kSiwIawYCa-Lao0uetNPLUzd4m_me3tCAVBvgcSw,15156 +django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po,sha256=4T_syIsVY-nyvn5gEAtfN-ejPrJSUpNT2dmzufxaBsE,17782 +django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo,sha256=PLS10KgX10kxyy7MUkiyLjqhMzRgkAFGPmzugx9AGfs,3895 +django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po,sha256=Y4bkC8vkJE6kqLbN8t56dR5670B06sB2fbtVzmQygK8,5176 +django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo,sha256=lQwxsrvK8ZQaqErLj2Uc_6ot5QiczaWgFqIr9K0tzwc,14127 +django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po,sha256=b9BB_rwofNmIl98JB6jA-61AnYq-GvbITLtsOEi_NBM,16964 +django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo,sha256=2w3CMJFBugP8xMOmXsDU82xUm8cWGRUGZQX5XjiTCpM,3380 +django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po,sha256=OP9cBsdCf3zZAXiKBMJPvY1AHwC_WE1k2vKlzVCtUec,4761 +django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo,sha256=himCORjsM-U3QMYoURSRbVv09i0P7-cfVh26aQgGnKg,16837 +django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po,sha256=mlmaSYIHpa-Vp3f3NJfdt2RXB88CVZRoPEMfl-tccr0,18144 +django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo,sha256=Zy-Hj_Mr2FiMiGGrZyssN7GZJrbxRj3_yKQFZKR36Ro,4635 +django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po,sha256=RI8CIdewjL3bAivniMOl7lA9tD7caP4zEo2WK71cX7c,5151 +django/contrib/admin/locale/et/LC_MESSAGES/django.mo,sha256=s7jzFiU_v46bix73UqilOdDI17yz7LB37eMV6vV3K0c,15553 +django/contrib/admin/locale/et/LC_MESSAGES/django.po,sha256=R5oUNDz0vTUiRaZrboRgqn4RZk54GFgAfWk7Hz3PnaU,17422 +django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo,sha256=GOfcPo6Tge73JsPGShWCmepOAvdGgEcdrVTUI-Fxjm4,4394 +django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po,sha256=6qIvrAmlBVY6KM56LkrAl51R9sL-Hnw4u4GNgCoqbRg,4930 +django/contrib/admin/locale/eu/LC_MESSAGES/django.mo,sha256=sutek-yBmp0yA673dBWQLg11138KCcAn9cBdfl_oVJw,16336 +django/contrib/admin/locale/eu/LC_MESSAGES/django.po,sha256=uR2eY8Y6gS95UYOpd-OjjwFzOVfGCl3QOuWnH3QFCr4,17702 +django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo,sha256=bZHiuTFj8MNrO3AntBAY5iUhmCa6LSluGLYw504RKWg,4522 +django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po,sha256=eMpM70UTWIiCDigCgYVOZ9JKQ2IidYZxYcUWunvG8js,5051 +django/contrib/admin/locale/fa/LC_MESSAGES/django.mo,sha256=sf4By8eUwoXQLf20Bg_xbeeBziWQCJJHD6qSPCNI2l8,19770 +django/contrib/admin/locale/fa/LC_MESSAGES/django.po,sha256=AdPkTplO72E7NU4wvTmPNQfmwrPiHSIMPkcd4OS53n0,21261 +django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo,sha256=VXKiFMQnm3YrvanPhoV24y3O_y4BQe8DaXLa6bDiuQQ,5267 +django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po,sha256=4PJhPH1EiAMiiQo2W0g_jiXp6p7g7FYT973T80rhVng,5915 +django/contrib/admin/locale/fi/LC_MESSAGES/django.mo,sha256=Z3e3GBZbSdFeiRnyzF2DVMl9_j3bZKJuhZgUF9GVYAI,15778 +django/contrib/admin/locale/fi/LC_MESSAGES/django.po,sha256=OAwpDK8PcIQm7881rJ-MPlmiCTp_HyTUcQOmrgBgJz8,17475 +django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo,sha256=ez7WTtE6OE878kSxqXniDOQY-wdURYEfxYQXBQJTVpg,4561 +django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po,sha256=rquknGvUFlWNLcrOc1wwhAPn63PZA48qBN8oWiINiQ0,5045 +django/contrib/admin/locale/fr/LC_MESSAGES/django.mo,sha256=bSAXY7oPKdic9x7yx4i3y7cGo-_d6tyDHVyyutqZyww,18139 +django/contrib/admin/locale/fr/LC_MESSAGES/django.po,sha256=GcEWqkBxYO3jMaTt85KhTu-Y3UEmtfx7umqU17TD7kw,19427 +django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo,sha256=d88Y9SbyW_Sy-9O-Jh2Q9rZmsHm7fPK_R4KLVG6sdtA,4694 +django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po,sha256=xa0hANFCx2bR98OHtpYWny5ggyJhzX2C01umaCxqqQE,5228 +django/contrib/admin/locale/fy/LC_MESSAGES/django.mo,sha256=mWnHXGJUtiewo1F0bsuJCE_YBh7-Ak9gjTpwjOAv-HI,476 +django/contrib/admin/locale/fy/LC_MESSAGES/django.po,sha256=oSKEF_DInUC42Xzhw9HiTobJjE2fLNI1VE5_p6rqnCE,10499 +django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po,sha256=efBDCcu43j4SRxN8duO5Yfe7NlpcM88kUPzz-qOkC04,2864 +django/contrib/admin/locale/ga/LC_MESSAGES/django.mo,sha256=cIOjVge5KC37U6g-0MMaP5p8N0XJxzK6oJqWNUw9jfI,15075 +django/contrib/admin/locale/ga/LC_MESSAGES/django.po,sha256=Qx1D0cEGIIPnO10I_83IfU3faEYpp0lm-KHg48lJMxE,17687 +django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo,sha256=G-9VfhiMcooTbAI1IMvbvUwj_h_ttNyxGS89nIgrpw4,5247 +django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po,sha256=DsDMYhm5PEpFBBGepf2iRD0qCkh2r45Y4tIHzFtjJAo,5920 +django/contrib/admin/locale/gd/LC_MESSAGES/django.mo,sha256=5D_bPlVaOxjWUAddUHgltyfItGzTcI1LcvWF_KQyVTk,18685 +django/contrib/admin/locale/gd/LC_MESSAGES/django.po,sha256=MSWiN5WA9ffzb1DjSAyvi3xXrUx6gGs71wcN4K9fi7c,20005 +django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo,sha256=GwtvzwSO_lE6yHEdZLNl3Vzxk0E8KAjhJyIn6aSyc0s,5304 +django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po,sha256=RJv2lrB2UamHczIbCzzLBnEWodMLqgNX9ihofmL6XRo,5809 +django/contrib/admin/locale/gl/LC_MESSAGES/django.mo,sha256=_9JW7LdCw2on4M1oz3Iyl_VMrhrw_0oVIQl4h_rCX6g,13246 +django/contrib/admin/locale/gl/LC_MESSAGES/django.po,sha256=xqdcVwIX5zPxq471crW0yxcOYcbZVaRwKiKx-MAGiqk,16436 +django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo,sha256=YkT7l3U9ffSGqXmu6S41Ex0r7tbK-0BKH5lS6O8PAGs,3279 +django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po,sha256=EDccOpm1mpT8mVRvu5LBsq8nao50oP1V7aKEnuRmtF8,4803 +django/contrib/admin/locale/he/LC_MESSAGES/django.mo,sha256=vq46ZBK67ZmRBQaY9oP_5rTKzXGDIfYWEs_zM1eR_Nw,18109 +django/contrib/admin/locale/he/LC_MESSAGES/django.po,sha256=eVzhoSXRetzNkVi7BGIN3t6MjEf-I-DUiG3n1-4AOKA,19428 +django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo,sha256=14LdNNgLoQTtB49gWUMp32cywmgMRIwizD19p3CAgE4,5157 +django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po,sha256=rUeEfJBwQNNSrkxCpjPu3tKD2sc8DrBto4QOdUiuuY0,5737 +django/contrib/admin/locale/hi/LC_MESSAGES/django.mo,sha256=EogCHT8iAURSuE34kZ0kwEIoz5VjgUQUG2eAIqDxReU,18457 +django/contrib/admin/locale/hi/LC_MESSAGES/django.po,sha256=NcTFbFyHhWOIieUpzIVL7aSDWZ8ZNmfnv5gcxhON1zc,21770 +django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo,sha256=yCUHDS17dQDKcAbqCg5q8ualaUgaa9qndORgM-tLCIw,4893 +django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po,sha256=U9rb5tPMICK50bRyTl40lvn-tvh6xL_6o7xIPkzfKi0,6378 +django/contrib/admin/locale/hr/LC_MESSAGES/django.mo,sha256=3TR3uFcd0pnkDi551WaB9IyKX1aOazH7USxqc0lA0KQ,14702 +django/contrib/admin/locale/hr/LC_MESSAGES/django.po,sha256=qcW7tvZoWZIR8l-nMRexGDD8VlrOD7l5Fah6-ecilMk,17378 +django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo,sha256=KR34lviGYh1esCkPE9xcDE1pQ_q-RxK1R2LPjnG553w,3360 +django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po,sha256=w7AqbYcLtu88R3KIKKKXyRt2gwBBBnr-ulxONWbw01I,4870 +django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo,sha256=XHsj09Def_LHYiMI7RjzT7VpGDeIvwqmv0gYV2ZqBZ8,17121 +django/contrib/admin/locale/hsb/LC_MESSAGES/django.po,sha256=DFH_4aBFtXEPdEryBPb0JFdDUR9Emiwhn-utzypnxrI,18331 +django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo,sha256=w_gJCnB7aw68UzYwwMPmBaj5pHpXRx6AQgFdQkKsgZ4,5087 +django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po,sha256=t4S38sEiNXswarvPUFKzP4rms0AfQgydGv7W4qIa9eQ,5564 +django/contrib/admin/locale/hu/LC_MESSAGES/django.mo,sha256=ULwLhtByV9bx_pQXhoW32O7tjbt9ArP6vRyI_3s7CdE,17234 +django/contrib/admin/locale/hu/LC_MESSAGES/django.po,sha256=Cx3lgfZy6-aZCnPWSdDzp06BFtdAlxvmhhbw8Ywc2eg,18769 +django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo,sha256=l3pXOmu379TYVMwPD-6rT4YtBff_MQPtbzfKz1C-jzY,4524 +django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po,sha256=fVI0wNWgfHJ68cM9RgQgdQ_2KpaZRMDfNeSiXjJ5Dlg,5105 +django/contrib/admin/locale/hy/LC_MESSAGES/django.mo,sha256=Dcx9cOsYBfbgQgoAQoLhn_cG1d2sKGV6dag4DwnUTaY,18274 +django/contrib/admin/locale/hy/LC_MESSAGES/django.po,sha256=CnQlRZ_DUILMIqVEgUTT2sufAseEKJHHjWsYr_LAqi8,20771 +django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo,sha256=ttfGmyEN0-3bM-WmfCge2lG8inubMPOzFXfZrfX9sfw,5636 +django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po,sha256=jf94wzUOMQaKSBR-77aijQXfdRAqiYSeAQopiT_8Obc,6046 +django/contrib/admin/locale/ia/LC_MESSAGES/django.mo,sha256=SRKlr8RqW8FQhzMsXdA9HNqttO3hc0xf4QdQJd4Dy8c,11278 +django/contrib/admin/locale/ia/LC_MESSAGES/django.po,sha256=pBQLQsMinRNh0UzIHBy3qEW0etUWMhFALu4-h-woFyE,15337 +django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo,sha256=28MiqUf-0-p3PIaongqgPQp2F3D54MLAujPslVACAls,3177 +django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po,sha256=CauoEc8Fiowa8k6K-f9N8fQDle40qsgtXdNPDHBiudQ,4567 +django/contrib/admin/locale/id/LC_MESSAGES/django.mo,sha256=h21lPTonOu1Qp4BIJQ-dy8mr3rHAbyS79t1BFz2naeY,16276 +django/contrib/admin/locale/id/LC_MESSAGES/django.po,sha256=d_EJWjK5wvo764pURlXKEqBcADbY-lKN6Rg3P_wPXA8,17743 +django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo,sha256=IsrbImLKoye0KHfaJ1ddPh2TXtvcuoq5aRskTAUwRhE,4407 +django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po,sha256=o7zQcSD2QkF_DVwHOKS4jxZi7atLPsQQIoG_szM4xFg,4915 +django/contrib/admin/locale/io/LC_MESSAGES/django.mo,sha256=URiYZQZpROBedC-AkpVo0q3Tz78VfkmwN1W7j6jYpMo,12624 +django/contrib/admin/locale/io/LC_MESSAGES/django.po,sha256=y0WXY7v_9ff-ZbFasj33loG-xWlFO8ttvCB6YPyF7FQ,15562 +django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464 +django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po,sha256=WLh40q6yDs-8ZG1hpz6kfMQDXuUzOZa7cqtEPDywxG4,2852 +django/contrib/admin/locale/is/LC_MESSAGES/django.mo,sha256=3DukqXnJmKgOOB0wUooWXwvwPe5f4-MozYEQoUoJPog,16703 +django/contrib/admin/locale/is/LC_MESSAGES/django.po,sha256=CgwhINvJQjk22LkckLd6CnAn7Yd12XALzfi_EcGkb88,18053 +django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo,sha256=H7vMdlTEejHg-lYjxS11mVa4o7alXMxcAIfsxrM0gpc,4559 +django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po,sha256=AU39DyYbiu8fMzJhL9cVFc2bfqKcm2Si6HHGGtbewpw,5109 +django/contrib/admin/locale/it/LC_MESSAGES/django.mo,sha256=lRyBpAkHnXkYEJFua2-NVO5ggQu0h_SnnrMyZAG6BfM,16882 +django/contrib/admin/locale/it/LC_MESSAGES/django.po,sha256=AF4U5mPjraniCRtgMlfpdNCc-_oLTHOG_uXxyWmZCjQ,18547 +django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo,sha256=QHgE9TmlziDuR3XooAHLhp6fAYrBHj7JkZGwZMeutQM,4537 +django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po,sha256=5VcM_25w9a2d_H57l24q5mJUXMlhLF0WjuAdiWOG2MI,5171 +django/contrib/admin/locale/ja/LC_MESSAGES/django.mo,sha256=jKU98XwvgSo0TtfLPoDza7qXI1_P81D_ZJNH1IyILl8,18026 +django/contrib/admin/locale/ja/LC_MESSAGES/django.po,sha256=FYrAGD67fiKMhcBQTFaACtXtUEYemK1I6KvEOAJxcGY,19389 +django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo,sha256=e1psnvl2PWI9RpwDRY0UV5cqn_jhz_ms6OlKUQnEBt0,4688 +django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po,sha256=5-4GlF-p7REuRaMvRGBTuTMJW6slZLqdR-UrEEEJjtA,5098 +django/contrib/admin/locale/ka/LC_MESSAGES/django.mo,sha256=M3FBRrXFFa87DlUi0HDD_n7a_0IYElQAOafJoIH_i60,20101 +django/contrib/admin/locale/ka/LC_MESSAGES/django.po,sha256=abkt7pw4Kc-Y74ZCpAk_VpFWIkr7trseCtQdM6IUYpQ,23527 +django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo,sha256=GlPU3qUavvU0FXPfvCl-8KboYhDOmMsKM-tv14NqOac,5516 +django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po,sha256=jDpB9c_edcLoFPHFIogOSPrFkssOjIdxtCA_lum8UCs,6762 +django/contrib/admin/locale/kab/LC_MESSAGES/django.mo,sha256=9QKEWgr8YQV17OJ14rMusgV8b79ZgOOsX4aIFMZrEto,3531 +django/contrib/admin/locale/kab/LC_MESSAGES/django.po,sha256=cSOG_HqsNE4tA5YYDd6txMFoUul8d5UKvk77ZhaqOK0,11711 +django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo,sha256=nqwZHJdtjHUSFDJmC0nPNyvWcAdcoRcN3f-4XPIItvs,1844 +django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po,sha256=tF3RH22p2E236Cv6lpIWQxtuPFeWOvJ-Ery3vBUv6co,3713 +django/contrib/admin/locale/kk/LC_MESSAGES/django.mo,sha256=f2WU3e7dOz0XXHFFe0gnCm1MAPCJ9sva2OUnWYTHOJg,12845 +django/contrib/admin/locale/kk/LC_MESSAGES/django.po,sha256=D1vF3nqANT46f17Gc2D2iGCKyysHAyEmv9nBei6NRA4,17837 +django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo,sha256=cBxp5pFJYUF2-zXxPVBIG06UNq6XAeZ72uRLwGeLbiE,2387 +django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po,sha256=Y30fcDpi31Fn7DU7JGqROAiZY76iumoiW9qGAgPCCbU,4459 +django/contrib/admin/locale/km/LC_MESSAGES/django.mo,sha256=eOe9EcFPzAWrTjbGUr-m6RAz2TryC-qHKbqRP337lPY,10403 +django/contrib/admin/locale/km/LC_MESSAGES/django.po,sha256=RSxy5vY2sgC43h-9sl6eomkFvxClvH_Ka4lFiwTvc2I,17103 +django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo,sha256=Ja8PIXmw6FMREHZhhBtGrr3nRKQF_rVjgLasGPnU95w,1334 +django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po,sha256=LH4h4toEgpVBb9yjw7d9JQ8sdU0WIZD-M025JNlLXAU,3846 +django/contrib/admin/locale/kn/LC_MESSAGES/django.mo,sha256=955iPq05ru6tm_iPFVMebxwvZMtEa5_7GaFG1mPt6HU,9203 +django/contrib/admin/locale/kn/LC_MESSAGES/django.po,sha256=xMGtsVCItMTs18xdFQHELdVZKCwTNNyKfb8n1ARcFws,16053 +django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo,sha256=dHzxizjDQWiZeRfBqnVFcK1yk1-M5p1KOfQ1ya9TMVU,1872 +django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po,sha256=MqRj6ozyr1e9-qNORUTJXNahe6SL3ee3OveSm3efV4g,4214 +django/contrib/admin/locale/ko/LC_MESSAGES/django.mo,sha256=QPGscKJBPqozdK_lYtILBUttY2NLs4p3KIhKfdMM5cU,17667 +django/contrib/admin/locale/ko/LC_MESSAGES/django.po,sha256=lQe6vM9XYTRqFuc5FWXMg05_nJpFJj3sLMCh23COZVg,19319 +django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo,sha256=ziL3F4ymY5DChHli3ZJqvkOz1YLzDgDbLl_mL3meomY,4493 +django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po,sha256=0oGHxYVwtQEz0sTPE1DoksK-LRTQOyuLzcT2tqcU15U,5029 +django/contrib/admin/locale/lb/LC_MESSAGES/django.mo,sha256=8GGM2sYG6GQTQwQFJ7lbg7w32SvqgSzNRZIUi9dIe6M,913 +django/contrib/admin/locale/lb/LC_MESSAGES/django.po,sha256=PZ3sL-HvghnlIdrdPovNJP6wDrdDMSYp_M1ok6dodrw,11078 +django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po,sha256=fiMelo6K0_RITx8b9k26X1R86Ck2daQXm86FLJpzt20,2862 +django/contrib/admin/locale/lt/LC_MESSAGES/django.mo,sha256=SpaNUiaGtDlX5qngVj0dWdqNLSin8EOXXyBvRM9AnKg,17033 +django/contrib/admin/locale/lt/LC_MESSAGES/django.po,sha256=tHnRrSNG2ENVduP0sOffCIYQUn69O6zIev3Bb7PjKb0,18497 +django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo,sha256=vZtnYQupzdTjVHnWrtjkC2QKNpsca5yrpb4SDuFx0_0,5183 +django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po,sha256=dMjFClA0mh5g0aNFTyHC8nbYxwmFD0-j-7gCKD8NFnw,5864 +django/contrib/admin/locale/lv/LC_MESSAGES/django.mo,sha256=VauwSDEOnY1XH0NNOhJfnzFdz4vw4xSapQaDqsiFhSI,16691 +django/contrib/admin/locale/lv/LC_MESSAGES/django.po,sha256=HykB4RmG-9ahpk0ExSk7m6IGQo7h7b6kawLPwg-WUIY,18096 +django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo,sha256=eZAxtfdIDk07LhKgbWG0nAdHLn88mmWXbFX9ZvPPZdo,4903 +django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po,sha256=xCNNC4beYfhQWx8iC-qS8Hx7J5BGi2O2zq7Y2tQ96J4,5418 +django/contrib/admin/locale/mk/LC_MESSAGES/django.mo,sha256=AKTJbZ-w8TBsv9R7lyWGmzrkVg-nWGDHtZdHTC9KoyM,15194 +django/contrib/admin/locale/mk/LC_MESSAGES/django.po,sha256=85M2DfBMEAzjYCKPH4vJFcSmGEXG7IsCXJUoFDS6BVE,19095 +django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo,sha256=ZyQQ49zqs8GiS73XBaSd5l3Rh3vOA0glMpX98GH6nhU,5633 +django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po,sha256=bWph0TVgwC-Fmlof8_4SiR21uCFm9rftp59AMZ3WIYA,6188 +django/contrib/admin/locale/ml/LC_MESSAGES/django.mo,sha256=Z4V5iPKuJ8Y2ELZOt7E0HTFKPE_A0Jio7bdpwHN3aXc,24622 +django/contrib/admin/locale/ml/LC_MESSAGES/django.po,sha256=kmzKDsaZjEMwkfpS7kuGosBtLu_paMso_gcp7uFQ6GQ,27000 +django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo,sha256=JNbys0qhoL4w7yi0McbvY6p-yBVHusGOTykHgvPaIoU,7547 +django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po,sha256=R29OQ5pqJkeFOTwh-Fm1T1ZSN4APdJAkPhGY5MYcdL8,8084 +django/contrib/admin/locale/mn/LC_MESSAGES/django.mo,sha256=tsi1Lc7qcDD5dTjMQKy-9Hq-V2Akzyi994QY8wVaqNk,20545 +django/contrib/admin/locale/mn/LC_MESSAGES/django.po,sha256=T9WZQ5k0M9_pLCf5A-fDFIXKgN9fRisfsoZNnm4u-jk,21954 +django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo,sha256=H7fIPdWTK3_iuC0WRBJdfXN8zO77p7-IzTviEUVQJ2U,5228 +django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po,sha256=vJIqqVG34Zd7q8-MhTgZcXTtl6gukOSb6egt70AOyAc,5757 +django/contrib/admin/locale/mr/LC_MESSAGES/django.mo,sha256=UAxGnGliid2PTx6SMgIuHVfbCcqVvcwC4FQUWtDuSTc,468 +django/contrib/admin/locale/mr/LC_MESSAGES/django.po,sha256=TNARpu8Pfmu9fGOLUP0bRwqqDdyFmlh9rWjFspboTyc,10491 +django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po,sha256=uGe9kH2mwrab97Ue77oggJBlrpzZNckKGRUMU1vaigs,2856 +django/contrib/admin/locale/my/LC_MESSAGES/django.mo,sha256=xvlgM0vdYxZuA7kPQR7LhrLzgmyVCHAvqaqvFhKX9wY,3677 +django/contrib/admin/locale/my/LC_MESSAGES/django.po,sha256=zdUCYcyq2-vKudkYvFcjk95YUtbMDDSKQHCysmQ-Pvc,12522 +django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo,sha256=1fS9FfWi8b9NJKm3DBKETmuffsrTX-_OHo9fkCCXzpg,3268 +django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po,sha256=-z1j108uoswi9YZfh3vSIswLXu1iUKgDXNdZNEA0yrA,5062 +django/contrib/admin/locale/nb/LC_MESSAGES/django.mo,sha256=0u3-bzPhkEo7UqaySnw8m1S_iI4FAgLlN2wKkPOPuWk,15980 +django/contrib/admin/locale/nb/LC_MESSAGES/django.po,sha256=5IczKWtpLRqnXvChpXS1CvAr72auWDXO1thqJwuxthU,17451 +django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo,sha256=M9-bGaylF_ZgF9PN_IcNSlwmJASh9UCp-XTt70OI-GE,4375 +django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po,sha256=RfP3ay2dJ7jIVoOw923KR9yJUGKs6SBQiiprgB-rFJ0,4915 +django/contrib/admin/locale/ne/LC_MESSAGES/django.mo,sha256=vkGnGxQFgLe9TFxEalAj-wLa0mos4ylG24clOGzRWr8,15710 +django/contrib/admin/locale/ne/LC_MESSAGES/django.po,sha256=qWDifq6NZdeyYS2uM7OFuypxeWCmBkCZBKhVEOAvd5g,19569 +django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo,sha256=mJdtpLT9k4vDbN9fk2fOeiy4q720B3pLD3OjLbAjmUI,5362 +django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po,sha256=N91RciTV1m7e8-6Ihod5U2xR9K0vrLoFnyXjn2ta098,6458 +django/contrib/admin/locale/nl/LC_MESSAGES/django.mo,sha256=_dfwOBM6jpKP-NVTewn-yhb10YPUSJNfkieouoQpTBA,16899 +django/contrib/admin/locale/nl/LC_MESSAGES/django.po,sha256=Gl0MVAnfdxvTGVi5KfT0QMdOb-XTa1dfUefEUQrdmrY,18555 +django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo,sha256=KXsase5eqXsGCYUWtbliFqwb1P4B2L-NEx_3XjoextM,4560 +django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po,sha256=GhPkHMPNkOgBXBWGdnp35DCO0PjI8C29lmFR2eRL8IM,5383 +django/contrib/admin/locale/nn/LC_MESSAGES/django.mo,sha256=zKIlvBLMvoqrXO90TqPJcdTEXkVweUWpz6ynsWeg8mU,10943 +django/contrib/admin/locale/nn/LC_MESSAGES/django.po,sha256=-CFana0-PPFwv1jcdyjYuLK2OYOPva-xxMjlVhvsoCw,14999 +django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo,sha256=A7MT59BoyOSiM7W0phx8LLKQyH4Q8AEu6jUsBjUBOoE,3120 +django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po,sha256=tCXUV4F6FhMa-K0SBw9lQ0U2KY5kcMpGzT7jzKSvceo,4578 +django/contrib/admin/locale/os/LC_MESSAGES/django.mo,sha256=c51PwfOeLU2YcVNEEPCK6kG4ZyNc79jUFLuNopmsRR8,14978 +django/contrib/admin/locale/os/LC_MESSAGES/django.po,sha256=yugDw7iziHto6s6ATNDK4yuG6FN6yJUvYKhrGxvKmcY,18188 +django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo,sha256=0gMkAyO4Zi85e9qRuMYmxm6JV98WvyRffOKbBVJ_fLQ,3806 +django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po,sha256=skiTlhgUEN8uKk7ihl2z-Rxr1ZXqu5qV4wB4q9qXVq0,5208 +django/contrib/admin/locale/pa/LC_MESSAGES/django.mo,sha256=n31qIjOVaJRpib4VU4EHZRua3tBnBM6t_ukH9Aj37GM,10185 +django/contrib/admin/locale/pa/LC_MESSAGES/django.po,sha256=MR6ZOTypay-qCvafn0J0rZF06rOsWz771CLDD1qvISE,16446 +django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo,sha256=vdEMaVBuJtK1bnECgbqd_dS06PcmN7cgdv0hKGH5UKA,1207 +django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po,sha256=xU8tchSEH3MCLFSu4-71oVCR8pliKmILqFevM13IQ5M,3717 +django/contrib/admin/locale/pl/LC_MESSAGES/django.mo,sha256=VpWWSPgGGsZtgvHgszjimnVmOWdXKEBuQsKN6hOyjOA,17253 +django/contrib/admin/locale/pl/LC_MESSAGES/django.po,sha256=nFkJky4j_fGwF4VdMIUS-K_2Q0rNHiY4VePWKCMAAIU,18942 +django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo,sha256=Zd-DLFCYf8r5QEw5eZnjANshfmrxq8u0Aib4t1qI5-Y,5065 +django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po,sha256=-MiZMJeuoyfD17nrkEIc3uLYSWZ2na7lqWWuJq-vDQk,5852 +django/contrib/admin/locale/pt/LC_MESSAGES/django.mo,sha256=MTFRTfUKot-0r-h7qtggPe8l_q0JPAzVF9GzdtB9600,16912 +django/contrib/admin/locale/pt/LC_MESSAGES/django.po,sha256=gzRkbl35HZ-88mlA1Bdj1Y-CUJ752pZKCUIG-NNw2os,18436 +django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo,sha256=D6-8QwX6lsACkEcYXq1tK_4W2q_NMc6g5lZQJDZRFHw,4579 +django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po,sha256=__a9WBgO_o0suf2xvMhyRk_Wkg2tfqNHmJOM5YF86sk,5118 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo,sha256=HmhkCzoAc6pAVM8YEuq1Tp4Cjqlyh86kxP0canx3Lk4,16942 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po,sha256=s99qPqPZGFDA75vstQ8pGTb_DQ2gyZX1nfUg4Z_bdhI,19180 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo,sha256=a7KPhFtcwVa7PX1XK1cgF3HOOcRSkT-XYSiRCFyFQFQ,4619 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po,sha256=ENE4HAsUNcYJq2KvLrfBOLuxr1chEyEi39OSlaQU98g,5256 +django/contrib/admin/locale/ro/LC_MESSAGES/django.mo,sha256=cxCSHovSF-TTgFinvBLp-2higIfyFf964OQUVGkJCmA,16893 +django/contrib/admin/locale/ro/LC_MESSAGES/django.po,sha256=y7DK9RPD3dUw9nNeibefjogQ05MOgrXn7w0I4eERG2U,18391 +django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo,sha256=pb_H0zmtdSjvpacoMnLZuZy3B2PSeUGteL6-MoldLpg,4686 +django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po,sha256=OlT5yOHT3MK7M0ZXy467gJfsqNSLgUlUnXqQBhfHy3I,5387 +django/contrib/admin/locale/ru/LC_MESSAGES/django.mo,sha256=W2UrhegkVjKehjb74quRYDiITHWLWkLG8aizytjRHJM,21726 +django/contrib/admin/locale/ru/LC_MESSAGES/django.po,sha256=9QKhB52AqWhGSr7pKcPdezpy_oCm3vW371mhdroF6RU,23383 +django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo,sha256=LnAupy3FSz9zH6axWnvh1wtW27O5e8N6Apl5jFeFj0k,6560 +django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po,sha256=BMFEVFmYedhcRprutX1VBnoD6OuC79hExVt-h4Ep-ng,7360 +django/contrib/admin/locale/sk/LC_MESSAGES/django.mo,sha256=sLMYAOOz90NPuWJJyQdA_pbK31-mdrtsL68d8Xd7Bps,16288 +django/contrib/admin/locale/sk/LC_MESSAGES/django.po,sha256=PDyJDjKEHPc_-y55W_FimqaHVTLDUey4-XHfqn8feAU,18228 +django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo,sha256=0FifzbnJmubmNNUsePBcbM2MwExXmtnt699xtY2_uzo,4677 +django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po,sha256=F9lWj_7Ir6-VBYosrtbQnkxHR_tOVFO1V3VUnvfWNeI,5382 +django/contrib/admin/locale/sl/LC_MESSAGES/django.mo,sha256=iqcg1DYwwDVacRAKJ3QR4fTmKQhRGXU4WkwYco9ASaA,16136 +django/contrib/admin/locale/sl/LC_MESSAGES/django.po,sha256=VeIJDh1PojyUy-4AdPcVezbQ-XVWqp04vFE_u3KU2tU,17508 +django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo,sha256=0jqGv5lgcfyxh9pdnB0Nt7e0bF2G0nO-iVWJjKwyZqI,4724 +django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po,sha256=1DEs7obfCCf-hNM2nIkMizcRcq1KoLBvngMaXLlozUo,5269 +django/contrib/admin/locale/sq/LC_MESSAGES/django.mo,sha256=1_iu_GK92628JkM76OU2RxR_aOFYRlLB0P80rMAdh8w,17209 +django/contrib/admin/locale/sq/LC_MESSAGES/django.po,sha256=EaukgWd8bVgVTUM8oXYgOa9yRt6xkTL3j5TP6z8S-aE,18422 +django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo,sha256=P7gNS9PhofwSuwPzYQRQtYC69NhumYO8YNFVi51vStc,4549 +django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po,sha256=LbSmumf9GglYFGM60mFvPFoEayWFVL72rPJ1WUYO_d8,5052 +django/contrib/admin/locale/sr/LC_MESSAGES/django.mo,sha256=7OEFKgKl8bhP5sYQQ3GWGuof8fgFUvWI16fjZLL-X4A,20855 +django/contrib/admin/locale/sr/LC_MESSAGES/django.po,sha256=TRKZvSIH8dDUsq8AQsneQmcsDndxUFftOq9jzgCOTdg,22213 +django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo,sha256=No_O4m32WrmnovKZ7CgusTPZOiMRDvMusQNS9FAg_pg,5221 +django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po,sha256=lj1TZE6I5YK0KUBD7ZVGMLV97sYwlIIwZjC5WQyxSyE,5729 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=8wcRn4O2WYMFJal760MvjtSPBNoDgHAEYtedg8CC7Ao,12383 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po,sha256=N4fPEJTtUrQnc8q1MioPZ2a7E55YXrE-JvfAcWZubfA,16150 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo,sha256=GxyIGHkAtSwuAnIgnjBlO6t_w589LloYIQw4zB-QiGM,4337 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po,sha256=GyBQ4gDVdhcmwbYod5MFhO-c8XVhv5eHyA6hyxOz_ZA,4862 +django/contrib/admin/locale/sv/LC_MESSAGES/django.mo,sha256=jW8NONkrEqE5RRnXiPWsOM2gK3DUXBX4XAQmmN5PLwk,16453 +django/contrib/admin/locale/sv/LC_MESSAGES/django.po,sha256=l1L93L3z8gcrtjJAHn2MpTVVjXdLnSbQ4sCI-odgVbI,18018 +django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo,sha256=D7Bo8rFeCT6daVSdjr8QWdmDpN5UYdFnwviV3zZW0_o,4500 +django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po,sha256=qdD922JzhXE5WK54ZYtgq9uL80n1tum0q5tEo1kHBqY,5182 +django/contrib/admin/locale/sw/LC_MESSAGES/django.mo,sha256=Mtj7jvbugkVTj0qyJ_AMokWEa2btJNSG2XrhpY0U1Mc,14353 +django/contrib/admin/locale/sw/LC_MESSAGES/django.po,sha256=ElU-s0MgtNKF_aXdo-uugBnuJIDzHqMmy1ToMDQhuD0,16419 +django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo,sha256=p0pi6-Zg-qsDVMDjNHO4aav3GfJ3tKKhy6MK7mPtC50,3647 +django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po,sha256=lZFP7Po4BM_QMTj-SXGlew1hqyJApZxu0lxMP-YduHI,4809 +django/contrib/admin/locale/ta/LC_MESSAGES/django.mo,sha256=ZdtNRZLRqquwMk7mE0XmTzEjTno9Zni3mV6j4DXL4nI,10179 +django/contrib/admin/locale/ta/LC_MESSAGES/django.po,sha256=D0TCLM4FFF7K9NqUGXNFE2KfoEzx5IHcJQ6-dYQi2Eg,16881 +django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo,sha256=2-37FOw9Bge0ahIRxFajzxvMkAZL2zBiQFaELmqyhhY,1379 +django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po,sha256=Qs-D7N3ZVzpZVxXtMWKOzJfSmu_Mk9pge5W15f21ihI,3930 +django/contrib/admin/locale/te/LC_MESSAGES/django.mo,sha256=aIAG0Ey4154R2wa-vNe2x8X4fz2L958zRmTpCaXZzds,10590 +django/contrib/admin/locale/te/LC_MESSAGES/django.po,sha256=-zJYrDNmIs5fp37VsG4EAOVefgbBNl75c-Pp3RGBDAM,16941 +django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo,sha256=VozLzWQwrY-USvin5XyVPtUUKEmCr0dxaWC6J14BReo,1362 +django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po,sha256=HI8IfXqJf4I6i-XZB8ELGyp5ZNr-oi5hW9h7n_8XSaQ,3919 +django/contrib/admin/locale/th/LC_MESSAGES/django.mo,sha256=EVlUISdKOvNkGMG4nbQFzSn5p7d8c9zOGpXwoHsHNlY,16394 +django/contrib/admin/locale/th/LC_MESSAGES/django.po,sha256=OqhGCZ87VX-WKdC2EQ8A8WeXdWXu9mj6k8mG9RLZMpM,20187 +django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo,sha256=ukj5tyDor9COi5BT9oRLucO2wVTI6jZWclOM-wNpXHM,6250 +django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po,sha256=3L5VU3BNcmfiqzrAWK0tvRRVOtgR8Ceg9YIxL54RGBc,6771 +django/contrib/admin/locale/tr/LC_MESSAGES/django.mo,sha256=YaDIbCb4RzPfGcY4TnML-n1NXQQF9khW_2AzWOGmNX4,17082 +django/contrib/admin/locale/tr/LC_MESSAGES/django.po,sha256=FR5CPq4JZpGEjsrTMw-86_MbzpU9HD9yeNdGtUN5JGQ,18571 +django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo,sha256=HloEnoj4v6zgadQECNcBetxwiaxEJITxrcKxsfPcXbM,4509 +django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po,sha256=ykX8Klbr5UDwJYAt2IVZR92PehrF9DtQ4E6hbeccVFc,5078 +django/contrib/admin/locale/tt/LC_MESSAGES/django.mo,sha256=ObJ8zwVLhFsS6XZK_36AkNRCeznoJJwLTMh4_LLGPAA,12952 +django/contrib/admin/locale/tt/LC_MESSAGES/django.po,sha256=VDjg5nDrLqRGXpxCyQudEC_n-6kTCIYsOl3izt1Eblc,17329 +django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo,sha256=Sz5qnMHWfLXjaCIHxQNrwac4c0w4oeAAQubn5R7KL84,2607 +django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po,sha256=_Uh3yH_RXVB3PP75RFztvSzVykVq0SQjy9QtTnyH3Qk,4541 +django/contrib/admin/locale/udm/LC_MESSAGES/django.mo,sha256=2Q_lfocM7OEjFKebqNR24ZBqUiIee7Lm1rmS5tPGdZA,622 +django/contrib/admin/locale/udm/LC_MESSAGES/django.po,sha256=L4TgEk2Fm2mtKqhZroE6k_gfz1VC-_dXe39CiJvaOPE,10496 +django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po,sha256=ZLYr0yHdMYAl7Z7ipNSNjRFIMNYmzIjT7PsKNMT6XVk,2811 +django/contrib/admin/locale/uk/LC_MESSAGES/django.mo,sha256=Wc1E8kLHTeu0GRg1vkj_kataySFcnrVk_oCLYMUpa6M,20988 +django/contrib/admin/locale/uk/LC_MESSAGES/django.po,sha256=n7NqZajp0dDWD9r5o1Aot8pQski1gtp6eZziqHg0gEU,22827 +django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo,sha256=YL-bL4CeoOsvcXKY30FsakS6A8kG0egbvDf2yYdFfU8,5930 +django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po,sha256=lKHsuFkzp8_evIKm8mVyZKIf99EIo8BsLYkIiyN29UY,6654 +django/contrib/admin/locale/ur/LC_MESSAGES/django.mo,sha256=HvyjnSeLhUf1JVDy759V_TI7ygZfLaMhLnoCBJxhH_s,13106 +django/contrib/admin/locale/ur/LC_MESSAGES/django.po,sha256=BFxxLbHs-UZWEmbvtWJNA7xeuvO9wDc32H2ysKZQvF4,17531 +django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo,sha256=eYN9Q9KKTV2W0UuqRc-gg7y42yFAvJP8avMeZM-W7mw,2678 +django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po,sha256=Nj-6L6axLrqA0RHUQbidNAT33sXYfVdGcX4egVua-Pk,4646 +django/contrib/admin/locale/uz/LC_MESSAGES/django.mo,sha256=DDx1mG7tVtj0J0sN42GHoKTGiUToB1rmL7aauuwIGuQ,2959 +django/contrib/admin/locale/uz/LC_MESSAGES/django.po,sha256=yflG-4sZhpIrqnOcLDcsiK2_JcFHVtB6soPokXhU-d0,12289 +django/contrib/admin/locale/vi/LC_MESSAGES/django.mo,sha256=nkSrBQaktbMGWr8IMNoPoOVQBAIR1GJF13BvKLu2CeM,14860 +django/contrib/admin/locale/vi/LC_MESSAGES/django.po,sha256=FxcEsnT3-FvPXjnHp9y51jFPILUgSx27egwtwU_wbS0,17847 +django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo,sha256=M_wqHg1NO-I7xfY-mMZ29BqUAqGzlizgJ3_DIGBWOUc,3733 +django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po,sha256=d3YtQhNuCqtfMO3u5-6zoNhhGBNYkoUhTrxz7I3PRkQ,5018 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=rCQfiVkB9807tUwp69DfXRpiCbOknSaP6mzgdyM0xIg,15531 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po,sha256=p18ukLOOh1pW6AmdV8MxoUd7TePeunCTpPbXszY1kBY,17403 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo,sha256=ypJV8qNOfp5NDdC4bciIoSST2txTnQZWFJD0bIUNd78,4245 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po,sha256=p48E5tOcZbks7JipYsUOg3FWuG_6mP2wSWJeb5otzHQ,4982 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=kEKX-cQPRFCNkiqNs1BnyzEvJQF-EzA814ASnYPFMsw,15152 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po,sha256=iH3w7Xt_MelkZefKi8F0yAWN6QGdQCJBz8VaFY4maUg,16531 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo,sha256=yFwS8aTJUAG5lN4tYLCxx-FLfTsiOxXrCEhlIA-9vcs,4230 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po,sha256=C4Yk5yuYcmaovVs_CS8YFYY2iS4RGi0oNaUpTm7akeU,4724 +django/contrib/admin/migrations/0001_initial.py,sha256=0p5TjterT80FOrCxhO7YqZPag-xnyRin_mQ01Qj579o,1893 +django/contrib/admin/migrations/0002_logentry_remove_auto_add.py,sha256=_7XFWubtQ7NG0eQ02MqtxXQmjBmYc6Od5rwcAiT1aCs,554 +django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py,sha256=UCS9mPrkhZ5YL_9RMSrgA7uWDTzvLzqSLq_LSXVXimM,539 +django/contrib/admin/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/static/admin/css/autocomplete.css,sha256=MGqRzeZ1idtUnRM7MnEHw7ClmOVe_Uo7SdLoudapNMU,8440 +django/contrib/admin/static/admin/css/base.css,sha256=yLG2UJK97FigjWpkXt2RUKn3tl7E6GkcL5l9ofptVqs,16378 +django/contrib/admin/static/admin/css/changelists.css,sha256=olDl6CmbM7KjciHG2_bnzsHiI9QV0GvKPet5UaN2M2o,6190 +django/contrib/admin/static/admin/css/dashboard.css,sha256=M_duSlzrcec1HXMWlLXJQkFw4m6v2dgB3PRaJlWQo14,412 +django/contrib/admin/static/admin/css/fonts.css,sha256=SnBl3KjeUZqRmZw3F0iNm1YpqFhjrNC_fNN0H2TkuYc,423 +django/contrib/admin/static/admin/css/forms.css,sha256=qKCiNqApMyCIUgHvCOQp9YC5t54Gm3-zRmeBGXu9dj8,8518 +django/contrib/admin/static/admin/css/login.css,sha256=X9WSvQoBXD7zH-Vo2UZS1zHobGILGAKmtlXoGKPfRck,1233 +django/contrib/admin/static/admin/css/responsive.css,sha256=r8myJFtbj9FCEup3tmf1VUt6-eiE94GpzTb8Sjh0Mek,18052 +django/contrib/admin/static/admin/css/responsive_rtl.css,sha256=vlnAVsfb5I8QSoN5GsrabXa65EGTKCKfvcU8NbBZxDA,1921 +django/contrib/admin/static/admin/css/rtl.css,sha256=c3MpnLYEUwyE8vcBXF3dYdgisrEYcFM0MsPePGJGnIQ,3808 +django/contrib/admin/static/admin/css/widgets.css,sha256=07bggssvMwUfddIsf1O4y-d68t3KE-SFURYzGy_8iAU,10322 +django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124 +django/contrib/admin/static/admin/css/vendor/select2/select2.css,sha256=cxYyFTq8AlfZjXRMeAy8KPHpmNVSpUNhnxQwNfUT0Lo,17591 +django/contrib/admin/static/admin/css/vendor/select2/select2.min.css,sha256=MeSf8Rmg3b5qLFlijnpxk6l-IJkiR91__YGPCrCmogU,15180 +django/contrib/admin/static/admin/fonts/LICENSE.txt,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560 +django/contrib/admin/static/admin/fonts/README.txt,sha256=E4rvl9Y9cvKx2wpkrgQZjhaKfRhEUG8pNLCoZoBq-rE,214 +django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff,sha256=sXZ6DD5d-zpQCe_uREX_FdY2LpKFRh4Xve0Ybx6UVvA,86184 +django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff,sha256=GIJzScf-vUuNAaqQfGfqm4ARJCB4MmskcDl4RU_fNRo,85692 +django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff,sha256=munWVF19fYI_ipQBDbd8Gg_3Hjcei7FY3xy5g5UWJQc,85876 +django/contrib/admin/static/admin/img/LICENSE,sha256=0RT6_zSIwWwxmzI13EH5AjnT1j2YU3MwM9j3U19cAAQ,1081 +django/contrib/admin/static/admin/img/README.txt,sha256=XqN5MlT1SIi6sdnYnKJrOiJ6h9lTIejT7nLSY-Y74pk,319 +django/contrib/admin/static/admin/img/calendar-icons.svg,sha256=gbMu26nfxZphlqKFcVOXpcv5zhv5x_Qm_P4ba0Ze84I,1094 +django/contrib/admin/static/admin/img/icon-addlink.svg,sha256=kBtPJJ3qeQPWeNftvprZiR51NYaZ2n_ZwJatY9-Zx1Q,331 +django/contrib/admin/static/admin/img/icon-alert.svg,sha256=aXtd9PA66tccls-TJfyECQrmdWrj8ROWKC0tJKa7twA,504 +django/contrib/admin/static/admin/img/icon-calendar.svg,sha256=_bcF7a_R94UpOfLf-R0plVobNUeeTto9UMiUIHBcSHY,1086 +django/contrib/admin/static/admin/img/icon-changelink.svg,sha256=clM2ew94bwVa2xQ6bvfKx8xLtk0i-u5AybNlyP8k-UM,380 +django/contrib/admin/static/admin/img/icon-clock.svg,sha256=k55Yv6R6-TyS8hlL3Kye0IMNihgORFjoJjHY21vtpEA,677 +django/contrib/admin/static/admin/img/icon-deletelink.svg,sha256=06XOHo5y59UfNBtO8jMBHQqmXt8UmohlSMloUuZ6d0A,392 +django/contrib/admin/static/admin/img/icon-no.svg,sha256=QqBaTrrp3KhYJxLYB5E-0cn_s4A_Y8PImYdWjfQSM-c,560 +django/contrib/admin/static/admin/img/icon-unknown-alt.svg,sha256=LyL9oJtR0U49kGHYKMxmmm1vAw3qsfXR7uzZH76sZ_g,655 +django/contrib/admin/static/admin/img/icon-unknown.svg,sha256=ePcXlyi7cob_IcJOpZ66uiymyFgMPHl8p9iEn_eE3fc,655 +django/contrib/admin/static/admin/img/icon-viewlink.svg,sha256=NL7fcy7mQOQ91sRzxoVRLfzWzXBRU59cFANOrGOwWM0,581 +django/contrib/admin/static/admin/img/icon-yes.svg,sha256=_H4JqLywJ-NxoPLqSqk9aGJcxEdZwtSFua1TuI9kIcM,436 +django/contrib/admin/static/admin/img/inline-delete.svg,sha256=Ni1z8eDYBOveVDqtoaGyEMWG5Mdnt9dniiuBWTlnr5Y,560 +django/contrib/admin/static/admin/img/search.svg,sha256=HgvLPNT7FfgYvmbt1Al1yhXgmzYHzMg8BuDLnU9qpMU,458 +django/contrib/admin/static/admin/img/selector-icons.svg,sha256=0RJyrulJ_UR9aYP7Wbvs5jYayBVhLoXR26zawNMZ0JQ,3291 +django/contrib/admin/static/admin/img/sorting-icons.svg,sha256=cCvcp4i3MAr-mo8LE_h8ZRu3LD7Ma9BtpK-p24O3lVA,1097 +django/contrib/admin/static/admin/img/tooltag-add.svg,sha256=fTZCouGMJC6Qq2xlqw_h9fFodVtLmDMrpmZacGVJYZQ,331 +django/contrib/admin/static/admin/img/tooltag-arrowright.svg,sha256=GIAqy_4Oor9cDMNC2fSaEGh-3gqScvqREaULnix3wHc,280 +django/contrib/admin/static/admin/img/gis/move_vertex_off.svg,sha256=ou-ppUNyy5QZCKFYlcrzGBwEEiTDX5mmJvM8rpwC5DM,1129 +django/contrib/admin/static/admin/img/gis/move_vertex_on.svg,sha256=DgmcezWDms_3VhgqgYUGn-RGFHyScBP0MeX8PwHy_nE,1129 +django/contrib/admin/static/admin/js/SelectBox.js,sha256=-pJXLh1cmNQoO6vSjCzs3r1SSRW79LwhHRIuqb6e-iI,5753 +django/contrib/admin/static/admin/js/SelectFilter2.js,sha256=_SPqDVo_06ja9FzTyYafUMDW3hLnsuxKY78RuaGOC0g,12318 +django/contrib/admin/static/admin/js/actions.js,sha256=jjrnOzXX5kmAFiVPaaMhqQ3uZjs6xDR1MGPKyXh32wE,6766 +django/contrib/admin/static/admin/js/actions.min.js,sha256=wqvSFm3FGV8KnCfsA2XgxsJM7-QhBT4kLAMFKnCBMrY,3195 +django/contrib/admin/static/admin/js/autocomplete.js,sha256=LgImTP2VTEaJKqxBqvJKRa-mfenZBjeVg7LnHetaxQU,1124 +django/contrib/admin/static/admin/js/calendar.js,sha256=8ej_F8SBtoFhNmmoLwONpyVwOJHd5JBWUMe1mwgxpwE,7777 +django/contrib/admin/static/admin/js/cancel.js,sha256=fudRj-OLtq41WGdkpAsE6-gsUBpsgMivJC7n2E_zEPs,409 +django/contrib/admin/static/admin/js/change_form.js,sha256=J-beGDyqR6uyb3iW_OI9Yo0ZFrfwJVqNFFDeL7-njqA,712 +django/contrib/admin/static/admin/js/collapse.js,sha256=gRoPWDtJq4PljhSPGILwk-YueznqwMbZQRij_yhGUVs,2239 +django/contrib/admin/static/admin/js/collapse.min.js,sha256=IZVWAF7T9I3OFywxNZ2EbxmSA0TYUSF9S_v50PBk7bM,1063 +django/contrib/admin/static/admin/js/core.js,sha256=ye5tl2f2tTJiHQAk_SUwBhFN1S1TDWY9talbJVLJjhY,5723 +django/contrib/admin/static/admin/js/inlines.js,sha256=TlTcEud29JXh9Vo5HhSwFhrDqRIHgL_HueMu94RGnRs,13773 +django/contrib/admin/static/admin/js/inlines.min.js,sha256=tIyxuDmA9nP2zK5teePHHQwC-y3eza4uXvzSRl85_pw,4833 +django/contrib/admin/static/admin/js/jquery.init.js,sha256=Gr-yEd61wY6uBDMhOaVq-amfciz7EZhMvJfai_WxrHE,363 +django/contrib/admin/static/admin/js/popup_response.js,sha256=7XyHe9SDYkB8OMxF7fhL6N5l4Oxf-gXqzGlpPK63tcc,569 +django/contrib/admin/static/admin/js/prepopulate.js,sha256=jBV6-T9KNi-JCczRf_bOkA9tjjWpIYbXxRhG_vNbadc,1530 +django/contrib/admin/static/admin/js/prepopulate.min.js,sha256=j3KNblf8i0JjoV5w5HAd4vEDogZ421xolYqGrzdSC9o,379 +django/contrib/admin/static/admin/js/prepopulate_init.js,sha256=uD3_ZoYfJ62mcSgqzHfePA3Y5jaOBjxn7SU0LuYFgEE,495 +django/contrib/admin/static/admin/js/urlify.js,sha256=J8yD9aydZ2CB6R5zVi4KJG88m7zo5l1ScpkQqdSlJr4,8941 +django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js,sha256=DzwWjiobR0kPtla-Q_XHmCAEvjGnCfEWITtnQ7kkgqE,20232 +django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js,sha256=9LIqZywmXGzPkc8sRJEmAsYzScCMZDM_xZrjtIjuPyE,6918 +django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt,sha256=H_YDEY79sxN5lWfLSkCFlJVDhPQIQ8pvKcWW9bH4kH0,1095 +django/contrib/admin/static/admin/js/vendor/jquery/jquery.js,sha256=WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU,280364 +django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js,sha256=CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo,88145 +django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124 +django/contrib/admin/static/admin/js/vendor/select2/select2.full.js,sha256=AiFy5pfZzZtPlbrDYkjCOz1udN1-hMOqmkAflDG-kMM,167489 +django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js,sha256=_IUDRcglIrROpUfaxqKxg4kthVduVKB0mvd7PwtlmAk,76720 +django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js,sha256=RmwHokYHTmc15fhjtdYaGkUaHfUqHOlTmM1EZZRg1xI,901 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js,sha256=KGqchMbYRS6ji18dSq3nrC__AF3LwD44en01bLGkrOQ,941 +django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js,sha256=unqJvCOzxNP9GlbxLWhhb7dO-uL02XlxAT5YBaD7-d4,761 +django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js,sha256=JLLK2buyOfnEYSMj5MctrOXsbN8_ZUCMhsSheEQP6rc,992 +django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js,sha256=bSUrKL9bN4cdWOfh08ba9SWQqTPbP83ahX364WOvuFk,1327 +django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js,sha256=DEPuko5rheLgenqkJwQ8R2_cvjNe6zFUdFz17G4NNrc,995 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js,sha256=8-z-v6GmjO-cdUsXGzgX-6BHCWFwSkhJ74v-I7nJnGw,934 +django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js,sha256=8JnKsG6VtofhzdkqTr4viZimU5QRkO-QxeMSrPTgjPA,1316 +django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js,sha256=xvVl7sDzqJN1BK94UQxBMlxXJdG7bm5nW3fW5PIMAbg,864 +django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js,sha256=9niCOGH16zYC6MlikRifwwZSGyQfDQRXUjh40dgQ1hc,915 +django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js,sha256=nlRof7yQ1Cihzv7t3czF54gP6j6L4ZDBm_0taPbvuMk,1067 +django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js,sha256=5iOZglK90b_Uo6qt4b2kvitQe0kMHAdkJ0-YzlnHBEQ,1217 +django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js,sha256=UvxT3dsdsWXruh0jGLoomRxR6BoGxgN6DkhhPYu7e84,879 +django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js,sha256=37nOmVoNb94LgWxcEuec3QlWPaop3JeaFzpUdNKpuFQ,956 +django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js,sha256=UsaG06ChMiyyHoIMRCHikMU2EAR1dwzSDvQVT6JUeOo,831 +django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js,sha256=ZT7_oGoxkrl-1wu_uaF5HSPqnAc8z5mWasUJVn3jJpk,902 +django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js,sha256=TIVzdsnYl9rsmK3LjMABGBSSZurgd1pjX-4Xs6c5bGg,1078 +django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js,sha256=pqhszQeS-6XqT8QPpSTaWZo66FjHqAvB18YqylQ0OTg,839 +django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js,sha256=CO3yucH1HMM98aAmokQM5eOj6n0NmfcwbeKC5bvTTZU,946 +django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js,sha256=PwVKb7YqKlShErfwlAnr0pqFA9qwkQxkuA6hDFD9k-w,948 +django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js,sha256=vLsgN5DSTR09-pVdxtNjnZjdppkjEQF76h-4RQWb0PQ,1018 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js,sha256=PRFRFAxlFOTUX5J-UeTJmPjs0sOP6EBjv6KXWa2qEmA,1219 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js,sha256=28UdYmEx-YNPFYEhQZM3bdmB11IOdqdJYylHa6JefpE,892 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js,sha256=jgxCZtNJmupuxPhpFzFuEq10mSmfus-koJB36yYW0qM,1068 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js,sha256=N-SN6BsqJck8spUxk1znK6-EtWQQFufVwN2x-14OPuk,867 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js,sha256=loXr8kwwS1QU-ldfTnqOP_Sk_zfq-2d6AiFWIfB3r5Y,1083 +django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js,sha256=eT0-iEJWPjjwxHe4bNa_eDAiEDLZY7_VyLrAKOQ_1xI,804 +django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js,sha256=LUgXKrVsPguU8Lx0wGTClbd9sOv2D2ENPGpK7keTsug,833 +django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js,sha256=E7UU78Rjydm5I330G0FVZZrNn4WLv-vUYYKwG1vdiok,937 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js,sha256=9T1U_9Xg1-zBom5zWOgKQgkBxtIi0yuqRvG1ELlydaQ,917 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js,sha256=2QznN8_BtvlnV1EitncTn5HqwnP8kRXioflG4vbFKPc,1250 +django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js,sha256=AP5nm6IeDYUcrOCr73Jky_t_DmiHA1ICG51HCDFTNnw,1143 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js,sha256=PoEozkmbBxTfBAWeveqIvuKsjT3bzOOv3s07WWzqeTI,910 +django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js,sha256=RUCxvabNX3vvgJOfQ7tSP2nfBignjXftlwNl0klcOrw,975 +django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js,sha256=JWrEfwnZmOyJXCx1OjgTPDH3mt_cfPMlBs31QKzEPvE,930 +django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js,sha256=rVR1HGmgG5j_PR3TZ7_Ym0Vj54PfRZl99mJpm1t71Is,1062 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js,sha256=hHYUgqQ2_2WY9rwQuSOt8i6ynT_lnSxilgHXprN98g8,847 +django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js,sha256=EoPMfWj-Bi1G5LIY96pL_MJhUefg8DilIws7Pwqxm2I,814 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js,sha256=10sQqfWPy-_k1nboEgx-7IlftyyFjXyNNVVoFyiJB5I,1392 +django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js,sha256=05xohdbg1Pr6w8xN702G9ueLKf2dADMWSuVVOjicFM0,952 +django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js,sha256=_SC7VPR066M_LqabOxVHPkys_y_vYRqs5Vz08j2oioM,987 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js,sha256=4ry1gvEm73E6TuBWq_TZqyiWxf2pkuZJmrcKQgadaQ8,1084 +django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js,sha256=pVS-8ItZhJR_g5W8oCw3aN78sywI1NtnIAeRUmBQ-Sg,911 +django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js,sha256=CyRvT9zjVfxTIH2iNu0F_Vc7Iqp-jpKGzYvWV0Mnt0I,917 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js,sha256=BNkD2KabEfh3p9khReI6wVHtbbwKfAHIFU2RS8Ap4Ko,973 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js,sha256=yhhRtI8-FQBkrx0ULscjebkG7KHJ-GqLUZb5-P-vhas,1201 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js,sha256=jSzXHZJU9vmrHIm9qWP5zQQGdIpqUH_FEWZySvHn358,1330 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js,sha256=04lb2Octy4Zdl8YQcum-vClyjEOxNx_obmZiiCxtzqc,949 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js,sha256=J3-zqkBBGVCn4SbhMJXkYvDtQjGGXwQZyjJW66lOM0I,938 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js,sha256=tv8gLUaIOxDI61LGDXvpfVRxm3Baa6_1ovIUkWCYg8s,1139 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js,sha256=a1Y55zma9TF7-ffET1RqDmSuuzgnk70aXYiH3MaJzA8,1010 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js,sha256=HeSsZ9wIFsSIQpQ4BHxKKfQydQ7kfilxbB8u7PcgD8M,841 +django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js,sha256=ACCvRIea__6YuQSp-xBL8NbWDMt3N3HmLkznDoYf_EU,1129 +django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js,sha256=JqlJD_-dxGGBg-sUC4uYDhbCtjFvVv1-ehRypD5XI-s,827 +django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js,sha256=Fz87aTG-lHkuCJTC3L-j5QMYNte715KD1ihzrAVf0Kc,831 +django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js,sha256=xN-5g3UUXdhIZ6k0-v5ygtlxQ5G4Vhndtk1Kox74HEM,1193 +django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js,sha256=OhACwripphB2hdKZ2hFIzY3BTe9FSkAZCOjlVoTc19Y,851 +django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js,sha256=1GLKN3NJ7CADKFcXX6rev45hIPPIyRekAX58y7i7-h8,823 +django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js,sha256=HI2qcDdrDqggOfJvSIk_vbIDYHMvvqahTLfDXOpfoYU,762 +django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt,sha256=tyAi9RwLIDwjSrjyBhtyJIkgOHWM469_UzZTr1MmRys,1103 +django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js,sha256=TjYx21bQgQXDFTdvSqSUh7S8TkYRjT4L4X-SlWNR8CE,128820 +django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js,sha256=E-Plu9EZfyt0PJCSYrCkHuPquVVj9V7g7jQklIOgGDU,62474 +django/contrib/admin/templates/admin/404.html,sha256=ToTD-wh6ofgtxYR_CemxiwZjnjn1JX2cQg9fdkCIxOk,270 +django/contrib/admin/templates/admin/500.html,sha256=oyoI3wpCN0_Uz1rChKtwFI1dy7IE6tXsFjZW465yWzI,531 +django/contrib/admin/templates/admin/actions.html,sha256=dLU-S_iMBWkrzc1LRJd3TKViD8lhHoGkl3ok8u4F-TI,1200 +django/contrib/admin/templates/admin/app_index.html,sha256=BSJsWtgum_H2hCxcb2xe-XJozbVOVpUBN_KTe8pcRts,385 +django/contrib/admin/templates/admin/base.html,sha256=2H2owQZumUnSZL6O80Z-wYYWKtUE1lwz4xQcBWKVmJ8,3656 +django/contrib/admin/templates/admin/base_site.html,sha256=1v0vGrcN4FNEIF_VBiQE6yf2HPdkKhag2_v0AUsaGmM,316 +django/contrib/admin/templates/admin/change_form.html,sha256=E-zUkd_ONrRG2BwHE9kHexGmKbzLhOIq16YYlgapMnE,3043 +django/contrib/admin/templates/admin/change_form_object_tools.html,sha256=jrTmQiU24E7srnWpjTkKABohw9LNoMevSqKSoS4GrqQ,395 +django/contrib/admin/templates/admin/change_list.html,sha256=Z3qYnsgVudK2kCyRgccQAaEN7MqtmWEnXzgEYadaxek,2983 +django/contrib/admin/templates/admin/change_list_object_tools.html,sha256=7usDFjSpWHUv3m4mjtRPOqgoY_heo3950PJvgvLCaC8,370 +django/contrib/admin/templates/admin/change_list_results.html,sha256=HlV3Tqxx6G4oTR8oGDP6lwEz22qrGM6VmTFLoDObww4,1569 +django/contrib/admin/templates/admin/date_hierarchy.html,sha256=I9Nj9WJb3JM_9ZBHrg4xIFku_a59U-KoqO5yuSaqVJQ,518 +django/contrib/admin/templates/admin/delete_confirmation.html,sha256=JLWMKx-DaLWCLHGzVhwRuG1TiEvaLDb-lMf9nm13IbA,2399 +django/contrib/admin/templates/admin/delete_selected_confirmation.html,sha256=G2pm-4NaG225tfOm4OKmPYac8JQwp9Pry0MJ1k-RDjA,2314 +django/contrib/admin/templates/admin/filter.html,sha256=A59SgwTTgEf2iYjV0IiDIixSZ7yCu1Fs66n0Vguu-NI,330 +django/contrib/admin/templates/admin/index.html,sha256=93dqxAcbz2-hHXPwaOQd0fiU7Ymb0abmBe65VTvg4BM,3188 +django/contrib/admin/templates/admin/invalid_setup.html,sha256=0zAsbUr37PEheJGnM5uA9K_y2spYiVKOoD0-3oev41U,439 +django/contrib/admin/templates/admin/login.html,sha256=-lORxVDc8VDNcfuKzMqIgJTL5bPttOnJC2TznlfbtFE,1870 +django/contrib/admin/templates/admin/object_history.html,sha256=9DAfz1ABn7s7HDwk8uhLuZ0AJW6ioM4DS28oEKRUGkQ,1448 +django/contrib/admin/templates/admin/pagination.html,sha256=T4ssv7ALQ776tE6NKMGFmYLfoBhi4ZeMya_Up91889A,553 +django/contrib/admin/templates/admin/popup_response.html,sha256=m_9AnbMHEhmLXcJHiep4cs5MW_bG_eN_0j5z4USB0Ks,358 +django/contrib/admin/templates/admin/prepopulated_fields_js.html,sha256=Q3QxBgVvxePpiz502FjSHOS3szSlHkvUQoPe8sF1YDs,245 +django/contrib/admin/templates/admin/search_form.html,sha256=Qq_vEbQup3hzfbuCmS8pyCfzMdnm_9NUZ5iJHfLl7_M,1020 +django/contrib/admin/templates/admin/submit_line.html,sha256=LOQvzN_sZIx96s4VqeNNABGEdkMlPAaVVGqE0lEoc24,1024 +django/contrib/admin/templates/admin/auth/user/add_form.html,sha256=tBTb3xWEwmaGEGOaUN_yuj9PjloYWE0jqDMFikSLemw,312 +django/contrib/admin/templates/admin/auth/user/change_password.html,sha256=qQhT2rSRdZK-VJ3Tc4H8gtAcWKh-Rsj2E7YWmEw5Hss,2339 +django/contrib/admin/templates/admin/edit_inline/stacked.html,sha256=MXJNlVb15IEdzc0LMBlS-GtkWpnjda6GV3FEU7u5BgM,2405 +django/contrib/admin/templates/admin/edit_inline/tabular.html,sha256=tJ8to1s6PJq6mM7fdsC1LYJ9akDq2MDjAsYSEKtICc0,4324 +django/contrib/admin/templates/admin/includes/fieldset.html,sha256=DgcBbVUfkho33IMZGEg42Xr9P5y3ZAefFzqkxf74v1Q,1787 +django/contrib/admin/templates/admin/includes/object_delete_summary.html,sha256=i_I2BADSutoccAxARIwbP4VRlDHsag-llDOi3kjcoXw,188 +django/contrib/admin/templates/admin/widgets/clearable_file_input.html,sha256=w6Lx3NII4fh2e6BNbJ-VahriO8FA9aOB7opUalGZPjs,568 +django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html,sha256=0-PzMOEe3KSRVOBeivruUc8nJRcziIqWO-DyU8pvgEE,346 +django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html,sha256=w18JMKnPKrw6QyqIXBcdPs3YJlTRtHK5HGxj0lVkMlY,54 +django/contrib/admin/templates/admin/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html,sha256=bif78V69e6H9kvo0YtWHPJYivYs1xlFNDPHPwZ-5pjc,1454 +django/contrib/admin/templates/admin/widgets/split_datetime.html,sha256=BQ9XNv3eqtvNqZZGW38VBM2Nan-5PBxokbo2Fm_wwCQ,238 +django/contrib/admin/templates/admin/widgets/url.html,sha256=Tf7PwdoKAiimfmDTVbWzRVxxUeyfhF0OlsuiOZ1tHgI,218 +django/contrib/admin/templates/registration/logged_out.html,sha256=9NdzlTMq7QQpj2ftUqZ7FPeHDv0KYbjETF8qMJVGGqI,374 +django/contrib/admin/templates/registration/password_change_done.html,sha256=ldLa6UAVgn_FiKQ9TkO2EZraTBZx1URJrRGOn-_VZJs,671 +django/contrib/admin/templates/registration/password_change_form.html,sha256=ld0sGVZX7uOz4SObhY4-c9inNNRS4jEArhgJ-llsOo8,2048 +django/contrib/admin/templates/registration/password_reset_complete.html,sha256=RD0DbFybLTVfHtkU4yN7HG3YXY-xs_BLVgl3vSB7czU,505 +django/contrib/admin/templates/registration/password_reset_confirm.html,sha256=a1jISSwO_3OkJD1-Q_20Sv4oB8NhEcn7dcQBcm9ipI8,1369 +django/contrib/admin/templates/registration/password_reset_done.html,sha256=VCQG9gou4547ZyGBRaP5rKntaOScOGYq-GsVxylv1cU,675 +django/contrib/admin/templates/registration/password_reset_email.html,sha256=TDjwuEcXMExZlJbRElq9wE_Lb93mRgHG61Hctax6oK4,584 +django/contrib/admin/templates/registration/password_reset_form.html,sha256=bZZ95tSFBT9KoP6IG8bAs_qt5G7KXG90z3F-xeMJqAY,968 +django/contrib/admin/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/templatetags/admin_list.py,sha256=kg-p7zcQRKDY_cAmqFhKUBoJMiuVBeUkEdz6Unb6G7U,18018 +django/contrib/admin/templatetags/admin_modify.py,sha256=yr73KRXuizBIiKrSsgf8jatziGrUTMF7vwfm4mHlAcg,4222 +django/contrib/admin/templatetags/admin_urls.py,sha256=b_RxDLR7yLBTMe-_ylzO-m0R3ITq3ZP_pnddRyM_Nos,1791 +django/contrib/admin/templatetags/base.py,sha256=54mdDPyCnaMS4N0WNgZBJakx_e1204CNSn68vaLP5Bg,1321 +django/contrib/admin/templatetags/log.py,sha256=mxV6mvfVJo0qRCelkjRBNWfrurLABhZvGQlcp5Bn4IU,2079 +django/contrib/admin/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/views/autocomplete.py,sha256=jlHKUvRt08x5GjluQ-t67x3qXoevrNVjAsx8bax0b5g,1904 +django/contrib/admin/views/decorators.py,sha256=J4wYcyaFr_-xY1ANl6QF4cFhOupRvjjmBotN0FshVYg,658 +django/contrib/admin/views/main.py,sha256=79oOLzifXfUfXNpXpMs04bDaTIG8qxAIZ9ZG7ZW913o,21695 +django/contrib/admindocs/__init__.py,sha256=oY-eBzAOwpf5g222-vlH5BWHpDzpkj_DW7_XGDj7zgI,69 +django/contrib/admindocs/apps.py,sha256=rV3aWVevgI6o8_9WY0yQ62O5CSMRRZrVwZFt1gpfKk0,216 +django/contrib/admindocs/middleware.py,sha256=AZpS3DbqX7jhGl3Va1ylGl7IXrRS-5xaBiDA8CLEyT0,1302 +django/contrib/admindocs/urls.py,sha256=zdHaV60yJMjuLqO9xU0H-j7hz1PmSsepEWZA2GH-eI0,1310 +django/contrib/admindocs/utils.py,sha256=Xq5bm1Gb9slu2doPJaPTNHiwWtxnMLj1ZCz1-bAbO28,8171 +django/contrib/admindocs/views.py,sha256=3p1uR4r0Gga1BfsVX2v2afV19Xe_VOSwTj9BF-e9swc,16619 +django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo,sha256=RnpPLulXkAXe6s5TmlkNbHWyK5R-0nGlOv-3TOFT_JU,702 +django/contrib/admindocs/locale/af/LC_MESSAGES/django.po,sha256=18HnMLlT8NzeujAJRPHGmwkKesl9Uy8Fllt3AP_lYgw,4608 +django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo,sha256=IoUExlNwqSYql6zMAuXcFt0cmkjMc_i0fb0qp7cBQlA,7286 +django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po,sha256=KT8AOJeiYBk4dyJCyLnHAQJcOP3Fjw6XHOjmHsJ9pEY,7924 +django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo,sha256=d4u-2zZXnnueWm9CLSnt4TRWgZk2NMlrA6gaytJ2gdU,715 +django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po,sha256=TUkc-Hm4h1kD0NKyndteW97jH6bWcJMFXUuw2Bd62qo,4578 +django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo,sha256=yWjmqVrGit7XjELYepZ9R48eOKma5Wau2RkkSSiJrgc,1687 +django/contrib/admindocs/locale/az/LC_MESSAGES/django.po,sha256=wGdq-g4u8ssHHvODJB-knjZdrP6noxRW9APn_kmOz7w,4993 +django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo,sha256=13T7uz8-xzRmaTNpB6Heu22WIl8KO2vTitm1EHZDr7k,8161 +django/contrib/admindocs/locale/be/LC_MESSAGES/django.po,sha256=mABAxE4F5vW5HcHhJexcJ394-hAT4EU0MCE6O_83zFs,8721 +django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo,sha256=n9GdBZljKJBmfups8Zt82lpHgEWvonacXztOS6qbAjM,7837 +django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po,sha256=SrmOtJ6nOi3lrgEwr-s76jYzN7lZs05dbEwh9OFxFHU,8692 +django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo,sha256=NOKVcE8id9G1OctSly4C5lm64CgEF8dohX-Pdyt4kCM,3794 +django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po,sha256=6M7LjIEjvDTjyraxz70On_TIsgqJPLW7omQ0Fz_zyfQ,6266 +django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo,sha256=UsPTado4ZNJM_arSMXyuBGsKN-bCHXQZdFbh0GB3dtg,1571 +django/contrib/admindocs/locale/br/LC_MESSAGES/django.po,sha256=SHOxPSgozJbOkm8u5LQJ9VmL58ZSBmlxfOVw1fAGl2s,5139 +django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo,sha256=clvhu0z3IF5Nt0tZ85hOt4M37pnGEWeIYumE20vLpsI,1730 +django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po,sha256=1-OrVWFqLpeXQFfh7JNjJtvWjVww7iB2s96dcSgLy90,5042 +django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo,sha256=0elCZBJul-zx5ofeQ7vu7hVYb5JEl5jo5vgSiKp2HOY,6661 +django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po,sha256=5owS4x9uNL5ZMbh38DFL9GpVZ3MzUtXEv8o7bJTDy7Q,7402 +django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo,sha256=ok-p0uXqy0I-nx0fKiVN1vqt4bq2psqP8KEpUHXEfds,6618 +django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po,sha256=cP2RDrCHb72nUmm5NNYHXrRid4HqC7EOR5Q2fokD_P0,7221 +django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo,sha256=sYeCCq0CMrFWjT6rKtmFrpC09OEFpYLSI3vu9WtpVTY,5401 +django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po,sha256=GhdikiXtx8Aea459uifQtBjHuTlyUeiKu0_rR_mDKyg,6512 +django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo,sha256=B4rF2QWO8lfQjjWDCVtUbwM6Ey7ks_bZHvrp4yRzwYk,6435 +django/contrib/admindocs/locale/da/LC_MESSAGES/django.po,sha256=mWlc9TNZO8YItwpJHxHuFzLZK3RLTYbulrDABgoOpvI,7077 +django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo,sha256=6KJ9OfmvE6yzBF-n6sboLq4vv_o0uhLeevUEAZj-uEo,6585 +django/contrib/admindocs/locale/de/LC_MESSAGES/django.po,sha256=y2kXww5nrZpLJZtWm45d1hUCCq2HeplU9hAtDiOj9qo,7097 +django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo,sha256=jJNiddLBOMe9oeadm1h4iDRUqaTmfbJ28fS3h141VCk,6836 +django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po,sha256=MQQidlh2Ljp0ChO92tVJ_gkbTC0kpEbNAMOC2F903qM,7314 +django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo,sha256=dJy15irtJqzPFc_yHS3LTeXYmPu0-bIlyrDPfbE5pSE,8598 +django/contrib/admindocs/locale/el/LC_MESSAGES/django.po,sha256=82wcERwp7_v3l66v3GKdlT-lVGhwGs8DK0184SbV3zk,9259 +django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/admindocs/locale/en/LC_MESSAGES/django.po,sha256=krsJxXU6ST_081sGrrghisx_nQ5xZtpImUxTvL68ad8,10686 +django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo,sha256=BQ54LF9Tx88m-pG_QVz_nm_vqvoy6pVJzL8urSO4l1Q,486 +django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po,sha256=ho7s1uKEs9FGooyZBurvSjvFz1gDSX6R4G2ZKpF1c9Q,5070 +django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo,sha256=xKGbswq1kuWCbn4zCgUQUb58fEGlICIOr00oSdCgtU4,1821 +django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po,sha256=No09XHkzYVFBgZqo7bPlJk6QD9heE0oaI3JmnrU_p24,4992 +django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo,sha256=cwozZwZY0TylDQe7JguENqwGIqVhq0PCHK0htOixhsA,6391 +django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po,sha256=WvbW_97wH7tBCbQqzDi0sr4hbsL74V621Bn7lFrMQ4U,6879 +django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo,sha256=OYjdorHASk8cvZfzh4S1tzsB8ukZZQqEP8CJ8ZZD_-w,6673 +django/contrib/admindocs/locale/es/LC_MESSAGES/django.po,sha256=0d-YNcIC4QxJ4c0J62mqCjz7CbrgZZx1J_E4t7PPk7M,7516 +django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo,sha256=8zlwejIMQwbC5NiLsf7lRkewsvO9u3fC5jmYZ71OukU,6656 +django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po,sha256=d7YyXquK8QLZEhAXIqDTvJHvScC7CU7XyKrHL9MVgx0,7250 +django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo,sha256=KFjQyWtSxH_kTdSJ-kNUDAFt3qVZI_3Tlpg2pdkvJfs,6476 +django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po,sha256=dwrTVjYmueLiVPu2yiJ_fkFF8ZeRntABoVND5H2WIRI,7038 +django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo,sha256=3hZiFFVO8J9cC624LUt4lBweqmpgdksRtvt2TLq5Jqs,1853 +django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po,sha256=gNmx1QTbmyMxP3ftGXGWJH_sVGThiSe_VNKkd7M9jOY,5043 +django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo,sha256=sMwJ7t5GqPF496w-PvBYUneZ9uSwmi5jP-sWulhc6BM,6663 +django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po,sha256=ZOcE0f95Q6uD9SelK6bQlKtS2c3JX9QxNYCihPdlM5o,7201 +django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo,sha256=cQwLB8r0hRdWCxp2P8atYGambrKLR18GorVlp_O995M,6402 +django/contrib/admindocs/locale/et/LC_MESSAGES/django.po,sha256=Q3hVcRl3jtexQufNAZWacz3F_VRL1IctRMXYxdXArNE,7009 +django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo,sha256=WHgK7vGaqjO4MwjBkWz2Y3ABPXCqfnwSGelazRhOiuo,6479 +django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po,sha256=718XgJN7UQcHgE9ku0VyFp7Frs-cvmCTO1o-xS5kpqc,7099 +django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo,sha256=5LnONa6ZHXFffSvhtIHOc-nnbltpgasyeZK8nUkoyIs,7533 +django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po,sha256=LqY_cJ3KiQ_SbRvn1gffAv4-8N64cpWuoMsJ53dm3UQ,8199 +django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo,sha256=-iPQyWSVn46CF-huqytiomENda1cM0VGAnnVRlwlezQ,6413 +django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po,sha256=AG_WPvp2-c8mQy_Gp4tUACvqN-ACKbr-jxMKb86ilKQ,6945 +django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo,sha256=suc16e51gGbi9t-J_JbCbJptu9FxBvCMdhYIdTd_fcE,6753 +django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po,sha256=-nb8hy4BNoP52I6QTsWT4VpzxkuhRd5qCAi4tdNIqNs,7322 +django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo,sha256=_xVO-FkPPoTla_R0CzktpRuafD9fuIP_G5N-Q08PxNg,476 +django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po,sha256=b3CRH9bSUl_jjb9s51RlvFXp3bmsmuxTfN_MTmIIVNA,5060 +django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo,sha256=PkY5sLKd7gEIE2IkuuNJXP5RmjC-D4OODRv6KCCUDX8,1940 +django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po,sha256=-l6VME96KR1KKNACVu7oHzlhCrnkC1PaJQyskOUqOvk,5211 +django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo,sha256=g_HxI2sDlCSI4QMkXmCM1BaBLyA_zm605-lrwWklIWI,6995 +django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po,sha256=8EmFRNWJ1zAdwlK6BMgYe6aw7KwGyDkdUujaYyZJxlI,7477 +django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo,sha256=CYtHrSyH_Lw0YxmmmndEnMPU-cw5TMr-8NHUjz6v7JM,2265 +django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po,sha256=0S2CJju3EIiEp6kqJIn0Jl1IyRAg2-5ovYMOW0YRtVA,5188 +django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo,sha256=mWWnjeFI5eoi-al_VB03RT-7LtP7VvdUKh9EJufU-9E,7006 +django/contrib/admindocs/locale/he/LC_MESSAGES/django.po,sha256=O1shu9ypDpw9zk4_2xyVnTRX6ivw6SpXbNet-xJHedg,7505 +django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo,sha256=sZhObIxqrmFu5Y-ZOQC0JGM3ly4IVFr02yqOOOHnDag,2297 +django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po,sha256=X6UfEc6q0BeaxVP_C4priFt8irhh-YGOUUzNQyVnEYY,5506 +django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo,sha256=fMsayjODNoCdbpBAk9GHtIUaGJGFz4sD9qYrguj-BQA,2550 +django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po,sha256=qi2IB-fBkGovlEz2JAQRUNE54MDdf5gjNJWXM-dIG1s,5403 +django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo,sha256=2-rS1sZ-IVX4MuRcV_8VNo1zRaZ7fatK6S0tOwPu2fo,6768 +django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po,sha256=rhB59Jq6A18aQ2IpX5UTLJyYp5p-Dew_IUadFd9fGSo,7291 +django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo,sha256=RbMTzsBSOD-KNkptea6qQDOLv8tMzpb3f1sF3DyjSPI,6663 +django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po,sha256=AbegfB3hV6AZuRXrKWuq30BL-goagusBUJ1xC1jzG7A,7282 +django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo,sha256=KklX2loobVtA6PqHOZHwF1_A9YeVGlqORinHW09iupI,1860 +django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po,sha256=Z7btOCeARREgdH4CIJlVob_f89r2M9j55IDtTLtgWJU,5028 +django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo,sha256=55ze7c7MwxHf27I9Q6n9h--pczff43TWeUiMPjRw2zY,6337 +django/contrib/admindocs/locale/id/LC_MESSAGES/django.po,sha256=N7NrFJdFTpiIjKDPWMpa1FyOVpxdqZ9QChzOVbws6kE,7027 +django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo,sha256=5t9Vurrh6hGqKohwsZIoveGeYCsUvRBRMz9M7k9XYY8,464 +django/contrib/admindocs/locale/io/LC_MESSAGES/django.po,sha256=SVZZEmaS1WbXFRlLLGg5bzUe09pXR23TeJtHUbhyl0w,5048 +django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo,sha256=pEr-_MJi4D-WpNyFaQe3tVKVLq_9V-a4eIF18B3Qyko,1828 +django/contrib/admindocs/locale/is/LC_MESSAGES/django.po,sha256=-mD5fFnL6xUqeW4MITzm8Lvx6KXq4C9DGsEM9kDluZ8,5045 +django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo,sha256=sQhq6CTX_y_qJHazR_-Sbk3CSvoLnJkgWBBBPEcH620,6450 +django/contrib/admindocs/locale/it/LC_MESSAGES/django.po,sha256=Qqorb6Rh44h-RdEqNTq2wRvbwR6lof3a1DEX88hZkmU,7163 +django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo,sha256=F4QwDOvTwCEzGa1E9PoX-VHkF5uJoUcHDVzGl-Fkvc0,7377 +django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po,sha256=Cljuw8oHQafTq2Uw6oDhM4C0Lt_JlQKFebkpkr_zWhA,7936 +django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo,sha256=w2cHLI1O3pVt43H-h71cnNcjNNvDC8y9uMYxZ_XDBtg,4446 +django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po,sha256=omKVSzNA3evF5Mk_Ud6utHql-Do7s9xDzCVQGQA0pSg,6800 +django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo,sha256=XTuWnZOdXhCFXEW4Hp0zFtUtAF0wJHaFpQqoDUTWYGw,1289 +django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po,sha256=lQWewMZncWUvGhpkgU_rtwWHcgAyvhIkrDfjFu1l-d8,4716 +django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo,sha256=mmhLzn9lo4ff_LmlIW3zZuhE77LoSUfpaMMMi3oyi38,1587 +django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po,sha256=72sxLw-QDSFnsH8kuzeQcV5jx7Hf1xisBmxI8XqSCYw,5090 +django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo,sha256=Fff1K0qzialXE_tLiGM_iO5kh8eAmQhPZ0h-eB9iNOU,1476 +django/contrib/admindocs/locale/km/LC_MESSAGES/django.po,sha256=E_CaaYc4GqOPgPh2t7iuo0Uf4HSQQFWAoxSOCG-uEGU,4998 +django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo,sha256=lisxE1zzW-Spdm7hIzXxDAfS7bM-RdrAG_mQVwz9WMU,1656 +django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po,sha256=fbiHUPdw_iXrOvgiIvPTJI3WPLD_T77VBfhqW6gjq1c,5178 +django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo,sha256=SZynW9hR503fzQCXSSeYvwwZChBF7ff3iHGMESh4ayA,6592 +django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po,sha256=E81VE22vrKjgxDthgxOIO3sxgTVmNf-gZMba9Qcr9yY,7352 +django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo,sha256=N0hKFuAdDIq5clRKZirGh4_YDLsxi1PSX3DVe_CZe4k,474 +django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po,sha256=B46-wRHMKUMcbvMCdojOCxqIVL5qVEh4Czo20Qgz6oU,5058 +django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo,sha256=KOnpaVeomKJIHcVLrkeRVnaqQHzFdYM_wXZbbqxWs4g,6741 +django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po,sha256=-uzCS8193VCZPyhO8VOi11HijtBG9CWVKStFBZSXfI4,7444 +django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo,sha256=mLEsWg3Oxk_r_Vz6CHrhx8oPQ4KzjA-rRxxDUwXUnSs,6448 +django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po,sha256=GjMKrHb-tgZpy6P9WmykioWoC6eubfWWVFB1b-Zdw4w,7079 +django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo,sha256=8H9IpRASM7O2-Ql1doVgM9c4ybZ2KcfnJr12PpprgP4,8290 +django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po,sha256=Uew7tEljjgmslgfYJOP9JF9ELp6NbhkZG_v50CZgBg8,8929 +django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo,sha256=bm4tYwcaT8XyPcEW1PNZUqHJIds9CAq3qX_T1-iD4k4,6865 +django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po,sha256=yNINX5M7JMTbYnFqQGetKGIXqOjGJtbN2DmIW9BKQ_c,8811 +django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo,sha256=KqdcvSpqmjRfA8M4nGB9Cnu9Auj4pTu9aH07XtCep3I,7607 +django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po,sha256=PGhlnzDKyAIRzaPCbNujpxSpf_JaOG66LK_NMlnZy6I,8316 +django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo,sha256=LDGC7YRyVBU50W-iH0MuESunlRXrNfNjwjXRCBdfFVg,468 +django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po,sha256=5cUgPltXyS2Z0kIKF5ER8f5DuBhwmAINJQyfHj652d0,5052 +django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo,sha256=AsdUmou0FjCiML3QOeXMdbHiaSt2GdGMcEKRJFonLOQ,1721 +django/contrib/admindocs/locale/my/LC_MESSAGES/django.po,sha256=c75V-PprKrWzgrHbfrZOpm00U_zZRzxAUr2U_j8MF4w,5189 +django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo,sha256=-bqqbUhhOeXaLpNaBPdvAOMVOcUycSn_LMc4KQZ3-cI,6346 +django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po,sha256=Pinb5oYBHqxDF0X5PXcZ4ypW2awXBE4q2p3eYVjTDRo,6935 +django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo,sha256=fWPAUZOX9qrDIxGhVVouJCVDWEQLybZ129wGYymuS-c,2571 +django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po,sha256=wb8pCm141YfGSHVW84FnAvsKt5KnKvzNyzGcPr-Wots,5802 +django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo,sha256=nZwZekyuJi9U8WhJHasdQ05O1Qky8kJzj3i6c4lj3rw,6463 +django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po,sha256=aP59hIiCQwGCKyHnoJXYJIChzYMbNFlb2IotTX4WBwU,7188 +django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo,sha256=Dx-A4dlDEoOKrtvis1mWfvwA2Urj-QAiKNmBy--v0oY,1662 +django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po,sha256=VAHAyol0YEaHd0TaGxaQuVUIR72QB3VUnB1ARtr-AWw,4974 +django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo,sha256=zSQBgSj4jSu5Km0itNgDtbkb1SbxzRvQeZ5M9sXHI8k,2044 +django/contrib/admindocs/locale/os/LC_MESSAGES/django.po,sha256=hZlMmmqfbGmoiElGbJg7Fp791ZuOpRFrSu09xBXt6z4,5215 +django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo,sha256=yFeO0eZIksXeDhAl3CrnkL1CF7PHz1PII2kIxGA0opQ,1275 +django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po,sha256=DA5LFFLOXHIJIqrrnj9k_rqL-wr63RYX_i-IJFhBuc0,4900 +django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo,sha256=qsj4xq56xSY9uehc4yEKLY6eCy8ouLLVhtR1F5wczKs,6617 +django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po,sha256=vP7encvqv_hUIxA5UR-SaeyGOSyEoMkHuAcv1p70klc,7461 +django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo,sha256=WcXhSlbGdJgVMvydkPYYee7iOQ9SYdrLkquzgIBhVWU,6566 +django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po,sha256=J98Hxa-ApyzRevBwcAldK9bRYbkn5DFw3Z5P7SMEwx0,7191 +django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo,sha256=7R52AIZM0NjoASXDmNLzv4x1fePtn9Fj3HJy3iSOsz4,6601 +django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po,sha256=gIraoQfr6DLWV418adqzym7untmC4fN42WT6X057_A4,7404 +django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo,sha256=acds_bjbaYzdm3M9hFFjyYpOr-UOeJcsUJpUYQ0M8eA,6555 +django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po,sha256=0VrifzAe3If3RxtMq_nvKa1TWfNOZLAgrYVF6WhGO_E,7331 +django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo,sha256=m6sfSIxFI5WJjxdSXZvDcm9A1xIxXJD2r5-UdeIbdlc,8569 +django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po,sha256=i0xEq4zScDKrmRJODgIewx_kUMkmeIPxPNE42Vw9AsI,9226 +django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo,sha256=Y9vQluxcGX9liYofnZb80iwgrdLs9WneKHX4-JX4evY,6644 +django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po,sha256=X9eNfQfHj-SBIEUq5beCU3l5hpVPgv5ktn7GHT__2Qc,7337 +django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo,sha256=FMg_s9ZpeRD42OsSF9bpe8pRQ7wP7-a9WWnaVliqXpU,6508 +django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po,sha256=JWO_WZAwBpXw-4FoB7rkWXGhi9aEVq1tH2fOC69rcgg,7105 +django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo,sha256=wsEQkUiModpe_gQC7aUMLiMPndXwbYJ_YxDd4hoSYG4,6542 +django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po,sha256=zTrVM6nqjeD80RoqOKKYCrPrzgR0wWFecPvhLn7-BTs,7096 +django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo,sha256=PyE8DXRYELzSs4RWh1jeADXOPrDEN3k-nLr8sbM1Ssw,3672 +django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po,sha256=ri7v9WHXORY-3Dl-YDKGsCFfQzH-a5y8t1vT6yziIyo,6108 +django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=au90IT43VR162L2jEsYqhRpso2dvOjpCPSCFiglokTc,1932 +django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po,sha256=tJ4tHLJj0tDaVZba3WIkI0kg95_jEYWTmqXD0rFb6T8,5140 +django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo,sha256=FsErCRG8EAsZB7DhFxnvU_GeAv9gy5VC0gOYgV7-teA,6417 +django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po,sha256=1sPLsQ6XXpmeIvqtKTFrsYpD39tg1ijy37iaBEmsq5Y,7042 +django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo,sha256=pyJfGL7UdPrJAVlCB3YimXxTjTfEkoZQWX-CSpDkcWc,1808 +django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po,sha256=SIywrLX1UGx4OiPxoxUYelmQ1YaY2LMa3dxynGQpHp8,4929 +django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo,sha256=8SjQ9eGGyaZGhkuDoZTdtYKuqcVyEtWrJuSabvNRUVM,1675 +django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po,sha256=k593yzVqpSQOsdpuF-rdsSLwKQU8S_QFMRpZXww__1A,5194 +django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo,sha256=eAzNpYRy_G1erCcKDAMnJC4809ITRHvJjO3vpyAC_mk,1684 +django/contrib/admindocs/locale/te/LC_MESSAGES/django.po,sha256=oDg_J8JxepFKIe5m6lDKVC4YWQ_gDLibgNyQ3508VOM,5204 +django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo,sha256=bHK49r45Q1nX4qv0a0jtDja9swKbDHHJVLa3gM13Cb4,2167 +django/contrib/admindocs/locale/th/LC_MESSAGES/django.po,sha256=_GMgPrD8Zs0lPKQOMlBmVu1I59yXSV42kfkrHzeiehY,5372 +django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo,sha256=BHI6snNVjIk_lB3rkySECcLe5iOSojQuDIZ3udSnAIQ,6659 +django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po,sha256=aKRTEYTRTg1RTSIcXBlvy0RGXmdkqCOcRF9TamUH0EA,7307 +django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo,sha256=pQmAQOPbrBVzBqtoQ0dsFWFwC6LxA5mQZ9QPqL6pSFw,1869 +django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po,sha256=NCLv7sSwvEficUOSoMJlHGqjgjYvrvm2V3j1Gkviw80,5181 +django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo,sha256=hwDLYgadsKrQEPi9HiuMWF6jiiYUSy4y-7PVNJMaNpY,618 +django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po,sha256=29fpfn4p8KxxrBdg4QB0GW_l8genZVV0kYi50zO-qKs,5099 +django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo,sha256=8LrLmRaZCxJL76RqROdH49rLsvq2TVuMTfuhsp8Wfjg,8449 +django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po,sha256=uxziDeiYiDJ6TVk_fiquHe-6pxrGBtgK8ZRIn92KuJQ,9279 +django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo,sha256=VNg9o_7M0Z2LC0n3_-iwF3zYmncRJHaFqqpxuPmMq84,1836 +django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po,sha256=QTg85c4Z13hMN_PnhjaLX3wx6TU4SH4hPTzNBfNVaMU,5148 +django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo,sha256=F6dyo00yeyUND_w1Ocm9SL_MUdXb60QQpmAQPto53IU,1306 +django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po,sha256=JrVKjT848Y1cS4tpH-eRivFNwM-cUs886UEhY2FkTPw,4836 +django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=ofyr93DAtNADnsn3OWY5fo8Rh6VL8w9DRJXeUe2zod8,6110 +django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po,sha256=bMvp2QdcvV36p7SOvqGgCE6ov1nPyU-EDiHJzNVGTHI,6761 +django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=7c2QywaTzF_GX8T2PUknQ_PN5s0Cx37_cO-walIg8mk,4725 +django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po,sha256=uX-3zu8RQdntg__qYBweKtcuBgLsXPUYApf4bQx9eSU,6153 +django/contrib/admindocs/templates/admin_doc/bookmarklets.html,sha256=9scOsHLEQJyuqIEK-r44D4M9qzvMUE6GpgOjf1tl6sQ,1249 +django/contrib/admindocs/templates/admin_doc/index.html,sha256=o1Z-Z6Dx8jzLwjihNnhROUOUKK_ILALjWGlMYz4U8u8,1313 +django/contrib/admindocs/templates/admin_doc/missing_docutils.html,sha256=LA8fyI_q_kRmE0e99XgiIDry3GRQ7ZjAu9EYBuCLT3Q,734 +django/contrib/admindocs/templates/admin_doc/model_detail.html,sha256=OfrSMc1vE_qItQrHO6GBBkwlhOQKex03ogvJJSyr2Jg,1824 +django/contrib/admindocs/templates/admin_doc/model_index.html,sha256=ow10WgNZUa6fUCp23ZmvR-kVdYUL29i3HBJ_iwlezfw,1322 +django/contrib/admindocs/templates/admin_doc/template_detail.html,sha256=QFf9It7jPY6mKly10XyepiKkE74X-vxfyIoJn9EsCSg,1005 +django/contrib/admindocs/templates/admin_doc/template_filter_index.html,sha256=QB9_QWIvHCGACzOo6yPOZtKIoKsJM8XLVgWhb5nJxmc,1747 +django/contrib/admindocs/templates/admin_doc/template_tag_index.html,sha256=rAyUTvECyomyB9u2er8oJE_FIMbQOd1auABqEHIupzE,1703 +django/contrib/admindocs/templates/admin_doc/view_detail.html,sha256=4mNkUt1_Q8ZGsvsZ1XMirPWNzJyptYMXZVIdPo9UVMc,896 +django/contrib/admindocs/templates/admin_doc/view_index.html,sha256=ewSVys3o1hzMjKmHJFZHqBdASsJnV6BJDlvnRuAMrs4,1682 +django/contrib/auth/__init__.py,sha256=CT_pcpqtNCJ5juZG4cVk0yn8amIhvkFFf7GL9ys8c6Q,7733 +django/contrib/auth/admin.py,sha256=YbVtoNYWSkoLWKePeJ0Pl6u6wrhaoxeS8dTd3n7hXws,8607 +django/contrib/auth/apps.py,sha256=NGdy1h4yrogCn9YZOkhnO7LcVFHZAS60j-Bb7-Rz17A,1168 +django/contrib/auth/backends.py,sha256=Y6JalyJVcLHiMOz24WxxrqmAbR1yoUvV5yGprgvoD2k,9131 +django/contrib/auth/base_user.py,sha256=gXmS3Me_xTfKTTf5PSQRxn0sPJmDp044YrncXr5xQ7U,4450 +django/contrib/auth/checks.py,sha256=eml6rKyw4rEIHxBJUcqChUdvfEh69Monyjkm9FDTOoY,6355 +django/contrib/auth/common-passwords.txt.gz,sha256=CnCdMuzzpa5EVwTpCqtO7-x3CIPsy47PWWw7GUT9C5M,81355 +django/contrib/auth/context_processors.py,sha256=Vb91feuKV9a3BBgR0hrrGmZvVPw0JyYgeA_mRX9QK1c,1822 +django/contrib/auth/decorators.py,sha256=2iowUAGrkZBzaX_Wf0UkUbd0po00UCxtdFQxXj1HIyo,2892 +django/contrib/auth/forms.py,sha256=X12duDXV6zQawRXZgyq-5SbFTd-sIwV729MI_HFMxoo,16360 +django/contrib/auth/hashers.py,sha256=BLDcBesaW_wpmb6WeQo5KLbIg0MzSFxMBhu2GFd3rbs,21886 +django/contrib/auth/middleware.py,sha256=ihtkwdqyINaDDix1w3WKE9GayaGABY88j6drV0mHGDs,5399 +django/contrib/auth/mixins.py,sha256=qdnrUp7L9WTCVimH1ULAoZcsaO5g6_2iE_pT4dea0dY,3846 +django/contrib/auth/models.py,sha256=i5OLrzczce-59FW0TbnQGt7fUh_JXcD-hGlkqXpECrM,15563 +django/contrib/auth/password_validation.py,sha256=RAMoa_8HHQZkJ_X9H3TTluCNvgGXL7CQbHbSiMu4yL8,7566 +django/contrib/auth/signals.py,sha256=_QNYY-RzkwTvY3FRo01AW1S-D9l8lVb3ebt6F1GBfMU,227 +django/contrib/auth/tokens.py,sha256=JxZ6aEPibAvAoDNTIlIrYDz8_V8UZQs8KOYKRUTJfKo,3567 +django/contrib/auth/urls.py,sha256=6M54eTFdCFEqW0pzzKND4R5-8S9JrzoPcaVt0qA3JXc,1054 +django/contrib/auth/validators.py,sha256=4SU1JF5Dc4A3WTbdc45PxGusO8r6rgztgG5oEb_JhKw,687 +django/contrib/auth/views.py,sha256=b48oMCGgdg2wg131_uobg_7mqnl_bksLyO3CosbwqrE,13466 +django/contrib/auth/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/auth/handlers/modwsgi.py,sha256=bTXKVMezywsn1KA2MVyDWeHvTNa2KrwIxn2olH7o_5I,1248 +django/contrib/auth/locale/af/LC_MESSAGES/django.mo,sha256=tRVmdxgSniXopRvpzie69lomr-NLoM3oqICKnxltnQw,7427 +django/contrib/auth/locale/af/LC_MESSAGES/django.po,sha256=E-HRXA5g27P73zQq3wsySxV-4o-yIwL_0-tikfkw5MU,7607 +django/contrib/auth/locale/ar/LC_MESSAGES/django.mo,sha256=lw7pjDDz5lRnSE6bvyGjdcuX06-mUxRZ6AOGreBP8o0,8705 +django/contrib/auth/locale/ar/LC_MESSAGES/django.po,sha256=3RZUD_C65heRnHppLoljc8REA_l1Df-vJ5rvhjEPr-g,9762 +django/contrib/auth/locale/ast/LC_MESSAGES/django.mo,sha256=Pt3gYY3j8Eroo4lAEmf-LR6u9U56mpE3vqLhjR4Uq-o,2250 +django/contrib/auth/locale/ast/LC_MESSAGES/django.po,sha256=Kiq4s8d1HnYpo3DQGlgUl3bOkxmgGW8CvGp9AbryRk8,5440 +django/contrib/auth/locale/az/LC_MESSAGES/django.mo,sha256=oE-fzJ6uz7Tdhs-8V9C65I-x1AakaxYR1rR8H1XqmQk,7450 +django/contrib/auth/locale/az/LC_MESSAGES/django.po,sha256=YnDzQ-iinkAcbYm_F7MHaj5-dEyVyiXtTZ_yS0IL7Kc,7691 +django/contrib/auth/locale/be/LC_MESSAGES/django.mo,sha256=SgSeUlTJuQ4-YZj7h6WltiuUVcYldlBcVdlynQ4bT80,9976 +django/contrib/auth/locale/be/LC_MESSAGES/django.po,sha256=LFiM8UDOCw2AY_GAL3Sbwrah_Umg32Q5phkbvjV8UlE,10299 +django/contrib/auth/locale/bg/LC_MESSAGES/django.mo,sha256=ZwwXfAeWM92GObhxU6zzGu36KJUpkGOuEeprRMu5mZc,8751 +django/contrib/auth/locale/bg/LC_MESSAGES/django.po,sha256=_a2hoIiJRbvW3ymKAkAp-UZNk5AiUy5HqPBBby74Jew,9492 +django/contrib/auth/locale/bn/LC_MESSAGES/django.mo,sha256=cJSawQn3rNh2I57zK9vRi0r1xc598Wr26AyHh6D50ZQ,5455 +django/contrib/auth/locale/bn/LC_MESSAGES/django.po,sha256=5Vqd4n9ab98IMev4GHLxpO7f4r9nnhC3Nfx27HQNd8s,7671 +django/contrib/auth/locale/br/LC_MESSAGES/django.mo,sha256=nxLj88BBhT3Hudev1S_BRC8P6Jv7eoR8b6CHGt5eoPo,1436 +django/contrib/auth/locale/br/LC_MESSAGES/django.po,sha256=rFo68wfXMyju633KCAhg0Jcb3GVm3rk4opFQqI89d6Y,5433 +django/contrib/auth/locale/bs/LC_MESSAGES/django.mo,sha256=1i1CxyXwfskDZtItZQuEpZFlV3cpIo6Ls7Ocs0X3VTA,2963 +django/contrib/auth/locale/bs/LC_MESSAGES/django.po,sha256=C5CQ5vqjuLscWSKHVu0niGzmhxX0y-pf_eiuEr-ZmGU,5793 +django/contrib/auth/locale/ca/LC_MESSAGES/django.mo,sha256=0Lh-Tr3Qu4x5dq8YZrTbCdCbzkjyK_ZsZElUWXMZpZA,6848 +django/contrib/auth/locale/ca/LC_MESSAGES/django.po,sha256=rTucdDBYpnDpDeGrSmp-VJ41IEwdHV-qzG3s-hN1PMw,7705 +django/contrib/auth/locale/cs/LC_MESSAGES/django.mo,sha256=cEcRFsiAyI8OOUf9_hpOg4VuhbDUDExaxjFgma7YrQs,7774 +django/contrib/auth/locale/cs/LC_MESSAGES/django.po,sha256=o8_TvjDtm3rCx2iUzop5KVeaPDl49-CjKhL_8M4eTqQ,8226 +django/contrib/auth/locale/cy/LC_MESSAGES/django.mo,sha256=lSfCwEVteW4PDaiGKPDxnSnlDUcGMkPfsxIluExZar0,4338 +django/contrib/auth/locale/cy/LC_MESSAGES/django.po,sha256=-LPAKGXNzB77lVHfCRmFlH3SUaLgOXk_YxfC0BomcEs,6353 +django/contrib/auth/locale/da/LC_MESSAGES/django.mo,sha256=321FuiFJg-xSrNri8oPSLKLU4OPqQBQBxd_w_tRFUQI,7418 +django/contrib/auth/locale/da/LC_MESSAGES/django.po,sha256=jv5xZta-NXpaJNdwpMapg3QCUy0-KwVrDx2JeMH7Bok,7811 +django/contrib/auth/locale/de/LC_MESSAGES/django.mo,sha256=Z4KFdT7BIn3DIVkwpdodfiFcvWTeVQEPUWU4QgMOYcc,7514 +django/contrib/auth/locale/de/LC_MESSAGES/django.po,sha256=plqGyseVxlR310SFqvPrkXParg-7Z-MfdNBk1UiD52Y,7919 +django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo,sha256=BAAXuvUHRZYPdNoKFh1UiqBYAbyOC2SQRCpQGuW1zR4,8096 +django/contrib/auth/locale/dsb/LC_MESSAGES/django.po,sha256=UopznBtYDxdKbSenij3cIiBcdnsDhzyCnieIdVlkJEU,8350 +django/contrib/auth/locale/el/LC_MESSAGES/django.mo,sha256=tfjgL-_ZACj_GjsfR7jw1PTjxovgR51-LSo5ngtRX-U,10150 +django/contrib/auth/locale/el/LC_MESSAGES/django.po,sha256=IXkrUAGvMZrQTUb6DpdgftRkWg4aKy9vwyO6i-ajsjU,10753 +django/contrib/auth/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/auth/locale/en/LC_MESSAGES/django.po,sha256=cPtY1qLoggZk3h9DztguWtUaLkeE4uQr3yVQfBesyh8,8012 +django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo,sha256=74v8gY8VcSrDgsPDaIMET5frCvtzgLE8oHgX1xNWUvw,3650 +django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po,sha256=lg-LFEeZXxGsNNZ656ePDvAAncjuy0LKuQxUFvQCUJk,5921 +django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo,sha256=p57gDaYVvgEk1x80Hq4Pn2SZbsp9ly3XrJ5Ttlt2yOE,3179 +django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po,sha256=-yDflw5-81VOlyqkmLJN17FRuwDrhYXItFUJwx2aqpE,5787 +django/contrib/auth/locale/eo/LC_MESSAGES/django.mo,sha256=4deiZv4tbjsp2HHn3O5DAidWPpI8gfhpoLbw9Mq_0a4,7347 +django/contrib/auth/locale/eo/LC_MESSAGES/django.po,sha256=KpeJqyXFj1ns0beDaXamNC6P7Rdq0Qff9i8rfHFKQug,7671 +django/contrib/auth/locale/es/LC_MESSAGES/django.mo,sha256=fu-Qpqz4XyYu1_irM742YYT4KUFa2niDZuVo1bbXpTM,7766 +django/contrib/auth/locale/es/LC_MESSAGES/django.po,sha256=U3C1QK5ZVLREVepW6oLVnD3hBNhdlv7ZrjzzMyDLcY4,8427 +django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo,sha256=ow-0zlgfVDS_IAr6OLoPqXdVrFGo02EZCPf3Hw3JGyQ,7890 +django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po,sha256=c0z6f_s47yZ1UyaUY7dTr9S_v5dj6mL2YyuhK0qWBOs,8162 +django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo,sha256=K5VaKTyeV_WoKsLR1x8ZG4VQmk3azj6ZM8Phqjs81So,6529 +django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po,sha256=qJywTaYi7TmeMB1sjwsiwG8GXtxAOaOX0voj7lLVZRw,7703 +django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo,sha256=WUwyvMgNFfKTRfzP4hExhNVMsZ0pee_ZT0p5mwMsu3E,7860 +django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po,sha256=K-QHks0l3VP9R2LXsgcPcSIvRYlYQ7zNIkekMHr2_4o,8166 +django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo,sha256=GwpZytNHtK7Y9dqQKDiVi4SfA1AtPlk824_k7awqrdI,7415 +django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po,sha256=G3mSCo_XGRUfOAKUeP_UNfWVzDPpbQrVYQt8Hv3VZVM,7824 +django/contrib/auth/locale/et/LC_MESSAGES/django.mo,sha256=DgY1GY3M_oBtdW692gk2RxcrGMiy7Eqdg2mD0iHsNVo,7432 +django/contrib/auth/locale/et/LC_MESSAGES/django.po,sha256=Wvqd4XplrtEA2dXg1SLGFgWcchkh3gPHgj8cOovQ3XU,7842 +django/contrib/auth/locale/eu/LC_MESSAGES/django.mo,sha256=K0AoFJGJJSnD1IzYqCY9qB4HZHwx-F7QaDTAGehyo7w,7396 +django/contrib/auth/locale/eu/LC_MESSAGES/django.po,sha256=y9BAASQYTTYfoTKWFVQUYs5-zPlminfJ6C5ZORD6g-s,7749 +django/contrib/auth/locale/fa/LC_MESSAGES/django.mo,sha256=7oQ_0XxUniTEDAGKLXODgouH80NdkDANKBQ749gLkok,8963 +django/contrib/auth/locale/fa/LC_MESSAGES/django.po,sha256=OUGU1vy0hLFb8Bv8V6gykbOB9Qw2Gk1MVMR7aHXS4FU,9362 +django/contrib/auth/locale/fi/LC_MESSAGES/django.mo,sha256=g8UTplFBR9rPuglnruZtE0Vo6tkhDhqbSlc1eh0DSFE,7514 +django/contrib/auth/locale/fi/LC_MESSAGES/django.po,sha256=1znv9S6mls8uwk6AVt8pYkYEG9Qr7TnHNOwL8rB6b-A,7824 +django/contrib/auth/locale/fr/LC_MESSAGES/django.mo,sha256=CiCGqwKFoJnWDqi7QgHcLEkayZTA9JZX3SWCsIBxTK8,8105 +django/contrib/auth/locale/fr/LC_MESSAGES/django.po,sha256=Kij98WD0TShBZdMYXmjINji3SuCmKTafmxUL8-JLJt0,8481 +django/contrib/auth/locale/fy/LC_MESSAGES/django.mo,sha256=95N-77SHF0AzQEer5LuBKu5n5oWf3pbH6_hQGvDrlP4,476 +django/contrib/auth/locale/fy/LC_MESSAGES/django.po,sha256=8XOzOFx-WerF7whzTie03hgO-dkbUFZneyrpZtat5JY,3704 +django/contrib/auth/locale/ga/LC_MESSAGES/django.mo,sha256=Nd02Ed9ACCY6JCCSwtiWl3DTODLFFu9Mq6JVlr5YbYk,3572 +django/contrib/auth/locale/ga/LC_MESSAGES/django.po,sha256=FQJMR5DosuKqo4vvF0NAQnjfqbH54MSzqL2-4BO4-uM,6127 +django/contrib/auth/locale/gd/LC_MESSAGES/django.mo,sha256=VviVmi6nVpH5U3za23353_MXTIkExdVJOFzdu1FDCgo,8720 +django/contrib/auth/locale/gd/LC_MESSAGES/django.po,sha256=Vn_dHeBR4q-Nb-Z14MGE9xFiDKK7eaNa8ySM0dhT-2Q,9018 +django/contrib/auth/locale/gl/LC_MESSAGES/django.mo,sha256=ZqVb1YCn_0_HyVtb_rnxmn0BSYAuKTVTFNHf2gftt5c,4022 +django/contrib/auth/locale/gl/LC_MESSAGES/django.po,sha256=YN_7iJTGc1Kh5llxHnwqq1kZmdQVMUMv1bkti30fMCI,6371 +django/contrib/auth/locale/he/LC_MESSAGES/django.mo,sha256=IbmufFuUd40JE8YBQgF4mnJZ4jENwFcJBr3oZXQnmeQ,8624 +django/contrib/auth/locale/he/LC_MESSAGES/django.po,sha256=LbZF6SdPBdItnr7_AQpFbtLjF0axZmOXRwQn6TjKzdU,8937 +django/contrib/auth/locale/hi/LC_MESSAGES/django.mo,sha256=7CxV1H37hMbgKIhnAWx-aJmipLRosJe1qg8BH2CABfw,5364 +django/contrib/auth/locale/hi/LC_MESSAGES/django.po,sha256=DU5YM6r1kd5fo40yqFXzEaNh42ezFQFQ-0dmVqkaKQ0,7769 +django/contrib/auth/locale/hr/LC_MESSAGES/django.mo,sha256=GEap3QClwCkuwQZKJE7qOZl93RRxmyyvTTnOTYaAWUo,5894 +django/contrib/auth/locale/hr/LC_MESSAGES/django.po,sha256=ALftoYSaI1U90RNDEvnaFATbw1SL0m8fNXAyl6DkSvo,7355 +django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo,sha256=EPvlwd_NX7HEYa9exou0QWR501uyNr8_3tRMz-l1_FA,7922 +django/contrib/auth/locale/hsb/LC_MESSAGES/django.po,sha256=oylGjyfqTtyTJGRpBEI3xfN5MFzgklZ5FtNVe54ugKM,8213 +django/contrib/auth/locale/hu/LC_MESSAGES/django.mo,sha256=TLGY7EaLD12NHYM1hQlqb4D4BM0T68jv8yhECOHIgcA,7655 +django/contrib/auth/locale/hu/LC_MESSAGES/django.po,sha256=E51MM5qqplgrOSrh60bfz-EvyL91Ik3kL3YJOK-dqzk,8040 +django/contrib/auth/locale/hy/LC_MESSAGES/django.mo,sha256=zoLe0EqIH8HQYC5XAWd8b8mA2DpbmDSEBsF-WIKX_OQ,8001 +django/contrib/auth/locale/hy/LC_MESSAGES/django.po,sha256=wIWLbz6f0n44ZcjEbZZsgoWTpzXRGND15hudr_DQ3l0,8787 +django/contrib/auth/locale/ia/LC_MESSAGES/django.mo,sha256=oTzOm7fRjn79_pU9zy6D_Ehex5FK7hjQYe4soeHhRkk,3314 +django/contrib/auth/locale/ia/LC_MESSAGES/django.po,sha256=LzJOXjj1Fa61zk3v2d-aWS48eva2S0b0jJ9r5CqiFDY,5881 +django/contrib/auth/locale/id/LC_MESSAGES/django.mo,sha256=LUcZxGYRwKz6C6nQ-AaXeYUlxjGU-7Yr6frh93xFDsI,7169 +django/contrib/auth/locale/id/LC_MESSAGES/django.po,sha256=p3i1D8-qZYdBAfhzZRIuzEJNOZm59ABx8qy5IKNFaoI,7583 +django/contrib/auth/locale/io/LC_MESSAGES/django.mo,sha256=YwAS3aWljAGXWcBhGU_GLVuGJbHJnGY8kUCE89CPdks,464 +django/contrib/auth/locale/io/LC_MESSAGES/django.po,sha256=W36JXuA1HQ72LspixRxeuvxogVxtk7ZBbT0VWI38_oM,3692 +django/contrib/auth/locale/is/LC_MESSAGES/django.mo,sha256=0PBYGqQKJaAG9m2jmJUzcqRVPc16hCe2euECMCrNGgI,7509 +django/contrib/auth/locale/is/LC_MESSAGES/django.po,sha256=o6dQ8WMuPCw4brSzKUU3j8PYhkLBO7XQ3M7RlsIw-VY,7905 +django/contrib/auth/locale/it/LC_MESSAGES/django.mo,sha256=dI8wYt63mrZ02kL3r1XVY-AIussOMwQyvWBfefM4Zw0,7539 +django/contrib/auth/locale/it/LC_MESSAGES/django.po,sha256=wnIrW0RSky6QG7hrmof8Ow3-4YLouN6izMC2kik-PHA,8069 +django/contrib/auth/locale/ja/LC_MESSAGES/django.mo,sha256=t3UJj76znV0oWwddRywtKiTeNKgmV3N3moLgEuaFZoo,8062 +django/contrib/auth/locale/ja/LC_MESSAGES/django.po,sha256=xGmVEPon-B6__imklMQ-mvcuRMEl62Czjo5wDToV7Nw,8335 +django/contrib/auth/locale/ka/LC_MESSAGES/django.mo,sha256=0QWYd58Dz5Az3OfZo7wV3o-QCre2oc5dgEPu0rnLVJI,10625 +django/contrib/auth/locale/ka/LC_MESSAGES/django.po,sha256=oCtz7gS4--mhv7biS1rIh43I4v1UpZX4DKdrB-xZ2RA,11217 +django/contrib/auth/locale/kab/LC_MESSAGES/django.mo,sha256=9qKeQ-gDByoOdSxDpSbLaM4uSP5sIi7qlTn8tJidVDs,2982 +django/contrib/auth/locale/kab/LC_MESSAGES/django.po,sha256=8cq5_rjRXPzTvn1jPo6H_Jcrv6IXkWr8n9fTPvghsS8,5670 +django/contrib/auth/locale/kk/LC_MESSAGES/django.mo,sha256=RJablrXpRba6YVB_8ACSt2q_BjmxrHQZzX6RxMJImlA,3542 +django/contrib/auth/locale/kk/LC_MESSAGES/django.po,sha256=OebwPN9iWBvjDu0P2gQyBbShvIFxFIqCw8DpKuti3xk,6360 +django/contrib/auth/locale/km/LC_MESSAGES/django.mo,sha256=FahcwnCgzEamtWcDEPOiJ4KpXCIHbnSowfSRdRQ2F9U,2609 +django/contrib/auth/locale/km/LC_MESSAGES/django.po,sha256=lvRHHIkClbt_8-9Yn0xY57dMxcS72z4sUkxLb4cohP0,5973 +django/contrib/auth/locale/kn/LC_MESSAGES/django.mo,sha256=u0YygqGJYljBZwI9rm0rRk_DdgaBEMA1etL-Lk-7Mls,4024 +django/contrib/auth/locale/kn/LC_MESSAGES/django.po,sha256=HKQ1t2yhh9OwsqvMft337VpPmi8KU8PhF2M8gKOdtXw,6951 +django/contrib/auth/locale/ko/LC_MESSAGES/django.mo,sha256=ROHbZagkLsJ72mMaVASbZbXyvC3VfPndkBR9xTN024I,7593 +django/contrib/auth/locale/ko/LC_MESSAGES/django.po,sha256=917dD8yumkStSCd6RqepqZ-9huFujDoWoB28lAUF1f8,8284 +django/contrib/auth/locale/lb/LC_MESSAGES/django.mo,sha256=OFhpMA1ZXhrs5fwZPO5IjubvWDiju4wfwWiV94SFkiA,474 +django/contrib/auth/locale/lb/LC_MESSAGES/django.po,sha256=dOfY9HjTfMQ0nkRYumw_3ZaywbUrTgT-oTXAnrRyfxo,3702 +django/contrib/auth/locale/lt/LC_MESSAGES/django.mo,sha256=-nlZHl7w__TsFUmBb5pQV_XJtKGsi9kzP6CBZXkfM8M,8146 +django/contrib/auth/locale/lt/LC_MESSAGES/django.po,sha256=-rdhB6eroSSemsdZkG1Jl4CruNZc_7dj4m5IVoyRBUQ,8620 +django/contrib/auth/locale/lv/LC_MESSAGES/django.mo,sha256=MeaR3wk2dhEJl0ib7sfLomLmO14r1dDDf9UCGkzgUtA,7582 +django/contrib/auth/locale/lv/LC_MESSAGES/django.po,sha256=o-lm18LyXAna2tVM4BX2aLYdLKsr59m_VWImsYaSvN8,7970 +django/contrib/auth/locale/mk/LC_MESSAGES/django.mo,sha256=XS9dslnD_YBeD07P8WQkss1gT7GIV-qLiCx4i5_Vd_k,9235 +django/contrib/auth/locale/mk/LC_MESSAGES/django.po,sha256=QOLgcwHub9Uo318P2z6sp69MI8syIIWCcr4VOom9vfs,9799 +django/contrib/auth/locale/ml/LC_MESSAGES/django.mo,sha256=UEaqq7nnGvcZ8vqFicLiuqsuEUhEjd2FpWfyzy2HqdU,12611 +django/contrib/auth/locale/ml/LC_MESSAGES/django.po,sha256=xBROIwJb5h2LmyBLAafZ2tUlPVTAOcMgt-olq5XnPT8,13107 +django/contrib/auth/locale/mn/LC_MESSAGES/django.mo,sha256=hBYT0p3LcvIKKPtIn2NzPk_2di9L8jYrUt9j3TcVvaY,9403 +django/contrib/auth/locale/mn/LC_MESSAGES/django.po,sha256=R3wAEwnefEHZsma8J-XOn4XlLtuWYKDPLwJ99DUYmvE,9913 +django/contrib/auth/locale/mr/LC_MESSAGES/django.mo,sha256=zGuqUTqcWZZn8lZY56lf5tB0_lELn7Dd0Gj78wwO5T4,468 +django/contrib/auth/locale/mr/LC_MESSAGES/django.po,sha256=yLW9WuaBHqdp9PXoDEw7c05Vt0oOtlks5TS8oxYPAO8,3696 +django/contrib/auth/locale/my/LC_MESSAGES/django.mo,sha256=gYzFJKi15RbphgG1IHbJF3yGz3P2D9vaPoHZpA7LoH8,1026 +django/contrib/auth/locale/my/LC_MESSAGES/django.po,sha256=lH5mrq-MyY8gvrNkH2_20rkjFnbviq23wIUqIjPIgFI,5130 +django/contrib/auth/locale/nb/LC_MESSAGES/django.mo,sha256=Lg5Yf7DbiD8m_MUIYyD8u5GE3yuL5NE2DYLZ9fcaMrk,7222 +django/contrib/auth/locale/nb/LC_MESSAGES/django.po,sha256=zy1cf3zV3nFpE8ZwKKKJea2LxBw0VWZQ_F38OzlSfTY,7570 +django/contrib/auth/locale/ne/LC_MESSAGES/django.mo,sha256=x1sZcDaH6bGxtyFs0PrNmgPMKLWjQ9lYVZqvaUQySlc,8553 +django/contrib/auth/locale/ne/LC_MESSAGES/django.po,sha256=CDCIeUfJQl131zMeXHn5sFpgmh7gA5uSaapBEOtC5tM,9385 +django/contrib/auth/locale/nl/LC_MESSAGES/django.mo,sha256=g29u9ZMWBkbkWw6jA0UU74pMCAh9s-Gb9Ft3zi9aNn4,7451 +django/contrib/auth/locale/nl/LC_MESSAGES/django.po,sha256=U9JaMXlbuY9Lvu2pUK6x5vSD5m7ROaKt2P2rbBTDZ30,8176 +django/contrib/auth/locale/nn/LC_MESSAGES/django.mo,sha256=020nmL8b1yQL0ZyrDAdr0ZOsEGmNxvUpp9ISPBOVI8U,2801 +django/contrib/auth/locale/nn/LC_MESSAGES/django.po,sha256=SKgBiBM1llWFIvVjWRR0r2i3O8VcAdWe-PUhxckqmbE,5590 +django/contrib/auth/locale/os/LC_MESSAGES/django.mo,sha256=DVsYGz-31nofEjZla4YhM5L7qoBnQaYnZ4TBki03AI4,4434 +django/contrib/auth/locale/os/LC_MESSAGES/django.po,sha256=Akc1qelQWRA1DE6xseoK_zsY7SFI8SpiVflsSTUhQLw,6715 +django/contrib/auth/locale/pa/LC_MESSAGES/django.mo,sha256=PeOLukzQ_CZjWBa5FGVyBEysat4Gwv40xGMS29UKRww,3666 +django/contrib/auth/locale/pa/LC_MESSAGES/django.po,sha256=7ts9PUSuvfXGRLpfyVirJLDtsQcsVWFXDepVKUVlmtc,6476 +django/contrib/auth/locale/pl/LC_MESSAGES/django.mo,sha256=aFiv3R2tRWOKs2UOBg9s35wbYnOIxgLCEfr8fIJbIEw,7908 +django/contrib/auth/locale/pl/LC_MESSAGES/django.po,sha256=pHr8LAF2bobzBHnteZrNS_NL5pbzn-LW4uhWff5UGwA,8619 +django/contrib/auth/locale/pt/LC_MESSAGES/django.mo,sha256=oyKCSXRo55UiO3-JKcodMUnK7fuOuQxQrXcU7XkWidA,7756 +django/contrib/auth/locale/pt/LC_MESSAGES/django.po,sha256=tEazw0kctJ3BaP21IblsMhno6qooOGW54zwende522Q,8128 +django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo,sha256=yMiLyIJPG54W-3QnrlNMRnYI9Ko90FIXM_vtUShBMrc,7554 +django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po,sha256=3ym8Ohvl_q8fh4tqnZmPkhUt_17ZDBnZB99ykuR2g9o,8420 +django/contrib/auth/locale/ro/LC_MESSAGES/django.mo,sha256=ltOJP8BImDO1eVPQ_iA4UtZm4pMfLI3HsgRKiY_Gtx8,7961 +django/contrib/auth/locale/ro/LC_MESSAGES/django.po,sha256=NHHwZ8qVGgLkBXT_r2y13ZJiWNJ2kFI20-qaZChco5o,8398 +django/contrib/auth/locale/ru/LC_MESSAGES/django.mo,sha256=tfK9L7EYNZd9d1k_EGQrDcr8ruUGJ1JbRJ3-TvJ6cR8,10482 +django/contrib/auth/locale/ru/LC_MESSAGES/django.po,sha256=nQnaxPKmCJ6N2VVJzNDNt6oeqwSxG0lfY60DSDotJ94,10959 +django/contrib/auth/locale/sk/LC_MESSAGES/django.mo,sha256=hJ_ep7FCbG4DVZawMfx4GjOPcJc4ruFSki8bkYn2l2Y,7838 +django/contrib/auth/locale/sk/LC_MESSAGES/django.po,sha256=NOYdZ3dv3Vtl-5vOwJH26Rthl-5nn4JrXgnm3i-d0bY,8199 +django/contrib/auth/locale/sl/LC_MESSAGES/django.mo,sha256=UAzD5UAqHBdiCMIPjZdouGt14xoHuo5EXDctNSDTEJk,7552 +django/contrib/auth/locale/sl/LC_MESSAGES/django.po,sha256=tUqZLZJegGLteWOQiDwFRUGayBB2j9qATmL6SMgEhb8,7943 +django/contrib/auth/locale/sq/LC_MESSAGES/django.mo,sha256=3bm81rsRuQmV_1mD9JrAwSjRIDUlsb3lPmBxRNHfz8w,7813 +django/contrib/auth/locale/sq/LC_MESSAGES/django.po,sha256=BWfyT4qg1jMoDGwmpLq4uPHJ1hJXLHI7gyo4BnzVHZI,8128 +django/contrib/auth/locale/sr/LC_MESSAGES/django.mo,sha256=XPJB-rwpS8c7sEH7RChft-DHllMWqUEoTFLA06Q_noc,9754 +django/contrib/auth/locale/sr/LC_MESSAGES/django.po,sha256=HPk2yuyvr9krU3CEf6p5v_4cLFG-Cu1lXsFTs1C9vmo,10010 +django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=hwAo5ishpZZ9kb9WHrSMHdxmWV9afdxOHgVEwWqb4VE,3293 +django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po,sha256=qccS0IkO-JT504Y2uVGY5nPYfN8EA_58I9z492iQHKI,5934 +django/contrib/auth/locale/sv/LC_MESSAGES/django.mo,sha256=gdDygCzmJZghqebC_Za9BqVjy2EHS9UgrWhi0Lm5rC0,7447 +django/contrib/auth/locale/sv/LC_MESSAGES/django.po,sha256=4csJy-CtwoOYh_tN7qk6yt_A7FICPwJfgHh8gqFyiZA,7970 +django/contrib/auth/locale/sw/LC_MESSAGES/django.mo,sha256=I_lEsKuMGm07X1vM3-ReGDx2j09PGLkWcG0onC8q1uQ,5029 +django/contrib/auth/locale/sw/LC_MESSAGES/django.po,sha256=TiZS5mh0oN0e6dFEdh-FK81Vk-tdv35ngJ-EbM1yX80,6455 +django/contrib/auth/locale/ta/LC_MESSAGES/django.mo,sha256=T1t5CKEb8hIumvbOtai-z4LKj2et8sX-PgBMd0B3zuA,2679 +django/contrib/auth/locale/ta/LC_MESSAGES/django.po,sha256=X8UDNmk02X9q1leNV1qWWwPNakhvNd45mCKkQ8EpZQQ,6069 +django/contrib/auth/locale/te/LC_MESSAGES/django.mo,sha256=i9hG4thA0P-Hc-S2oX7GufWFDO4Y_LF4RcdQ22cbLyE,2955 +django/contrib/auth/locale/te/LC_MESSAGES/django.po,sha256=txND8Izv2oEjSlcsx3q6l5fEUqsS-zv-sjVVILB1Bmc,6267 +django/contrib/auth/locale/th/LC_MESSAGES/django.mo,sha256=zRpZ2xM5JEQoHtfXm2_XYdhe2FtaqH-hULJadLJ1MHU,6013 +django/contrib/auth/locale/th/LC_MESSAGES/django.po,sha256=Yhh_AQS_aM_9f_yHNNSu_3THbrU-gOoMpfiDKhkaSHo,7914 +django/contrib/auth/locale/tr/LC_MESSAGES/django.mo,sha256=eUyLW78fT2I_evDYrkLPYMkTEo6dugmiHW9rr_eyysc,7447 +django/contrib/auth/locale/tr/LC_MESSAGES/django.po,sha256=lZn4_C__EhzLMH-Y2X7Bb0QLsrqGq0qOj0GjpgR6wIo,8040 +django/contrib/auth/locale/tt/LC_MESSAGES/django.mo,sha256=g4pTk8QLQFCOkU29RZvR1wOd1hkOZe_o5GV9Cg5u8N4,1371 +django/contrib/auth/locale/tt/LC_MESSAGES/django.po,sha256=owkJ7iPT-zJYkuKLykfWsw8j7O8hbgzVTOD0DVv956E,5222 +django/contrib/auth/locale/udm/LC_MESSAGES/django.mo,sha256=zey19UQmS79AJFxHGrOziExPDDpJ1AbUegbCRm0x0hM,462 +django/contrib/auth/locale/udm/LC_MESSAGES/django.po,sha256=gLVgaMGg0GA3Tey1_nWIjV1lnM7czLC0XR9NFBgL2Zk,3690 +django/contrib/auth/locale/uk/LC_MESSAGES/django.mo,sha256=YEqVD82aG8LuY3WZ-q2p65M2nbgSOawv5xwHyvnsTQY,10079 +django/contrib/auth/locale/uk/LC_MESSAGES/django.po,sha256=tLWzzj6dbLutVkE5KZSWuFbQLwT2HSXLxfcz6t5XhBE,10688 +django/contrib/auth/locale/ur/LC_MESSAGES/django.mo,sha256=rippTNHoh49W19c4HDUF8G5Yo3SknL3C87Afu8YXxzA,698 +django/contrib/auth/locale/ur/LC_MESSAGES/django.po,sha256=gwSd8noEwbcvDE1Q4ZsrftvoWMwhw1J15gvdtK6E9ns,4925 +django/contrib/auth/locale/uz/LC_MESSAGES/django.mo,sha256=bnC1FkfG5hF9Q1qpjPZpj3LvnQwt4i2-Q0PYPgARzZ8,1795 +django/contrib/auth/locale/uz/LC_MESSAGES/django.po,sha256=I_VBhkFXcQL0ALNJZZZbjQ63t2oEUy3Z5o4BUGpNVvE,5334 +django/contrib/auth/locale/vi/LC_MESSAGES/django.mo,sha256=4YOb_ZbCI90UB01DpNsBAe6qqrc3P209Bz22FSVqvog,4703 +django/contrib/auth/locale/vi/LC_MESSAGES/django.po,sha256=1YjTrGYr04j9GtG8w0c7v71pHjHU8mHzT7tChroyfaw,6723 +django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=ADtCGX8Lb8ON84-sf-OU3LT2XOK9a_5my0lqS7xPNdY,6729 +django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po,sha256=ZfdDCQTLFcpP5737U1Rbb_lHqGktMjYKe6Mjth4FiOg,7332 +django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=yQ5Gllu4hXzuBpBNAgtJaBMVivJeXUUlpfDS4CT1wg4,6728 +django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po,sha256=Rw18_ZEtobUhmj2oF544zdQ6Vrac0T9UI9RJO4plOdc,7145 +django/contrib/auth/management/__init__.py,sha256=9Dk5PxHrfnpYOloPc1ClI7KMLKIZtLB-eKGhd3cftm8,4938 +django/contrib/auth/management/commands/changepassword.py,sha256=y8rT5O0IILk9J0oODu_Cj-bLcmJgrPIRBoO7p2fFxXA,2548 +django/contrib/auth/management/commands/createsuperuser.py,sha256=kvxsLYssHdE0NIcK27r0YNhGKphiGK1C69H27Ak3KNs,11440 +django/contrib/auth/migrations/0001_initial.py,sha256=bz7B12K5Ovs0aiXfZGMEbVtWAeV05JyLKDGyMrhCd_c,4960 +django/contrib/auth/migrations/0002_alter_permission_name_max_length.py,sha256=xSlhMiUbrVCPMOwmwVNAUgYjZih3t-ieALNm7rQ1OI0,347 +django/contrib/auth/migrations/0003_alter_user_email_max_length.py,sha256=bPcpCTPAJV2NgrwEa6WFfxkhbPmj5J-EqU1HM3RXtq0,389 +django/contrib/auth/migrations/0004_alter_user_username_opts.py,sha256=aN0oHoA5q2bKpJN8SnI8T9GNtTBKzLRFozL87tNh8_I,785 +django/contrib/auth/migrations/0005_alter_user_last_login_null.py,sha256=0s9ZPGWNP9HT7TmXAuChMLLwL1Ml5SdQwNs9qfy5dN4,381 +django/contrib/auth/migrations/0006_require_contenttypes_0002.py,sha256=_S7o_MhU0lAnPhDEt0kh1sBmpCLXW88VBuATERiMBlk,370 +django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py,sha256=JeJpm_jyu2CbBckw4xJt0DlwQ4SDg2fyHqduRLZ1HFI,740 +django/contrib/auth/migrations/0008_alter_user_username_max_length.py,sha256=KpeVuknt_7WErQO_WLDSCMg1sJkXCXjNQ5I4u_l99kc,752 +django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py,sha256=rwLs5SDzFJsDKtCfyMP6XueUPHiRvRMein3wXMzHeDk,386 +django/contrib/auth/migrations/0010_alter_group_name_max_length.py,sha256=JQ2cqUnTooqDKlZ5LcXQDbQld9xQmC3up5_wCWn1LFg,379 +django/contrib/auth/migrations/0011_update_proxy_permissions.py,sha256=orVGTXgHx-hHf0E4E8MUk_lxAwgoMH3xllLNTZKxAtY,2822 +django/contrib/auth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/auth/templates/auth/widgets/read_only_password_hash.html,sha256=cMrG-iMsrVQ6Qd6T_Xz21b6WIWhXxaIwgNDW2NpDpuM,185 +django/contrib/auth/templates/registration/password_reset_subject.txt,sha256=j8rO05woNdwv8-_F6EMy6FTZGMf-Dp9usdUJXSZHs7Q,124 +django/contrib/contenttypes/__init__.py,sha256=OVcoCHYF9hFs-AnFfg2tjmdetuqx9-Zhi9pdGPAgwH4,75 +django/contrib/contenttypes/admin.py,sha256=QeElFtZgIUzCWa1QfLhb9rpb-XZSY-xalx-RNAN5CoQ,5104 +django/contrib/contenttypes/apps.py,sha256=lVmnJW7DgIc42uc0V5vZL8qxnsnVijQmgelhs3nybIE,797 +django/contrib/contenttypes/checks.py,sha256=ooW997jE1y5goWgO3dzc7tfJt5Z4tJPWRRSG1P1-AcU,1234 +django/contrib/contenttypes/fields.py,sha256=B1V19ALTBac3JSV0sh1no3Wj7J3XJuGXPbUhEQ32WvY,27336 +django/contrib/contenttypes/forms.py,sha256=95tGX_F2KkIjoBTFQcdvraypLz6Fj3LdCLOHx-8gCrQ,3615 +django/contrib/contenttypes/models.py,sha256=5Uki-FjWjvze8Cs8oEdLy-uc_FB7xVYvXvmmtnk2WRw,6673 +django/contrib/contenttypes/views.py,sha256=fnoup7g6T17YpfCkffdWehuaWlo-KPAZj0p7kkk7v1E,3549 +django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo,sha256=93nlniPFfVcxfBCs_PsLtMKrJ2BqpcofPRNYYTTlels,1070 +django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po,sha256=SY04sW55-xpO_qBjv8pHoN7eqB2C5q_9CxQguMz7Q94,1244 +django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo,sha256=YXeD6WDlMQ7No_1PbR1PYE7As6GYXSQBVKkWdF_bHMo,1259 +django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po,sha256=PHvyo3UF4beWdczghk7xqrtJEu-u4802Yn6fmQvKbtA,1504 +django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo,sha256=y88CPGGbwTVRmZYIipCNIWkn4OuzuxEk2QCYsBhc7RY,643 +django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po,sha256=H-qMo5ikva84ycnlmBT4XXEWhzMIw-r7J_zuqxo3wu4,1088 +django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo,sha256=aaKSEUnbZZMDDl4lrNpG6e18R73kD_-nY2A_dAtHtxw,1101 +django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po,sha256=txoRBy2uMeiT7aUzjADfXnf8FF3zjmCr_mLsFbVcpXs,1314 +django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo,sha256=Kp1TpXX1v0IgGp9HZxleXJ6y5ZvMZ6AqJrSIVcDs7xA,1353 +django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po,sha256=Oy5QXZBmBM_OYLT5OeXJQzTBCHXBp8NVMYuKmr_TUm0,1615 +django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo,sha256=yVH2saAhE3bVtamkCeIBDQuJpn2awfF2M7ISujswiRU,1267 +django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po,sha256=YdzC82ifG-pPY5Iy4mXIBj9Qq583g37OqZir-jpbUpc,1576 +django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo,sha256=2Z1GL6c1ukKQCMcls7R0_n4eNdH3YOXZSR8nCct7SLI,1201 +django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po,sha256=PLjnppx0FxfGBQMuWVjo0N4sW2QYc2DAEMK6ziGWUc8,1491 +django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo,sha256=kAlOemlwBvCdktgYoV-4NpC7XFDaIue_XN7GJYzDu88,1419 +django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po,sha256=BQmHVQqOc6xJWJLeAo49rl_Ogfv-lFtx18mj82jT_to,1613 +django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo,sha256=klj9n7AKBkTf7pIa9m9b-itsy4UlbYPnHiuvSLcFZXY,700 +django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po,sha256=pmJaMBLWbYtYFFXYBvPEvwXkTPdjQDv2WkFI5jNGmTI,1151 +django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo,sha256=SMwTCqtIJedetZYstY4lcKqTD9xoE4vuvyOaDRENcTg,1134 +django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po,sha256=__UUPN27_GLZxOATgFO_THR-H9e5JARo52vGyuGXrFs,1360 +django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo,sha256=QexBQDuGdMFhVBtA9XWUs2geFBROcxyzdU_IBUGQ7x4,1108 +django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po,sha256=8pdPwZmpGOeSZjILGLZEAzqvmmV69ogpkh0c3tukT2g,1410 +django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo,sha256=2QyCWeXFyymoFu0Jz1iVFgOIdLtt4N1rCZATZAwiH-8,1159 +django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po,sha256=ZWDxQTHJcw1UYav1C3MX08wCFrSeJNNI2mKjzRVd6H0,1385 +django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo,sha256=EyancRrTWxM6KTpLq65gIQB0sO_PLtVr1ESN2v1pSNU,1038 +django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po,sha256=J09u3IjLgv4g77Kea_WQAhevHb8DskGU-nVxyucYf_0,1349 +django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo,sha256=WdGKHOdSGoscynVfOmjXD3_NRPOoTzZNWYjYdEVzahY,1092 +django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po,sha256=141sVDNz98hS_QxjyM5GEEfpvHnL8Dvbmjb_P-RtkFk,1299 +django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo,sha256=JfVRcAuhU7jt3iv8orjFpzFZUEWa9Tf98Z0KwKynBB0,1169 +django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po,sha256=2vfMUWWYDKZ9K8ujm1OgYSwl04cVDUUE5-942VGz150,1346 +django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo,sha256=cGjt7dcY9L6GusXl9eQgezR9phjMqfTUixC9hFC4ORc,1323 +django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po,sha256=VWwuQYX1La2lvPZJwp-cprA-jyxe0qTxxT0neb9AegM,1634 +django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po,sha256=BRgOISCCJb4TU0dNxG4eeQJFe-aIe7U3GKLPip03d_Q,1110 +django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486 +django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po,sha256=wmxyIJtz628AbsxgkB-MjdImcIJWhcW7NV3tWbDpedg,1001 +django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo,sha256=_uM-jg43W7Pz8RQhMcR_o15wRkDaYD8aRcl2_NFGoNs,1053 +django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po,sha256=SyzwSvqAgKF8BEhXYh4598GYP583OK2GUXH1lc4iDMk,1298 +django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo,sha256=MFC-mQeWLeFry7d2EXeAf2G47YRLLKFhenGLCwo5O9A,1087 +django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po,sha256=BgQ7lRtsjD-XHaNvlHMu9AxCCqx38XdOCG4zYpKgDn4,1279 +django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo,sha256=rG5-Lt7Mutoa42O_5I2rjcQ5p0rnA2T-cDMbgxaJsYU,1142 +django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po,sha256=iR5eAl6d6Ol2Ufd9hQWfau8vNG0pPKvSgTToqvGMGK8,1417 +django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo,sha256=WkHABVDmtKidPyo6zaYGVGrgXpe6tZ69EkxaIBu6mtg,1084 +django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po,sha256=yVSu_fJSKwS4zTlRud9iDochIaY0zOPILF59biVfkeY,1337 +django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo,sha256=aACo1rOrgs_BYK3AWzXEljCdAc4bC3BXpyXrwE4lzAs,1158 +django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po,sha256=vemhoL-sESessGmIlHoRvtWICqF2aO05WvcGesUZBRM,1338 +django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo,sha256=hfjH_3T9YfIhOGEE25TflbKWoiZZvmagaVW2YcNDKq8,1109 +django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po,sha256=Tkt5m04QFdBiPVbRWRh9tiyVL4K6E9Qe42xdmeVaRxQ,1303 +django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo,sha256=TVGDydYVg_jGfnYghk_cUFjCCtpGchuoTB4Vf0XJPYk,1152 +django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po,sha256=vJW37vuKYb_KpXBPmoNSqtNstFgCDlKmw-8iOoSCenU,1342 +django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo,sha256=Rs8vsaZp2RX68U_dQge4wkZQMfH8Dh1br4IWkKzfECA,1066 +django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po,sha256=AIl4zK9fs3_euQMwu0ORQZWPyBrIikvQfq-fhiRu2ug,1323 +django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo,sha256=K0f1cXEhfg_djPzgCL9wC0iHGWF_JGIhWGFL0Y970g0,1077 +django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po,sha256=sSuVV0o8MeWN6BxlaeKcjKA3h4H29fCo1kKEtkczEp4,1344 +django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo,sha256=QNJlQhJ6b183Y8SZejokLLvH4whuJ2sadMLrm5z5ero,1171 +django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po,sha256=ELZMaN9tyEC-DIraWM_Ipv4JOq4ANvyTWEzCYmGRnRY,1427 +django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo,sha256=yZNZ0btS15XQPW5sGVQWqUbQ3_ZIGD0JjgMcz2-_xgU,1073 +django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po,sha256=LTt_nF73_BxrerGmK4ly__1PeesGNpWlH3CSLETMvuI,1316 +django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo,sha256=CTOu_JOAQeC72VX5z9cg8Bn3HtZsdgbtjA7XKcy681o,1078 +django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po,sha256=6LArEWoBpdaJa7UPcyv4HJKD3YoKUxrwGQGd16bi9DM,1379 +django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po,sha256=SB07aEGG7n4oX_5rqHB6OnjpK_K0KwFM7YxaWYNpB_4,991 +django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo,sha256=GYQYfYWbgwL3nQJR5d7XGjc5KeYYXsB0yRQJz7zxd_k,1097 +django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po,sha256=byvw9sQ9VLVjS7Au81LcNpxOzwA29_4Al9nB1ZyV2b4,1408 +django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo,sha256=GXwvJ2csT38SBvqMB_YoPQ_Swcy7mhZYDEr1nQBNOgc,1191 +django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po,sha256=H4U-T07ZGgSF2LjOng5g8N-jC92SFeO5Fg9u1-g954g,1346 +django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo,sha256=gMDLuxVazSNvwLmi5AqJEsxugmDVLk8DlxseHRRoQoc,1072 +django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po,sha256=hFPL2GH-o6XN0SKu5kqgiEaGT8lKnbi_zmlUNCn3Obg,1364 +django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo,sha256=X-91PCG5ftulkyc3zTnczlWQ62zM7-47EJkE7S__CtI,1256 +django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po,sha256=NDEa2I5p29YJCEXdvmA6fyDyXTgdJsuLGeB95KPGbP8,1477 +django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo,sha256=KAZuQMKOvIPj3a7GrNJE3yhT70O2abCEF2GOsbwTE5A,1321 +django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po,sha256=PcsNgu2YmT0biklhwOF_nSvoGTvWVKw2IsBxIwSVAtI,1577 +django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo,sha256=DbOUA8ks3phsEwQvethkwZ9-ymrd36aQ6mP7OnGdpjU,1167 +django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po,sha256=722KxvayO6YXByAmO4gfsfzyVbT-HqqrLYQsr02KDc8,1445 +django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo,sha256=tPtv_lIzCPIUjGkAYalnNIUxVUQFE3MShhVXTnfVx3Q,1106 +django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po,sha256=rbI3G8ARG7DF7uEe82SYCfotBnKTRJJ641bGhjdptTQ,1329 +django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo,sha256=2nsylOwBIDOnkUjE2GYU-JRvgs_zxent7q3_PuscdXk,1102 +django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po,sha256=Dzcf94ZSvJtyNW9EUKpmyNJ1uZbXPvc7dIxCccZrDYc,1427 +django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo,sha256=hKOErB5dzj44ThQ1_nZHak2-aXZlwMoxYcDWmPb3Xo8,1290 +django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po,sha256=UeGzaghsEt9Lt5DsEzRb9KCbuphWUQwLayt4AN194ao,1421 +django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo,sha256=3yDFJFxh16B2WigXeJxZV9vOyRxnjZ4MAUq3T_-PHGs,1079 +django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po,sha256=4JsXrJxsMVVu9Y6OuFrwMV5L4Dglh9XJ5sp9CHDGHaA,1288 +django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo,sha256=9o50TqX6hHloHvBJbf4pkK4a554L5UmiJnp9vGfq25k,1066 +django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po,sha256=xMRNmOipOt-18KLux7PrJn8NS25qMCVLxmmceR1P93s,1374 +django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo,sha256=3SSRXx4tYiMUc00LZ9kGHuvTgaWpsICEf5G208CEqgg,1051 +django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po,sha256=1ku9WPcenn47DOF05HL2eRqghZeRYfklo2huYUrkeJ0,1266 +django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo,sha256=Lzl9gXdkji1Eg4vKahCW8ZIJY8U1hBs52O2hQftopPc,1086 +django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po,sha256=YY0C2qJRSc1cX__k-vm4LXhJZJl731NXYe2w3gTSCGU,1351 +django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo,sha256=gr8UGpZMY39rE8z0vNEDQyxh_ZD7lC3Py8Dj4B24iHg,1098 +django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po,sha256=wycvlyGUXqjmDSg0FluwvM4XpY2NU0oaKob02Q7236s,1391 +django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo,sha256=U-RemvFRnmWnRDBADa3r4tlbwUFBIUCf7aLdd3sJazE,1239 +django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po,sha256=V6smnquz_1esdvNi-dmuHzRNXqs-AjfWSKq2NJq2GPY,1469 +django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo,sha256=1_yGL68sK0QG_mhwFAVdksiDlB57_1W5QkL7NGGE5L0,1429 +django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po,sha256=fr8rGQDWgUQSv-ZjXhSAR5P_zWLhQ7bq1cHLKIzY4bY,1649 +django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo,sha256=SNY0vydwLyR2ExofAHjmg1A2ykoLI7vU5Ryq-QFu5Gs,627 +django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po,sha256=PU-NAl6xUEeGV0jvJx9siVBTZIzHywL7oKc4DgUjNkc,1130 +django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo,sha256=BXifukxf48Lr0t0V3Y0GJUMhD1KiHN1wwbueoK0MW1A,678 +django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po,sha256=fTPlBbnaNbLZxjzJutGvqe33t6dWsEKiHQYaw27m7KQ,1123 +django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo,sha256=a4sDGaiyiWn-1jFozYI4vdAvuHXrs8gbZErP_SAUk9Y,714 +django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po,sha256=QDD_q_loZtGRlhmaqgNDtJ_5AjVFQ8fSmypvaWLOwp4,1162 +django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo,sha256=myRfFxf2oKcbpmCboongTsL72RTM95nEmAC938M-ckE,1089 +django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po,sha256=uui_LhgGTrW0uo4p-oKr4JUzhjvkLbFCqRVLNMrptzY,1383 +django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po,sha256=dwVKpCRYmXTD9h69v5ivkZe-yFtvdZNZ3VfuyIl4olY,989 +django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo,sha256=HucsRl-eqfxw6ESTuXvl7IGjPGYSI9dxM5lMly_P1sc,1215 +django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po,sha256=odzYqHprxKFIrR8TzdxA4WeeMK0W0Nvn2gAVuzAsEqI,1488 +django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo,sha256=nWfy7jv2VSsKYT6yhk_xqxjk1TlppJfsQcurC40CeTs,1065 +django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po,sha256=pHlbzgRpIJumDMp2rh1EKrxFBg_DRcvLLgkQ3mi_L0s,1356 +django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo,sha256=KTFZWm0F4S6lmi1FX76YKOyJqIZN5cTsiTBI_D4ADHs,1258 +django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po,sha256=mQZosS90S-Bil6-EoGjs9BDWYlvOF6mtUDZ8h9NxEdE,1534 +django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo,sha256=rtmLWfuxJED-1KuqkUT8F5CU1KGJP0Of718n2Gl_gI0,1378 +django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po,sha256=Z-kL9X9CD7rYfa4Uoykye2UgCNQlgyql0HTv1eUXAf4,1634 +django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo,sha256=J6kKYjUOsQxptNXDcCaY4d3dHJio4HRibRk3qfwO6Xc,1225 +django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po,sha256=x8aRJH2WQvMBBWlQt3T3vpV4yHeZXLmRTT1U0at4ZIk,1525 +django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po,sha256=FgZKD9E-By0NztUnBM4llpR59K0MJSIMZIrJYGKDqpc,983 +django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo,sha256=YYa2PFe9iJygqL-LZclfpgR6rBmIvx61JRpBkKS6Hrs,1554 +django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po,sha256=6F3nXd9mBc-msMchkC8OwAHME1x1O90xrsZp7xmynpU,1732 +django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo,sha256=RMxLSKOqQ6omrnSlAoRohWOEC0SBwYwJyO6QGaPo5KU,1081 +django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po,sha256=xgm6KYjgFPyYM0HXu3qY6uamoyeuhJ8xR_KBWLZ6IY0,1382 +django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo,sha256=-zZAn5cex4PkScoZVqS74PUMThJJuovZSk3WUKZ8hnw,1344 +django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po,sha256=1ZCUkulQ9Gxb50yMKFKWaTJli2SinBeNj0KpXkKpsNE,1519 +django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo,sha256=aXDHgg891TyTiMWNcbNaahfZQ2hqtl5yTkx5gNRocMU,1040 +django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po,sha256=zDJ_vyQxhP0mP06U-e4p6Uj6v1g863s8oaxc0JIAMjg,1396 +django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo,sha256=jfxiglKOxjX2xdbLDnJhujJiGcbDJv3NDcUUCWrZmuU,1054 +django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po,sha256=c1sz3ssHULL1c5gpbEOy4Xo2Nh0_2ar_Zg4nECouM4k,1299 +django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo,sha256=QV533Wu-UpjV3XiCe83jlz7XGuwgRviV0ggoeMaIOIY,1116 +django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po,sha256=UZahnxo8z6oWJfEz4JNHGng0EAifXYtJupB6lx0JB60,1334 +django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo,sha256=qacd7eywof8rvJpstNfEmbHgvDiQ9gmkcyG7gfato8s,697 +django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po,sha256=Kq2NTzdbgq8Q9jLLgV-ZJaSRj43D1dDHcRIgNnJXu-s,1145 +django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo,sha256=J5sC36QwKLvrMB4adsojhuw2kYuEckHz6eoTrZwYcnI,1208 +django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po,sha256=gxP59PjlIHKSiYZcbgIY4PUZSoKYx4YKCpm4W4Gj22g,1577 +django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo,sha256=MjyyKlA75YtEG9m6hm0GxKhU-cF3m1PA_j63BuIPPlE,1125 +django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po,sha256=X2Rec6LXIqPa9AVqF4J2mzYrwfls1BdUfN8XOe0zkdQ,1379 +django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo,sha256=dNyjcuuOHAJQpbjSY3o7FImhmDGpIEuSyOvlxmSIOI8,1112 +django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po,sha256=-Vl4bmkjnmEeJ8S8F1nYf6HgXrnKe0K93dl-MhwRjEM,1446 +django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo,sha256=sCthDD10v7GY2cui9Jj9HK8cofVEg2WERCm6aktOM-4,1142 +django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po,sha256=n-BPEfua0Gd6FN0rsP7qAlTGbQEZ14NnDMA8jI2844Y,1407 +django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo,sha256=EYIBQ4DumWdn6zC8Oy2QDdMsdwDZz4patKbuhFxN1AY,1426 +django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po,sha256=YULjNSTutYL3FhT4njhz9pQiP_xmoAVuJTBb1Hzio04,1728 +django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo,sha256=Wkcfu7VTpa6IMqGHUH6Rra42ydbyyaLnMa6wg137E7o,1104 +django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po,sha256=oFmpjsUP8WXXd6TpObHcnM-mstebPAB4wCjsluH5EFc,1398 +django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo,sha256=sMML-ubI_9YdKptzeri1du8FOdKcEzJbe4Tt0J4ePFI,1147 +django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po,sha256=0zxiyzRWWDNVpNNLlcwl-OLh5sLukma1vm-kYrGHYrE,1392 +django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo,sha256=jYDQH3OpY4Vx9hp6ISFMI88uxBa2GDQK0BkLGm8Qulk,1066 +django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po,sha256=JIvguXVOFpQ3MRqRXHpxlg8_YhEzCsZBBMdpekYTxlk,1322 +django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo,sha256=PGihuAsBD_pc1ww4UILWtWgaGhn-IsBi5leknCCrPoU,1265 +django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po,sha256=YHZOZ3UsDAL7GCZGwpVPaqC1hI-ksHt1oOzMy13Ugu4,1531 +django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=COMPdT_5SOn_x7yc27_A2gudPaTPJOCMVckSohEXLVs,1098 +django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po,sha256=E3H73fIXuvf_00NSENk8_2f_jeKnb9GT0ICx_Wwx1XU,1381 +django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo,sha256=I5bmwlJ8jVHoJW6-uGZ6r8FRIEVdg3xQseenfnhKkpg,1066 +django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po,sha256=KybZ8wY7r_ZU0beG8plP36ba8CEMKa3MTWwbL_Sf8zg,1331 +django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo,sha256=XLPle0JYPPkmm5xpJRmWztMTF1_3a2ZubWE4ur2sav8,563 +django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po,sha256=jRc8Eh6VuWgqc4kM-rxjbVE3yV9uip6mOJLdD6yxGLM,1009 +django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo,sha256=L3eF4z9QSmIPqzEWrNk8-2uLteQUMsuxiD9VZyRuSfo,678 +django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po,sha256=iDb9lRU_-YPmO5tEQeXEZeGeFe-wVZy4k444sp_vTgw,1123 +django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo,sha256=S_UF_mZbYfScD6Z36aB-kwtTflTeX3Wt4k7z_pEcOV8,690 +django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po,sha256=aAGMMoJPg_pF9_rCNZmda5A_TvDCvQfYEL64Xdoa4jo,1135 +django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo,sha256=qilt-uZMvt0uw-zFz7-eCmkGEx3XYz7NNo9Xbq3s7uI,1186 +django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po,sha256=42F34fNEn_3yQKBBJnCLttNeyktuLVpilhMyepOd6dg,1444 +django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo,sha256=gKg2FCxs2fHpDB1U6gh9xrP7mOpYG65pB4CNmdPYiDg,1057 +django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po,sha256=8M7-d8Kd36LCY2ysOh10VDsHW6j8QrXCsps5_B1KOKU,1348 +django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo,sha256=_LQ1N04FgosdDLUYXJOEqpCB2Mg92q95cBRgYPi1MyY,659 +django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po,sha256=L7wMMpxGnpQiKd_mjv2bJpE2iqCJ8XwiXK0IN4EHSbM,1110 +django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po,sha256=YVyej0nAhhEf7knk4vCeRQhmSQeGZLhMPPXyIyWObnM,977 +django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo,sha256=LK_0RNZeRjH6l6F3IS_FfyGrnjjst__pSU-7SIfqMV4,1382 +django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po,sha256=hckQ42e_T3As0Yq_1yLwU3pX5wpcBdZyd7h2uin3bhw,1707 +django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo,sha256=OJs_EmDBps-9a_KjFJnrS8IqtJfd25LaSWeyG8u8UfI,671 +django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po,sha256=f0FnsaAM_qrBuCXzLnkBrW5uFfVc6pUh7S-qp4918Ng,1122 +django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo,sha256=kGYgEI1gHkyU4y_73mBJN1hlKC2JujVXMg6iCdWncDg,1155 +django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po,sha256=RIDUgsElfRF8bvBdUKtshizuMnupdMGAM896s7qZKD4,1439 +django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=KTYCw4pEOPOfAObHiyBQTzZBX1mY0r9095QLAZfjvQM,1062 +django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po,sha256=bJp1GCxJwVfqD-rMAWTBg9OLIKginTCMs0V6mESrVrc,1353 +django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=NMumOJ9dPX-7YjQH5Obm4Yj0-lnGXJmCMN5DGbsLQG4,1046 +django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po,sha256=7WIqYRpcs986MjUsegqIido5k6HG8d3FVvkrOQCRVCI,1338 +django/contrib/contenttypes/management/__init__.py,sha256=4qqSk-HQnfglLXE-piPnWybc2Y8hzUwzducRwe-LesQ,4868 +django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py,sha256=dPxDDpEOHsoRoeHYosHn59oEYYo31RPmo2dM8dTnu0U,3282 +django/contrib/contenttypes/migrations/0001_initial.py,sha256=o3bVVr-O_eUNiloAC1z-JIHDoCJQ4ifdA-6DhdVUrp8,1157 +django/contrib/contenttypes/migrations/0002_remove_content_type_name.py,sha256=4h1AUWSWAvwfEMAaopJZce-yNj1AVpCYFAk2E-Ur-wM,1103 +django/contrib/contenttypes/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/flatpages/__init__.py,sha256=pa6Mmr3sfZ2KBkXHAvYIw_haRx8tSqTNZluUKg5zQCk,69 +django/contrib/flatpages/admin.py,sha256=m_TsFRA36bunPrg2dSdxDJpWLfJkiaVmE3kcYAO9trY,654 +django/contrib/flatpages/apps.py,sha256=EMKrGuulQwqXlcGKRvmISVaiqSNVwwUetEeEo3PTjxA,198 +django/contrib/flatpages/forms.py,sha256=ERJoDr3Sjzkwpu0d3RmHTAoNXt-O-KY-b0EpAikZ66o,2387 +django/contrib/flatpages/middleware.py,sha256=aXeOeOkUmpdkGOyqZnkR-l1VrDQ161RWIWa3WPBhGac,784 +django/contrib/flatpages/models.py,sha256=r-zYgTku2-ZC2ryx_YlACp1KvJYizzPHMO58pnFWzqs,1493 +django/contrib/flatpages/sitemaps.py,sha256=0WGMLfr61H5aVX1inE4X_BJhx2b_lw4LKMO4OQGiDX4,554 +django/contrib/flatpages/urls.py,sha256=v_bP8Axlf0XLgb2kJVdEPDqW8WY7RkwSwm7_BH_0eWE,179 +django/contrib/flatpages/views.py,sha256=ywkDuZHZwu_kZx6frjAFt7MAB3mo6-mLicyByw13EfY,2723 +django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo,sha256=c0XEKXJYgpy2snfmWFPQqeYeVla1F5s_wXIBaioiyPc,2297 +django/contrib/flatpages/locale/af/LC_MESSAGES/django.po,sha256=_psp14JfICDxrKx_mKF0uLnItkJPkCNMvrNOyE35nFw,2428 +django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo,sha256=G1GCOfhvPoJA5XpI3hE6zIxyhgec1ZUjHEt4lprfRr4,2475 +django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po,sha256=ZypIMRzRQA72sV4lVB8RVUtLjcmbqhow97-e20R02uk,2732 +django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo,sha256=4SEsEE2hIZJwQUNs8jDgN6qVynnUYJUIE4w-usHKA6M,924 +django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po,sha256=5UlyS59bVo1lccM6ZgdYSgHe9NLt_WeOdXX-swLKubU,1746 +django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo,sha256=_7vXhoLm5K8LuzkNOXK-D0DIP0XFF-EcDM0DPF-BZjI,2235 +django/contrib/flatpages/locale/az/LC_MESSAGES/django.po,sha256=HDo3gW0Pz4L3KZkVJMbFfFKrgMTjXuPAtgBMArsR78I,2496 +django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo,sha256=mOQlbfwwIZiwWCrFStwag2irCwsGYsXIn6wZDsPRvyA,2978 +django/contrib/flatpages/locale/be/LC_MESSAGES/django.po,sha256=wlIfhun5Jd6gxbkmmYPSIy_tzPVmSu4CjMwPzBNnvpo,3161 +django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo,sha256=p3RZmS9PAqdlAmbc7UswSoG0t1eeuXYDp1WZ3mWfFow,2569 +django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po,sha256=DqRp9KTLxks9tNEXs2g_jvIp7dI92jXLkKNDNyLhHac,2779 +django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo,sha256=2oK2Rm0UtAI7QFRwpUR5aE3-fOltE6kTilsTbah737Y,2988 +django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po,sha256=QrbX69iqXOD6oByLcgPkD1QzAkfthpfTjezIFQ-6kVg,3172 +django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo,sha256=SKbykdilX_NcpkVi_lHF8LouB2G49ZAzdF09xw49ERc,2433 +django/contrib/flatpages/locale/br/LC_MESSAGES/django.po,sha256=O_mwrHIiEwV4oB1gZ7Yua4nVKRgyIf3j5UtedZWAtwk,2783 +django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo,sha256=bd7ID7OsEhp57JRw_TXoTwsVQNkFYiR_sxSkgi4WvZU,1782 +django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po,sha256=IyFvI5mL_qesEjf6NO1nNQbRHhCAZQm0UhIpmGjrSwQ,2233 +django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo,sha256=EyMOB0PboHHBg90oMvqLkfTBhBv8tgCAhvIHva8udr4,2258 +django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po,sha256=5rpcdQuv5FhvhJ0N_H5iDEuCM7eHEtwjUdG5GD_mYto,2567 +django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo,sha256=8nwep22P86bMCbW7sj4n0BMGl_XaJIJV0fjnVp-_dqY,2340 +django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po,sha256=1agUeRthwpam1UvZY4vRnZtLLbiop75IEXb6ul_e3mg,2611 +django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo,sha256=zr_2vsDZsrby3U8AmvlJMU3q1U_4IrrTmz6oS29OWtQ,2163 +django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po,sha256=E_NC_wtuhWKYKB3YvYGB9ccJgKI3AfIZlB2HpXSyOsk,2370 +django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo,sha256=nALoI50EvFPa4f3HTuaHUHATF1zHMjo4v5zcHj4n6sA,2277 +django/contrib/flatpages/locale/da/LC_MESSAGES/django.po,sha256=j4dpnreB7LWdZO7Drj7E9zBwFx_Leuj7ZLyEPi-ccAQ,2583 +django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo,sha256=v4pUUVzPH3UBtzBuCBSJsHYzaltnzB-0rI-ls6h1e1M,2216 +django/contrib/flatpages/locale/de/LC_MESSAGES/django.po,sha256=ArWO6LbvSwJmStJLmdUXeXuMS_EtHeQc-4V235941Bk,2378 +django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo,sha256=N4BRieE_dA-ggQLtG3XouzmilwPw7yyQWhIibqOnt-0,2398 +django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po,sha256=pAsTk2Eo9Qn2C_ichVi4TsqLEbMuckAAGs5hLwL5h98,2537 +django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo,sha256=WxBbtlMvLwH2e7KUP7RcrxgEHP4DC9MKiO_KLCuFbmc,2870 +django/contrib/flatpages/locale/el/LC_MESSAGES/django.po,sha256=oIgwZoftZQVOrfsTDdL8iN9CpPN7UdmkCfpFOJoNHt0,3141 +django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/flatpages/locale/en/LC_MESSAGES/django.po,sha256=0bNWKiu-1MkHFJ_UWrCLhp9ENr-pHzBz1lkhBkkrhJM,2169 +django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo,sha256=cuifXT2XlF4c_bR6ECRhlraSZyA7q4ZLhUgwvW73miw,486 +django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po,sha256=ZMAJRrjovd_cdWvzkuEiJ-9ZU9rqRTwoA3x8uY2khcs,1533 +django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo,sha256=7zyXYOsqFkUGxclW-VPPxrQTZKDuiYQ7MQJy4m8FClo,1989 +django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po,sha256=oHrBd6lVnO7-SdnO-Taa7iIyiqp_q2mQZjkuuU3Qa_s,2232 +django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo,sha256=EiyCzj22pdY0PboTmlaPgZdwRiuGuevHHzJcgU96su0,2295 +django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po,sha256=WXTOk4Al2MlbfgWcHqBcwiY8HEzjVynds_3o-XJqhfg,2578 +django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo,sha256=aglISA-piajtIN46RnR2cBSV7tECsiLuXkpEqdGe9Bk,2293 +django/contrib/flatpages/locale/es/LC_MESSAGES/django.po,sha256=mvQNUGNYQQR_-T0UOAB5UpabocGNbn4kUk4mL0SOPVs,2674 +django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo,sha256=bUnFDa5vpxl27kn2ojTbNaCmwRkBCH-z9zKXAvXe3Z0,2275 +django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po,sha256=vEg3wjL_7Ee-PK4FZTaGRCXFscthkoH9szJ7H01K8w8,2487 +django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo,sha256=jt8wzeYky5AEnoNuAv8W4nGgd45XsMbpEdRuLnptr3U,2140 +django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po,sha256=xrbAayPoxT7yksXOGPb-0Nc-4g14UmWANaKTD4ItAFA,2366 +django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo,sha256=Y5IOKRzooJHIhJzD9q4PKOe39Z4Rrdz8dBKuvmGkqWU,2062 +django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po,sha256=Y-EXhw-jISttA9FGMz7gY_kB-hQ3wEyKEaOc2gu2hKQ,2246 +django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo,sha256=EI6WskepXUmbwCPBNFKqLGNcWFVZIbvXayOHxOCLZKo,2187 +django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po,sha256=ipG6a0A2d0Pyum8GcknA-aNExVLjSyuUqbgHM9VdRQo,2393 +django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo,sha256=1pqbiN3UlyuN26dXLazlUUZudJEjyjaPEb2D2jejd38,2095 +django/contrib/flatpages/locale/et/LC_MESSAGES/django.po,sha256=4yQAnUtnnqzAjRAAZD95Z69gLqkXgDVko4xeg24dOaU,2302 +django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo,sha256=FoKazUkuPpDgsEEI6Gm-xnZYVHtxILiy6Yzvnu8y-L0,2244 +django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po,sha256=POPFB5Jd8sE9Z_ivYSdnet14u-aaXneTUNDMuOrJy00,2478 +django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo,sha256=Zc-OsiwBJYrvVY6tefxec0VC97uD8__foLTLT_V0rCY,2459 +django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po,sha256=H48bg8qlnzAQn22fEYZbYV_PhTiTao7KAezN5BekDyE,2717 +django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo,sha256=K_-A8ccHnFcWnViuPAKR7IxhcG0YWNG7iCKYOxxXgMg,2127 +django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po,sha256=-Ik04K4va6HcOoG8bWukAsHThf3IWREZGeRzewYfC7o,2366 +django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo,sha256=ZqD4O3_Ny8p5i6_RVHlANCnPiowMd19Qi_LOPfTHav4,2430 +django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po,sha256=liAoOgT2CfpANL_rYzyzsET1MhsM19o7wA2GBnoDvMA,2745 +django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo,sha256=DRsFoZKo36F34XaiQg_0KUOr3NS_MG3UHptzOI4uEAU,476 +django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po,sha256=9JIrRVsPL1m0NPN6uHiaAYxJXHp5IghZmQhVSkGo5g8,1523 +django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo,sha256=KKvDhZULHQ4JQ_31ltLkk88H2BKUbBXDQFSvdKFqjn8,2191 +django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po,sha256=Yat7oU2XPQFQ8vhNq1nJFAlX2rqfxz4mjpU5TcnaYO8,2400 +django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo,sha256=FC4qtdjuLYBtEtORo74AaRAQF4FUdj4RWg6Bn1wpY3c,2295 +django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po,sha256=SYC8csqVmTyI1OYFj41YSHcm_WEo0O8BK_VbIBC1Cng,2423 +django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo,sha256=VXyPsc6cXB97dJJFGfD8Oh2lYpn8TFYjIOeFUQeYpVU,2039 +django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po,sha256=MzE7lepmRu60wy9gn6Wxx-LtKIO9JwScSdJ3SyLRU9s,2366 +django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo,sha256=3IzEeNWqOl9OA3eD1wGYtj9mNjBiqrb9ZstkyTL_l-w,2548 +django/contrib/flatpages/locale/he/LC_MESSAGES/django.po,sha256=JVNRxTOdAHlpyC3Ctw0i1nj0sFMbBQSete8quWAA-Q4,2777 +django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo,sha256=w29ukoF48C7iJ6nE045YoWi7Zcrgu_oXoxT-r6gcQy8,2770 +django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po,sha256=nXq5y1FqMGVhpXpQVdV3uU5JcUtBc2BIrf-n__C2q30,3055 +django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo,sha256=Mt4gpBuUXvcBl8K714ls4PimHQqee82jFxY1BEAYQOE,2188 +django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po,sha256=ZbUMJY6a-os-xDmcDCJNrN4-YqRe9b_zJ4V5gt2wlGI,2421 +django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo,sha256=ITxM4Yl1IvKC3PIh4nrVWfU4i52KIMSRUbUgotA-tuY,2384 +django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po,sha256=S69IIggzzgv1RaJQmCXTy6kRLbd3kqS9TI5DgT0gWtY,2520 +django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo,sha256=rZxICk460iWBubNq53g9j2JfKIw2W7OqyPG5ylGE92s,2363 +django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po,sha256=DDP7OLBkNbWXr-wiulmQgG461qAubJ8VrfCCXbyPk2g,2700 +django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo,sha256=qocNtyLcQpjmGqQ130VGjJo-ruaOCtfmZehS9If_hWk,2536 +django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po,sha256=WD8ohMnsaUGQItyqQmS46d76tKgzhQ17X_tGevqULO0,2619 +django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo,sha256=bochtCPlc268n0WLF0bJtUUT-XveZLPOZPQUetnOWfU,500 +django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po,sha256=gOJ850e8sFcjR2G79zGn3_0-9-KSy591i7ketBRFjyw,1543 +django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo,sha256=Rd_xkvYoD15_gKAC2oP-iGutDUZCe3G4tpVoNsZ4KUg,2236 +django/contrib/flatpages/locale/id/LC_MESSAGES/django.po,sha256=oubDeX4_ccixc4VNwIJkRiVgYQQmoEEbWUWmWOV6mF0,2467 +django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo,sha256=N8R9dXw_cnBSbZtwRbX6Tzw5XMr_ZdRkn0UmsQFDTi4,464 +django/contrib/flatpages/locale/io/LC_MESSAGES/django.po,sha256=_pJveonUOmMu3T6WS-tV1OFh-8egW0o7vU3i5YqgChA,1511 +django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo,sha256=lFtP1N5CN-x2aMtBNpB6j5HsZYZIZYRm6Y-22gNe1Ek,2229 +django/contrib/flatpages/locale/is/LC_MESSAGES/django.po,sha256=9e132zDa-n6IZxB8jO5H8I0Wr7ubYxrFEMBYj2W49vI,2490 +django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo,sha256=U3Esxa7Hc6ox6dC8mr-6pbqbg29w3-hq7exSoHamROQ,2245 +django/contrib/flatpages/locale/it/LC_MESSAGES/django.po,sha256=obw6oujMNgnZgoeKMtRVTZfhxtGxHDJcNQovStAmjCg,2467 +django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo,sha256=0m18iVnCHzf7piLN2v-WeM68dZjP08Gt54rRoPvHBNU,2494 +django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po,sha256=wKJ-DRslfYhxK7jeSMtMTAOwTWJ1_QU-wvBEhQ9ZThg,2783 +django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo,sha256=R4OSbZ-lGxMdeJYsaXVXpo6-KSZWeKPuErKmEsUvEQE,3022 +django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po,sha256=YCVnkX9uayvAQjYy_2jS7fYb36meoMJTKSc2lfoUbeM,3301 +django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo,sha256=lMPryzUQr21Uy-NAGQhuIZjHz-4LfBHE_zxEc2_UPaw,2438 +django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po,sha256=3y9PbPw-Q8wM7tCq6u3KeYUT6pfTqcQwlNlSxpAXMxQ,2763 +django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo,sha256=FYRfhNSqBtavYb10sHZNfB-xwLwdZEfVEzX116nBs-k,1942 +django/contrib/flatpages/locale/km/LC_MESSAGES/django.po,sha256=d2AfbR78U0rJqbFmJQvwiBl_QvYIeSwsPKEnfYM4JZA,2471 +django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo,sha256=n5HCZEPYN_YIVCXrgA1qhxvfhZtDbhfiannJy5EkHkI,1902 +django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po,sha256=o9xnLjwDw7L49Mkyr8C6aQZ13Yq5MYx1JYXEtcIsiWU,2437 +django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo,sha256=ehwhiy0x7bgBrY_UtNwvCktLC8g44iMVOElR0CJL6zs,2285 +django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po,sha256=2_fhKNsIUf5AnOLpvCwhjkCBuDDMvIb5KlVK3PkFt7Y,2686 +django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo,sha256=Wkvlh5L_7CopayfNM5Z_xahmyVje1nYOBfQJyqucI_0,502 +django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po,sha256=gGeTuniu3ZZ835t9HR-UtwCcd2s_Yr7ihIUm3jgQ7Y0,1545 +django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo,sha256=es6xV6X1twtqhIMkV-MByA7KZ5SoVsrx5Qh8BuzJS0Q,2506 +django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po,sha256=T__44veTC_u4hpPvkLekDOWfntXYAMzCd5bffRtGxWA,2779 +django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo,sha256=RJbVUR8qS8iLL3dD5x1TOau4hcdscHUJBfxge3p3dsM,2359 +django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po,sha256=M6GT6S-5-7__RtSbJ9oqkIlxfU3FIWMlGAQ03NEfcKo,2610 +django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo,sha256=55H8w6fB-B-RYlKKkGw3fg2m-djxUoEp_XpupK-ZL70,2699 +django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po,sha256=OhHJ5OVWb0jvNaOB3wip9tSIZ1yaPPLkfQR--uUEyUI,2989 +django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo,sha256=xBigFnQjazp9yPqMdSk5lmSVzTyFyyMxPR4IamS3BNA,3565 +django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po,sha256=bdUaZ2dKlW_Wr3HXryRQ0nIZ4yc1pvNj3US24kOkGII,3821 +django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo,sha256=tqwROY6D-bJ4gbDQIowKXfuLIIdCWksGwecL2sj_wco,2776 +django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po,sha256=jqiBpFLXlptDyU4F8ZWbP61S4APSPh0-nuTpNOejA6c,3003 +django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo,sha256=GvSfsp0Op7st6Ifd8zp8Cj4tTHoFMltQb4p64pebrqI,468 +django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po,sha256=sayU0AfVaSFpBj0dT32Ri55LRafQFUHLi03K06kI7gc,1515 +django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo,sha256=OcbiA7tJPkyt_WNrqyvoFjHt7WL7tMGHV06AZSxzkho,507 +django/contrib/flatpages/locale/my/LC_MESSAGES/django.po,sha256=EPWE566Vn7tax0PYUKq93vtydvmt-A4ooIau9Cwcdfc,1550 +django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo,sha256=dBs5KtfQCt5z1cxJNPrm_AIMTfebhfFWdUJoKcB3LcI,2196 +django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po,sha256=sCXLT1Ps6WmLrbvj4WzqkPgXy1P4cAJRSD8FZEaF0UQ,2551 +django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo,sha256=gDZKhcku1NVlSs5ZPPupc7RI8HOF7ex0R4Rs8tMmrYE,1500 +django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po,sha256=GWlzsDaMsJkOvw2TidJOEf1Fvxx9WxGdGAtfZIHkHwk,2178 +django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo,sha256=_yV_-SYYjpbo-rOHp8NlRzVHFPOSrfS-ndHOEJ9JP3Y,2231 +django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po,sha256=xUuxx2b4ZTCA-1RIdoMqykLgjLLkmpO4ur1Vh93IITU,2669 +django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo,sha256=A50zQJ-0YYPjPCeeEa-gwqA2N5eON13YW8SJZvtJBZc,1693 +django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po,sha256=H5hnBsH3sUdlPkMjxiqNnh8izcrTSAs6o-ywlNCTKtw,2119 +django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo,sha256=cXGTA5M229UFsgc7hEiI9vI9SEBrNQ8d3A0XrtazO6w,2329 +django/contrib/flatpages/locale/os/LC_MESSAGES/django.po,sha256=m-qoTiKePeFviKGH1rJRjZRH-doJ2Fe4DcZ6W52rG8s,2546 +django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo,sha256=69_ZsZ4nWlQ0krS6Mx3oL6c4sP5W9mx-yAmOhZOnjPU,903 +django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po,sha256=N6gkoRXP5MefEnjywzRiE3aeU6kHQ0TUG6IGdLV7uww,1780 +django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo,sha256=5M5-d-TOx2WHlD6BCw9BYIU6bYrSR0Wlem89ih5k3Pc,2448 +django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po,sha256=oKeeo-vNfPaCYVUbufrJZGk0vsgzAE0kLQOTF5qHAK4,2793 +django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo,sha256=xD2pWdS3XMg7gAqBrUBmCEXFsOzEs0Npe8AJnlpueRY,2115 +django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po,sha256=-K2jipPUWjXpfSPq3upnC_bvtaRAeOw0OLRFv03HWFY,2326 +django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo,sha256=QBrD3JxBjq8PRB-VZjkaqDRKS3rXkmNrGYwFsMvle-0,2274 +django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po,sha256=wtj6fD32hd9NqIyP1m3w7QUbyJ8hN3WDOkb5-sj68yc,2771 +django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo,sha256=oS3MXuRh2USyLOMrMH0WfMSFpgBcZWfrbCrovYgbONo,2337 +django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po,sha256=UNKGNSZKS92pJDjxKDLqVUW87DKCWP4_Q51xS16IZl0,2632 +django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo,sha256=wR8PsYu1LFuE5L29g4W-vLX2Py0juKcVaryfCqZvu2c,2966 +django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po,sha256=dml7ipThZdNLm5BXG5TxqQmKTiJqcmosP7OHuXHNnIo,3263 +django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo,sha256=f_qbUdkwYKzg3DQT5x-ab883NUWF80gNMc7yekFctPM,2145 +django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po,sha256=OD_E2Z-nElhfFcsnuK8Y3r341OXjLON2CoWjNJfHIt8,2482 +django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo,sha256=MBjwhw6wppQUl0Lb_rShXZj_Sq-JLSkdYU5Xhi0OtYY,2173 +django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po,sha256=6zbOXzkLTsdWRKAhuLzBVBc53n6MQKpvOeHw4cRrAlc,2400 +django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo,sha256=Jv2sebdAM6CfiLzgi1b7rHo5hp-6_BFeeMQ4_BwYpjk,2328 +django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po,sha256=Xm87FbWaQ1JGhhGx8uvtqwUltkTkwk5Oysagu8qIPUA,2548 +django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo,sha256=ThYTwsaxEtcEPoh9BZ9Ag_QY0qNZu3oEqFr-A2TZf5E,2755 +django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po,sha256=kHv5vT5i_0CfH-decXgAUvDmU4P6_bRcF0gh9XUFDw8,3045 +django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=DRemg_nTBYpH5qoofYbe_VwerYeMl1kSzwrwfrs133s,2307 +django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po,sha256=57cHJ7Tkap5UE0VDpL1CvFDTapfaM5KYOx8_DqpE-e8,2552 +django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo,sha256=ATOsOiNTLlCDWZO630xUUdnXfs7YW4nuqy9wUVOfzmU,2288 +django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po,sha256=4bhfJNUKc1K1Z8IWSB9_YQVk_Gy3q4ZhkhfDS9FKaaw,2562 +django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo,sha256=Lhf99AGmazKJHzWk2tkGrMInoYOq0mtdCd8SGblnVCQ,1537 +django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po,sha256=cos3eahuznpTfTdl1Vj_07fCOSYE8C9CRYHCBLYZrVw,1991 +django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo,sha256=nNuoOX-FPAmTvM79o7colM4C7TtBroTFxYtETPPatcQ,1945 +django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po,sha256=XE4SndPZPLf1yXGl5xQSb0uor4OE8CKJ0EIXBRDA3qU,2474 +django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo,sha256=bMxhDMTQc_WseqoeqJMCSNy71o4U5tJZYgD2G0p-jD0,1238 +django/contrib/flatpages/locale/te/LC_MESSAGES/django.po,sha256=tmUWOrAZ98B9T6Cai8AgLCfb_rLeoPVGjDTgdsMOY1Y,2000 +django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo,sha256=mct17_099pUn0aGuHu8AlZG6UqdKDpYLojqGYDLRXRg,2698 +django/contrib/flatpages/locale/th/LC_MESSAGES/django.po,sha256=PEcRx5AtXrDZvlNGWFH-0arroD8nZbutdJBe8_I02ag,2941 +django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo,sha256=pPNGylfG8S0iBI4ONZbky3V2Q5AG-M1njp27tFrhhZc,2290 +django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po,sha256=0ULZu3Plp8H9zdirHy3MSduJ_QRdpoaaivf3bL9MCwA,2588 +django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo,sha256=9RfCKyn0ZNYsqLvFNmY18xVMl7wnmDq5uXscrsFfupk,2007 +django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po,sha256=SUwalSl8JWI9tuDswmnGT8SjuWR3DQGND9roNxJtH1o,2402 +django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo,sha256=7KhzWgskBlHmi-v61Ax9fjc3NBwHB17WppdNMuz-rEc,490 +django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po,sha256=zidjP05Hx1OpXGqWEmF2cg9SFxASM4loOV85uW7zV5U,1533 +django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo,sha256=4LPDGENnexeg6awO1IHjau7CTZ0Y1EIkeXMspY9gj1Q,2962 +django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po,sha256=15bRsN4P6kkY08RXROnl7aT63tWsRO1xNwdH-6Qlzcw,3289 +django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo,sha256=Li4gVdFoNOskGKAKiNuse6B2sz6ePGqGvZu7aGXMNy0,1976 +django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po,sha256=hDasKiKrYov9YaNIHIpoooJo0Bzba___IuN2Hl6ofSc,2371 +django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo,sha256=FsFUi96oGTWGlZwM4qSMpuL1M2TAxsW51qO70TrybSM,1035 +django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po,sha256=ITX3MWd7nlWPxTCoNPl22_OMLTt0rfvajGvTVwo0QC8,1900 +django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=0laVf3Ma-KSXHMTBPOGCP46Ftmz2XcA77rVZWuf3FeM,2127 +django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po,sha256=jDjc6Jyvd5l62rdyb828Z7xDhat7tI8pMmipNRHwsho,2456 +django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Y5nDMQ3prLJ6OHuQEeEqjDLBC9_L-4XHDGJSLNoCgqg,2200 +django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po,sha256=6dKCSJpw_8gnunfTY86_apXdH5Pqe0kKYSVaqRtOIh0,2475 +django/contrib/flatpages/migrations/0001_initial.py,sha256=zVtNxBNTvznGkrbNsuidl2wDwS_SOYe9ndqL5cMVXSY,1720 +django/contrib/flatpages/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/flatpages/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/flatpages/templatetags/flatpages.py,sha256=q0wsGQqXHhSCH4_UR-wHkj_pJsxBOo_liODBT_BZcTc,3561 +django/contrib/gis/__init__.py,sha256=GTSQJbKqQkNiljWZylYy_ofRICJeqIkfqmnC9ZdxZ2I,57 +django/contrib/gis/apps.py,sha256=YkIbEk4rWlbN0zZru2uewGsLzqWsMDl7yqA4g_5pT10,341 +django/contrib/gis/feeds.py,sha256=43TmSa40LR3LguE4VDeBThJZgO_rbtfrT5Y6DQ7RBiQ,5732 +django/contrib/gis/geometry.py,sha256=sTXZdh3D1UGGDBP-WZ2jvLUVstcJ_2Kn1_PlKJshNDo,677 +django/contrib/gis/measure.py,sha256=lRedUttyyugxiinBZpRUJuAz2YUYRciieujzzN0G6as,12010 +django/contrib/gis/ptr.py,sha256=RK-5GCUUaQtBuDD3lAoraS7G05fzYhR5p0acKrzpQVE,1289 +django/contrib/gis/shortcuts.py,sha256=fHf3HYP6MP8GeuBW6G3y6d30Mjxa6IL2xtmblDjS8k4,1027 +django/contrib/gis/views.py,sha256=zZfnPHc8wxomPp9NcpOfISLhwBKkVG-EtRTm90d2X_Q,700 +django/contrib/gis/admin/__init__.py,sha256=Hni2JCw5ihVuor2HupxDffokiBOG11tu74EcKhiO89w,486 +django/contrib/gis/admin/options.py,sha256=z4UrI7Pzb73FsT2WgIMX9zsMG_Hg6g89vkkvgKPHOz8,5145 +django/contrib/gis/admin/widgets.py,sha256=_X3Li-k9q0m7soBvu0Vu3jwwmODZWTx9A3IswYKeXLM,4720 +django/contrib/gis/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/utils.py,sha256=y4q0N0oDplot6dZQIFnjGPqVsTiGyLTmEMt5-xj-2b4,784 +django/contrib/gis/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/base/adapter.py,sha256=zBcccriBRK9JowhREgLKirkWllHzir0Hw3BkC3koAZs,481 +django/contrib/gis/db/backends/base/features.py,sha256=L2Hzj-SXIRO1xeFFGI8DQvCR8NLqC-Yji2qQaqpGSWw,3403 +django/contrib/gis/db/backends/base/models.py,sha256=vkDweNsExmKWkHNSae9G6P-fT-SMdIgHZ85i31ihXg0,3962 +django/contrib/gis/db/backends/base/operations.py,sha256=grWhhhANmi2jFxvf6hWLGrs2WUgNv6f7GqX8lJU2S9E,6371 +django/contrib/gis/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/mysql/base.py,sha256=rz8tnvXJlY4V6liWxYshuxQE-uTNuKSBogCz_GtXoaY,507 +django/contrib/gis/db/backends/mysql/features.py,sha256=CDZbLeMgcGRdqwRtyup7V9cL_j_YpyCzOdIBy0Cn1Z0,919 +django/contrib/gis/db/backends/mysql/introspection.py,sha256=QuoJOaHeTxqr0eju8HWA5AmzGYpC15Kt9U5uCNxJWHA,1834 +django/contrib/gis/db/backends/mysql/operations.py,sha256=x6UOXQznv9jVA-41b3QklZPM6RpgTh6FjVjJCFEm-d8,3816 +django/contrib/gis/db/backends/mysql/schema.py,sha256=gNRnWxZAVKL1T7KN0jS7aXFXTnzlIKFvPX4UliQQZfY,2989 +django/contrib/gis/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/oracle/adapter.py,sha256=y9ewCXAoQZ4iXCHzf_bsRwSXpCHdK9HJyUZy_1AiA40,1872 +django/contrib/gis/db/backends/oracle/base.py,sha256=NQYlEvE4ioobvMd7u2WC7vMtDiRq_KtilGprD6qfJCo,516 +django/contrib/gis/db/backends/oracle/features.py,sha256=deYDVaXK22Hx_LsrN8eTnh-u0vNMG3nrLV-fLtzavKU,463 +django/contrib/gis/db/backends/oracle/introspection.py,sha256=CDfl9M9PcCXu5KfLbXOjwEfMvxd5smcI4yTFT5KnXsg,1810 +django/contrib/gis/db/backends/oracle/models.py,sha256=pT32f_A1FRYwO5hWMigX7PU_ojpRmIhdUlhOqdz2R9k,2084 +django/contrib/gis/db/backends/oracle/operations.py,sha256=aPK2dQ2jTQHIf5mhi5VHLVcr_4i0KyFG99ILqsbW2Qc,8319 +django/contrib/gis/db/backends/oracle/schema.py,sha256=wnb56CJ9Er40E4Yw7RK1hOOYZAHRJJFbNGNK9E9IHRk,3916 +django/contrib/gis/db/backends/postgis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/postgis/adapter.py,sha256=jDa5X2uIj6qRpgJ8DUfEkWBZETMifyxqDtnkA73kUu8,2117 +django/contrib/gis/db/backends/postgis/base.py,sha256=sFCNoMHRzd-a_MRc9hv-tyVHEODmGveyIopbP6CTPCg,937 +django/contrib/gis/db/backends/postgis/const.py,sha256=He7mVpJrJdbMGjPAgHRXkmm225CuVxVc-viiJSTKOik,1482 +django/contrib/gis/db/backends/postgis/features.py,sha256=iBZqX6o1YBrmw5pSUYeft-ga6FGa05J-9ADFNsRtLgk,422 +django/contrib/gis/db/backends/postgis/introspection.py,sha256=htz45PonMVDsdiSLsQJg4xOlysaXdaXdyjiDNJxm6WI,2977 +django/contrib/gis/db/backends/postgis/models.py,sha256=tKiRZzO6p2YJnPbPXReMlFcAiFij-C_H_6w8FHhLqxk,2000 +django/contrib/gis/db/backends/postgis/operations.py,sha256=TXJ_kNNJCf63PJ9lJe6jq_hHCrIbcuf_VUIpzquFN7E,15763 +django/contrib/gis/db/backends/postgis/pgraster.py,sha256=_XKNfncFbEPgeiHCfkZmQv8rjnCNN0r90pa4DZSOW00,4444 +django/contrib/gis/db/backends/postgis/schema.py,sha256=GGK3PSohXwRWhoHaxGBXHnDkZdUSiz8TxOalgdDFcNQ,2676 +django/contrib/gis/db/backends/spatialite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/spatialite/adapter.py,sha256=y74p_UEgLtoYjNZEi72mwcJOh_b-MzJ7sZd68WJXBiY,317 +django/contrib/gis/db/backends/spatialite/base.py,sha256=pg7m0arvmnwOsDJo-Mj9NudCclRMThEhQzDBjQWQLNI,3011 +django/contrib/gis/db/backends/spatialite/client.py,sha256=NsqD2vAnfjqn_FbQnCQeAqbGyZf9oa6gl7EPsMTPf8c,138 +django/contrib/gis/db/backends/spatialite/features.py,sha256=HeeWFDRGxkgfTQ_ryzEKzRxJPnf5BJVs0ifYs8SEIXU,449 +django/contrib/gis/db/backends/spatialite/introspection.py,sha256=NQ2T3GsDYBrbTiVzjWPp_RElKMP-qNxUiGEnOFZTSrg,3076 +django/contrib/gis/db/backends/spatialite/models.py,sha256=iiodcKYWAMIz_xrJagr-1nbiiO2YJY_Q0vt_0uyaD54,1928 +django/contrib/gis/db/backends/spatialite/operations.py,sha256=uKOiTvtRxOuDVqcixkmZnAdlHW6Jc-giCKMuY8bm86E,7789 +django/contrib/gis/db/backends/spatialite/schema.py,sha256=WLvCcCOqdTcBmsjaBNt15YwVzE05vXzQVvfGva6q1Xo,6838 +django/contrib/gis/db/models/__init__.py,sha256=BR3kQAefIv4O1NksiVCUShwlSO4OCNoUGan6dCRGIyU,817 +django/contrib/gis/db/models/aggregates.py,sha256=O8ANjyiMG2eA92_efLfecr06UfLHWCxf4id7joCmFHA,2617 +django/contrib/gis/db/models/fields.py,sha256=MVNAJGtH4EDCpXg4n3m6fF8hFmRVQ3UAswR14luNVhM,13755 +django/contrib/gis/db/models/functions.py,sha256=_PJLaml8yKa_tp1V2PnGXtT5c6UGSKohjzws5ozzgCo,16843 +django/contrib/gis/db/models/lookups.py,sha256=CnMztjyT3OLUEOv_mNf0nwW5BfdsjXc0rXvYLqV6NSg,11479 +django/contrib/gis/db/models/proxy.py,sha256=BSZoCQ1IG8n_M6dSOdF3wAzIHfMElSVnIGu8ZWj1-_0,3122 +django/contrib/gis/db/models/sql/__init__.py,sha256=oYJYL-5DAO-DIcpIQ7Jmeq_cuKapRB83V1KLVIs_5iU,139 +django/contrib/gis/db/models/sql/conversion.py,sha256=gG1mTUWb33YK_Uf1ZJRg5MRhkCTLtgajD3xxi7thODA,2400 +django/contrib/gis/forms/__init__.py,sha256=fREam1OSkDWr9ugUMNZMFn8Y9TufpRCn3Glj14DTMbQ,298 +django/contrib/gis/forms/fields.py,sha256=hlOZOkuKR2Q8wcl-3u5h6S6CUYBTtYQheeOtaVGiPBg,4460 +django/contrib/gis/forms/widgets.py,sha256=J8EMJkmHrGkZVqf6ktIwZbO8lYmg63CJQbUYILVsVNc,3739 +django/contrib/gis/gdal/LICENSE,sha256=VwoEWoNyts1qAOMOuv6OPo38Cn_j1O8sxfFtQZ62Ous,1526 +django/contrib/gis/gdal/__init__.py,sha256=Zs9bOGm9RStYhhlWCnqRNChJG4K_oWDPRXYylplur1Q,1760 +django/contrib/gis/gdal/base.py,sha256=yymyL0vZRMBfiFUzrehvaeaunIxMH5ucGjPRfKj-rAo,181 +django/contrib/gis/gdal/datasource.py,sha256=xY5noWAHNAXWvb_QfzkqQRCUpTbxrJ0bhlBTtgO_gnc,4490 +django/contrib/gis/gdal/driver.py,sha256=E7Jj4z3z--WC2Idm5GvYtDGGErdtm1tAqzN8Lil-yRg,3264 +django/contrib/gis/gdal/envelope.py,sha256=lL13BYlaEyxDNkCJCPnFZk13eyRb9pOkOOrAdP16Qtw,6970 +django/contrib/gis/gdal/error.py,sha256=yv9yvtBPjLWRqQHlzglF-gLDW-nR7zF_F5xsej_oBx4,1576 +django/contrib/gis/gdal/feature.py,sha256=KYGyQYNWXrEJm2I0eIG1Kcd7WTOZWiC-asIjF5DmO9I,3926 +django/contrib/gis/gdal/field.py,sha256=AerdJ9sLeru9Z39PEtTAXp14vabMcwX_LIZjg0EyDAE,6626 +django/contrib/gis/gdal/geometries.py,sha256=o3GwG5VzZGsTlcmefOMgtNG4mU03jqhIg0GJUAP9C8s,23907 +django/contrib/gis/gdal/geomtype.py,sha256=hCHfxQsecBakIZUDZwEkECdH7dg3CdF4Y_kAFYkW9Og,3071 +django/contrib/gis/gdal/layer.py,sha256=2PPP3lpmljIA-KcuN1FI5dNQPkELR3eyPmarP2KYfYk,8527 +django/contrib/gis/gdal/libgdal.py,sha256=RrAQl4j78SBA9X4OmSGU_MKGxyM05Y6Q9WIx3l9WNLI,3570 +django/contrib/gis/gdal/srs.py,sha256=iw-8TlKCieXezGo-F_DrXFPvvpXBiNO4TdHqIB_VEII,11538 +django/contrib/gis/gdal/prototypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/gdal/prototypes/ds.py,sha256=GnxQ4229MOZ5NQjJTtmCcstxGPH6HhUd9AsCWsih6_s,4586 +django/contrib/gis/gdal/prototypes/errcheck.py,sha256=ckjyqcZtrVZctrw-HvQb1isDavhUAblLqKuno9U4upw,4137 +django/contrib/gis/gdal/prototypes/generation.py,sha256=9UdPSqWR28AsUG7HDdHMRG2nI1-iKr1ru1V998uifP8,4867 +django/contrib/gis/gdal/prototypes/geom.py,sha256=ELRO7bR8RxO3HIuxtitr06yhsG4DxYTlRsTa6NenTqI,4946 +django/contrib/gis/gdal/prototypes/raster.py,sha256=zPIc-Vahtau1XQTADqxQNtzcAv6LunbhVHkWkMOEWKo,5690 +django/contrib/gis/gdal/prototypes/srs.py,sha256=kjOJRI4dl5p0Fx-n04K8o1IGWB9feeysIc_ix82Tq-c,3541 +django/contrib/gis/gdal/raster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/gdal/raster/band.py,sha256=dRikGQ6-cKCgOj3bjRSnIKd196FGRGM2Ee9BtPQGVk0,8247 +django/contrib/gis/gdal/raster/base.py,sha256=WLdZNgRlGAT6kyIXz5bBhPbpNY53ImxQkSeVLyv4Ohc,2861 +django/contrib/gis/gdal/raster/const.py,sha256=uPk8859YSREMtiQtXGkVOhISmgsF6gXP7JUfufQDXII,2891 +django/contrib/gis/gdal/raster/source.py,sha256=0S4n2Z1ybgwMjceZVjGOUkk9d1vwCLkeOBpsQpM5QJA,16632 +django/contrib/gis/geoip2/__init__.py,sha256=uIUWQyMsbSrYL-oVqFsmhqQkYGrh7pHLIVvIM3W_EG4,822 +django/contrib/gis/geoip2/base.py,sha256=yx8gZUBCkrVurux06tuJhnXsamzj7hg0iiGFYmfu0yE,8976 +django/contrib/gis/geoip2/resources.py,sha256=u39vbZzNV5bQKS0nKb0VbHsSRm3m69r29bZwpNbNs3Y,819 +django/contrib/gis/geos/LICENSE,sha256=CL8kt1USOK4yUpUkVCWxyuua0PQvni0wPHs1NQJjIEU,1530 +django/contrib/gis/geos/__init__.py,sha256=DXFaljVp6gf-E0XAbfO1JnYjPYSDfGZQ2VLtGYBcUZQ,648 +django/contrib/gis/geos/base.py,sha256=NdlFg5l9akvDp87aqzh9dk0A3ZH2TI3cOq10mmmuHBk,181 +django/contrib/gis/geos/collections.py,sha256=yUMj02Akhu1BN9zpaPMSaoyfpRJWi282kkY_R6MF-kY,3895 +django/contrib/gis/geos/coordseq.py,sha256=cMGg3XPm2x3VYjkYys8rojRG7uzMez8FpOr2HD-Jy8Q,6419 +django/contrib/gis/geos/error.py,sha256=r3SNTnwDBI6HtuyL3mQ_iEEeKlOqqqdkHnhNoUkMohw,104 +django/contrib/gis/geos/factory.py,sha256=f6u2m1AtmYYHk_KrIC9fxt7VGsJokJVoSWEx-DkPWx0,961 +django/contrib/gis/geos/geometry.py,sha256=J1qUZYTxLLxMTP1d5-809LqoePwmhtECCUgZMGeGY0s,25524 +django/contrib/gis/geos/io.py,sha256=Om5DBSlttixUc3WQAGZDhzPdb5JTe82728oImIj_l3k,787 +django/contrib/gis/geos/libgeos.py,sha256=XBJefzNjX1yFXVzncVYET0zM3jeMjpNh4d4ax5vOdWw,5106 +django/contrib/gis/geos/linestring.py,sha256=NNO9R-RsJ8hrsO0wWO9C26xZ69-pn5TsxDKr0lLIlsQ,6026 +django/contrib/gis/geos/mutable_list.py,sha256=8uJ_9r48AlIIDzYaUb_qAD0eYslek9yvAX9ICdCmh5A,10131 +django/contrib/gis/geos/point.py,sha256=_5UI0cfAax9Q8_UuQeO25E3XhuS8PEVwkeZ2dgO0yQM,4757 +django/contrib/gis/geos/polygon.py,sha256=nAJFsaBXbIM9ZA_gSxVB_3WNXJHwakmhlxN_VzKs4WQ,6664 +django/contrib/gis/geos/prepared.py,sha256=rJf35HOTxPrrk_yA-YR9bQlL_pPDKecuhwZlcww8lxY,1575 +django/contrib/gis/geos/prototypes/__init__.py,sha256=0jfLanLmI1q-3NIpdIZr3EHnMzhPRXMhbCNIHf3glfI,1221 +django/contrib/gis/geos/prototypes/coordseq.py,sha256=Cq7HqMVXt8F-0C1cOfYfkapHY0t5ZNu9v7h7_YLD5mo,2993 +django/contrib/gis/geos/prototypes/errcheck.py,sha256=YTUBFoHU5pZOAamBPgogFymDswgnMr1_KL59sZfInYo,2654 +django/contrib/gis/geos/prototypes/geom.py,sha256=FoWEduMbbWb6_blM2IJOP_WkYCVISLksuXOaFAL_9c8,3565 +django/contrib/gis/geos/prototypes/io.py,sha256=V2SlUEniZGfVnj_9r17XneT7w-OoCUpkL_sumKIhLbU,11229 +django/contrib/gis/geos/prototypes/misc.py,sha256=7Xwk0HG__JtPt6wJD-ieMkD-7KxpnofYrHSk6NEUeJo,1161 +django/contrib/gis/geos/prototypes/predicates.py,sha256=Ya06ir7LZQBSUypB05iv9gpvZowOSLIKa4fhCnhZuYY,1587 +django/contrib/gis/geos/prototypes/prepared.py,sha256=SC7g9_vvsW_ty7LKqlMzJfF9v3EvsJX9-j3kpSeCRfY,1184 +django/contrib/gis/geos/prototypes/threadsafe.py,sha256=Ll_TmpfJhRTmWV5dgKJx_Dh67ay1pa-SdlH558NRPw4,2309 +django/contrib/gis/geos/prototypes/topology.py,sha256=wd0OxkUQiMNioDXpJdRc1h9swsZ2CeOgqMvHxqJFY5s,2256 +django/contrib/gis/locale/af/LC_MESSAGES/django.mo,sha256=TN3GddZjlqXnhK8UKLlMoMIXNw2szzj7BeRjoKjsR5c,470 +django/contrib/gis/locale/af/LC_MESSAGES/django.po,sha256=XPdXaQsZ6yDPxF3jVMEI4bli_5jrEawoO-8DHMk8Q_A,1478 +django/contrib/gis/locale/ar/LC_MESSAGES/django.mo,sha256=q0DhiLoyS8WBktN150bvtusd885p2E7e23VMFAqJPj0,2428 +django/contrib/gis/locale/ar/LC_MESSAGES/django.po,sha256=rnZPCzub0GRmC3FwmfyhATesLcm4yTRNr8jDSvM9wBQ,2639 +django/contrib/gis/locale/ast/LC_MESSAGES/django.mo,sha256=8o0Us4wR14bdv1M5oBeczYC4oW5uKnycWrj1-lMIqV4,850 +django/contrib/gis/locale/ast/LC_MESSAGES/django.po,sha256=0beyFcBkBOUNvPP45iqewTNv2ExvCPvDYwpafCJY5QM,1684 +django/contrib/gis/locale/az/LC_MESSAGES/django.mo,sha256=i52TIQuWn72ykTPYSRfBgqeJ254hhGt8LvBQHtXCWMg,2013 +django/contrib/gis/locale/az/LC_MESSAGES/django.po,sha256=tXdeAVGebIVd-K1c5ANtQaba5ll_ELIseJdpqC3UUCE,2163 +django/contrib/gis/locale/be/LC_MESSAGES/django.mo,sha256=4B6F3HmhZmk1eLi42Bw90aipUHF4mT-Zlmsi0aKojHg,2445 +django/contrib/gis/locale/be/LC_MESSAGES/django.po,sha256=4QgQvhlM_O4N_8uikD7RASkS898vov-qT_FkQMhg4cE,2654 +django/contrib/gis/locale/bg/LC_MESSAGES/django.mo,sha256=1A5wo7PLz0uWsNMHv_affxjNnBsY3UQNz7zHszu56do,2452 +django/contrib/gis/locale/bg/LC_MESSAGES/django.po,sha256=5Onup09U6w85AFWvjs2QKnYXoMhnnw9u4eUlIa5QoXU,2670 +django/contrib/gis/locale/bn/LC_MESSAGES/django.mo,sha256=7oNsr_vHQfsanyP-o1FG8jZTSBK8jB3eK2fA9AqNOx4,1070 +django/contrib/gis/locale/bn/LC_MESSAGES/django.po,sha256=PTa9EFZdqfznUH7si3Rq3zp1kNkTOnn2HRTEYXQSOdM,1929 +django/contrib/gis/locale/br/LC_MESSAGES/django.mo,sha256=xN8hOvJi_gDlpdC5_lghXuX6yCBYDPfD_SQLjcvq8gU,1614 +django/contrib/gis/locale/br/LC_MESSAGES/django.po,sha256=LQw3Tp_ymJ_x7mJ6g4SOr6aP00bejkjuaxfFFRZnmaQ,2220 +django/contrib/gis/locale/bs/LC_MESSAGES/django.mo,sha256=9EdKtZkY0FX2NlX_q0tIxXD-Di0SNQJZk3jo7cend0A,1308 +django/contrib/gis/locale/bs/LC_MESSAGES/django.po,sha256=eu_qF8dbmlDiRKGNIz80XtIunrF8QIOcy8O28X02GvQ,1905 +django/contrib/gis/locale/ca/LC_MESSAGES/django.mo,sha256=_ghgN_u_2yqPFt8oKksLPQeJxn1dz_o23Z-OAa3xKTQ,2043 +django/contrib/gis/locale/ca/LC_MESSAGES/django.po,sha256=o5dQ-gYO9WPYQf4EFhpl3GLHzu-KU3MDYAn3Y_YVpMs,2313 +django/contrib/gis/locale/cs/LC_MESSAGES/django.mo,sha256=V7MNXNsOaZ3x1G6LqYu6KJn6zeiFQCZKvF7Xk4J0fkg,2071 +django/contrib/gis/locale/cs/LC_MESSAGES/django.po,sha256=mPkcIWtWRILisD6jOlBpPV7CKYJjhTaBcRLf7OqifdM,2321 +django/contrib/gis/locale/cy/LC_MESSAGES/django.mo,sha256=vUG_wzZaMumPwIlKwuN7GFcS9gnE5rpflxoA_MPM_po,1430 +django/contrib/gis/locale/cy/LC_MESSAGES/django.po,sha256=_QjXT6cySUXrjtHaJ3046z-5PoXkCqtOhvA7MCZsXxk,1900 +django/contrib/gis/locale/da/LC_MESSAGES/django.mo,sha256=kH8GcLFe-XvmznQbiY5Ce2-Iz4uKJUfF4Be0yY13AEs,1894 +django/contrib/gis/locale/da/LC_MESSAGES/django.po,sha256=JOVTWeTnSUASbupCd2Fo0IY_veJb6XKDhyKFu6M2J_8,2179 +django/contrib/gis/locale/de/LC_MESSAGES/django.mo,sha256=mI3SuiIrcN27uvquzq7O9wtKIjaVQjHAesncCgBg8_g,1999 +django/contrib/gis/locale/de/LC_MESSAGES/django.po,sha256=4m3n1PEqvjKftQWz4s_ElJzZuCVzdWGbIKEHoBrhEy4,2151 +django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo,sha256=69wcPviGvpI2TxiSEux2GnUo1tu0CeZgQKBjJZrEeRk,2109 +django/contrib/gis/locale/dsb/LC_MESSAGES/django.po,sha256=koNMmuvSPrHBxNsE0EH4zPcDZeFAyBHR_qQnp3HT80o,2226 +django/contrib/gis/locale/el/LC_MESSAGES/django.mo,sha256=8QAS4MCktYLFsCgcIVflPXePYAWwr6iEZ7K8_axi_5U,2519 +django/contrib/gis/locale/el/LC_MESSAGES/django.po,sha256=6JVoYCUCUznxgQYlOCWJw1Ad6SR3Fa9jlorSCYkiwLw,2886 +django/contrib/gis/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/gis/locale/en/LC_MESSAGES/django.po,sha256=8yvqHG1Mawkhx9RqD5tDXX8U0-a7RWr-wCQPGHWAqG0,2225 +django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo,sha256=IPn5kRqOvv5S7jpbIUw8PEUkHlyjEL-4GuOANd1iAzI,486 +django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po,sha256=x_58HmrHRia2LoYhmmN_NLb1J3f7oTDvwumgTo0LowI,1494 +django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo,sha256=WkORQDOsFuV2bI7hwVsJr_JTWnDQ8ZaK-VYugqnLv3w,1369 +django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po,sha256=KWPMoX-X-gQhb47zoVsa79-16-SiCGpO0s4xkcGv9z0,1910 +django/contrib/gis/locale/eo/LC_MESSAGES/django.mo,sha256=qls9V1jybymGCdsutcjP6fT5oMaI-GXnt_oNfwq-Yhs,1960 +django/contrib/gis/locale/eo/LC_MESSAGES/django.po,sha256=WPSkCxwq3ZnR-_L-W-CnS0_Qne3ekX7ZAZVaubiWw5s,2155 +django/contrib/gis/locale/es/LC_MESSAGES/django.mo,sha256=l88snQomLTK7JQQ5MGdUWGf_6MqiyZWqnCuZPAMctoQ,2056 +django/contrib/gis/locale/es/LC_MESSAGES/django.po,sha256=e4YW5wz0R2oI8VmEZGgMsLVycbmv3ILDjetpjS8ZXl4,2423 +django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo,sha256=J-A7H9J3DjwlJ-8KvO5MC-sq4hUsJhmioAE-wiwOA8E,2012 +django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po,sha256=uWqoO-Tw7lOyPnOKC2SeSFD0MgPIQHWqTfroAws24aQ,2208 +django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo,sha256=P79E99bXjthakFYr1BMobTKqJN9S1aj3vfzMTbGRhCY,1865 +django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po,sha256=tyu8_dFA9JKeQ2VCpCUy_6yX97SPJcDwVqqAuf_xgks,2347 +django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo,sha256=bC-uMgJXdbKHQ-w7ez-6vh9E_2YSgCF_LkOQlvb60BU,1441 +django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po,sha256=MYO9fGclp_VvLG5tXDjXY3J_1FXI4lDv23rGElXAyjA,1928 +django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo,sha256=5YVIO9AOtmjky90DAXVyU0YltfQ4NLEpVYRTTk7SZ5o,486 +django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po,sha256=R8suLsdDnSUEKNlXzow3O6WIT5NcboZoCjir9GfSTSQ,1494 +django/contrib/gis/locale/et/LC_MESSAGES/django.mo,sha256=RuQYV9MWvWzcX0lI4ot2cY2_49yJPOqeExNx05MpeFg,1961 +django/contrib/gis/locale/et/LC_MESSAGES/django.po,sha256=4yl0Zfmt0mOSJluCw97oJdiWmf3x84a3qtSQDsUZYv8,2239 +django/contrib/gis/locale/eu/LC_MESSAGES/django.mo,sha256=EChDnXv1Tgk0JvMp3RuDsk-0LkgZ2Xig8nckmikewLA,1973 +django/contrib/gis/locale/eu/LC_MESSAGES/django.po,sha256=sj_W9oCmbYENT-zGnTNtAT-ZsI3z7IOhgUxooQNFbpc,2191 +django/contrib/gis/locale/fa/LC_MESSAGES/django.mo,sha256=40t0F0vpKKPy9NW7OMuY-UnbkOI9ifM33A0CZG8i2dg,2281 +django/contrib/gis/locale/fa/LC_MESSAGES/django.po,sha256=cw9rOxFowluGpekFPAoaPvjAxwUOcXi4szNnCAvsBbI,2589 +django/contrib/gis/locale/fi/LC_MESSAGES/django.mo,sha256=L_1vFA-I0vQddIdLpNyATweN04E5cRw-4Xr81D67Q_c,1946 +django/contrib/gis/locale/fi/LC_MESSAGES/django.po,sha256=WSrldLannVh0Vnmm18X5FwHoieLQYXz0CoF2SY52w0M,2127 +django/contrib/gis/locale/fr/LC_MESSAGES/django.mo,sha256=BpmQ_09rbzFR-dRjX0_SbFAHQJs7bZekLTGwsN96j8A,2052 +django/contrib/gis/locale/fr/LC_MESSAGES/django.po,sha256=Nqsu2ILMuPVFGhHo7vYdQH7lwNupJRjl1SsMmFEo_Dw,2306 +django/contrib/gis/locale/fy/LC_MESSAGES/django.mo,sha256=2kCnWU_giddm3bAHMgDy0QqNwOb9qOiEyCEaYo1WdqQ,476 +django/contrib/gis/locale/fy/LC_MESSAGES/django.po,sha256=7ncWhxC5OLhXslQYv5unWurhyyu_vRsi4bGflZ6T2oQ,1484 +django/contrib/gis/locale/ga/LC_MESSAGES/django.mo,sha256=m6Owcr-5pln54TXcZFAkYEYDjYiAkT8bGFyw4nowNHA,1420 +django/contrib/gis/locale/ga/LC_MESSAGES/django.po,sha256=I0kyTnYBPSdYr8RontzhGPShJhylVAdRLBGWRQr2E7g,1968 +django/contrib/gis/locale/gd/LC_MESSAGES/django.mo,sha256=GR9860LI6qrGdaqUYG8GskC_EeGHBetVojk0TSTIIO8,2142 +django/contrib/gis/locale/gd/LC_MESSAGES/django.po,sha256=l9fNaI3A5mmULDsg-D-cc-hhlGOYlP4JrxJJn4YU4hM,2260 +django/contrib/gis/locale/gl/LC_MESSAGES/django.mo,sha256=4OUuNpkYRWjKz_EoY1zDzKOK8YptrwUutQqFvSKsLUs,1421 +django/contrib/gis/locale/gl/LC_MESSAGES/django.po,sha256=s9tiYQLnv1_uzyLpi3qqV_zwJNic1AGFsUGc3FhJbMo,2006 +django/contrib/gis/locale/he/LC_MESSAGES/django.mo,sha256=CxVl9Ny_dasVLNhXxJwBOxIVdmpR6m-MuIF6V_Si9RE,2236 +django/contrib/gis/locale/he/LC_MESSAGES/django.po,sha256=XyDF1lnHjUW6rId5dW0-zBt336rkXjR8-bUOzW2nJCM,2393 +django/contrib/gis/locale/hi/LC_MESSAGES/django.mo,sha256=3nsy5mxKTPtx0EpqBNA_TJXmLmVZ4BPUZG72ZEe8OPM,1818 +django/contrib/gis/locale/hi/LC_MESSAGES/django.po,sha256=jTFG2gqqYAQct9-to0xL2kUFQu-ebR4j7RGfxn4sBAg,2372 +django/contrib/gis/locale/hr/LC_MESSAGES/django.mo,sha256=0XrRj2oriNZxNhEwTryo2zdMf-85-4X7fy7OJhB5ub4,1549 +django/contrib/gis/locale/hr/LC_MESSAGES/django.po,sha256=iijzoBoD_EJ1n-a5ys5CKnjzZzG299zPoCN-REFkeqE,2132 +django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo,sha256=hA9IBuEZ6JHsTIVjGZdlvD8NcFy6v56pTy1fmA_lWwo,2045 +django/contrib/gis/locale/hsb/LC_MESSAGES/django.po,sha256=LAGSJIa6wd3Dh4IRG5DLigL-mjQzmYwn0o2RmSAdBdw,2211 +django/contrib/gis/locale/hu/LC_MESSAGES/django.mo,sha256=9P8L1-RxODT4NCMBUQnWQJaydNs9FwcAZeuoVmaQUDY,1940 +django/contrib/gis/locale/hu/LC_MESSAGES/django.po,sha256=qTC31EofFBS4HZ5SvxRKDIt2afAV4OS52_LYFnX2OB8,2261 +django/contrib/gis/locale/hy/LC_MESSAGES/django.mo,sha256=4D6em091yzO4s3U_DIdocdlvxtAbXdMt6Ig1ATxRGrQ,2535 +django/contrib/gis/locale/hy/LC_MESSAGES/django.po,sha256=0nkAba1H7qrC5JSakzJuAqsldWPG7lsjH7H8jVfG1SU,2603 +django/contrib/gis/locale/ia/LC_MESSAGES/django.mo,sha256=9MZnSXkQUIfbYB2f4XEtYo_FzuVi5OlsYcX9K_REz3c,1899 +django/contrib/gis/locale/ia/LC_MESSAGES/django.po,sha256=f7OuqSzGHQNldBHp62VIWjqP0BB0bvo8qEx9_wzH090,2116 +django/contrib/gis/locale/id/LC_MESSAGES/django.mo,sha256=FPjGhjf4wy-Wi6f3GnsBhmpBJBFnAPOw5jUPbufHISM,1938 +django/contrib/gis/locale/id/LC_MESSAGES/django.po,sha256=ap7GLVlZO6mmAs6PHgchU5xrChWF-YbwtJU7t0tqz0k,2353 +django/contrib/gis/locale/io/LC_MESSAGES/django.mo,sha256=_yUgF2fBUxVAZAPNw2ROyWly5-Bq0niGdNEzo2qbp8k,464 +django/contrib/gis/locale/io/LC_MESSAGES/django.po,sha256=fgGJ1xzliMK0MlVoV9CQn_BuuS3Kl71Kh5YEybGFS0Y,1472 +django/contrib/gis/locale/is/LC_MESSAGES/django.mo,sha256=UQb3H5F1nUxJSrADpLiYe12TgRhYKCFQE5Xy13MzEqU,1350 +django/contrib/gis/locale/is/LC_MESSAGES/django.po,sha256=8QWtgdEZR7OUVXur0mBCeEjbXTBjJmE-DOiKe55FvMo,1934 +django/contrib/gis/locale/it/LC_MESSAGES/django.mo,sha256=px9x5hMusGf2LB2Vz9AijSpeppg3gUCI0dHfBb_F44A,2009 +django/contrib/gis/locale/it/LC_MESSAGES/django.po,sha256=RZRPvW8eAvd0-KnEQ0lPz0gSPmvq1um0rsEgmoIQMsU,2309 +django/contrib/gis/locale/ja/LC_MESSAGES/django.mo,sha256=knTOfVviVceaAEp9xeh4WUE-ro2lkUIUTtkA-9yk3Bs,2124 +django/contrib/gis/locale/ja/LC_MESSAGES/django.po,sha256=mqD9ZpqXvAL7adXVWyVlIyD7meIcyXI6RXqRQD5cRm8,2287 +django/contrib/gis/locale/ka/LC_MESSAGES/django.mo,sha256=iqWQ9j8yanPjDhwi9cNSktYgfLVnofIsdICnAg2Y_to,1991 +django/contrib/gis/locale/ka/LC_MESSAGES/django.po,sha256=tWoXkbWfNsZ2A28_JUvc1wtyVT6m7Hl9nJgfxXGqkgY,2566 +django/contrib/gis/locale/kk/LC_MESSAGES/django.mo,sha256=NtgQONp0UncUNvrh0W2R7u7Ja8H33R-a-tsQShWq-QI,1349 +django/contrib/gis/locale/kk/LC_MESSAGES/django.po,sha256=_wNvDk36C_UegH0Ex6ov8P--cKm-J7XtusXYsjVVZno,1974 +django/contrib/gis/locale/km/LC_MESSAGES/django.mo,sha256=T0aZIZ_gHqHpQyejnBeX40jdcfhrCOjgKjNm2hLrpNE,459 +django/contrib/gis/locale/km/LC_MESSAGES/django.po,sha256=7ARjFcuPQJG0OGLJu9pVfSiAwc2Q-1tT6xcLeKeom1c,1467 +django/contrib/gis/locale/kn/LC_MESSAGES/django.mo,sha256=EkJRlJJSHZJvNZJuOLpO4IIUEoyi_fpKwNWe0OGFcy4,461 +django/contrib/gis/locale/kn/LC_MESSAGES/django.po,sha256=NM3FRy48SSVsUIQc8xh0ZKAgTVAP8iK8elp7NQ6-IdE,1469 +django/contrib/gis/locale/ko/LC_MESSAGES/django.mo,sha256=7SSr6cP3b0vM5z224tJIqmwwWWHGoU0al4LNGbwxtQM,1975 +django/contrib/gis/locale/ko/LC_MESSAGES/django.po,sha256=aXVjYftxj1FONeotkCZkAoQxCCFs5cYb4ceGPSnUScA,2299 +django/contrib/gis/locale/lb/LC_MESSAGES/django.mo,sha256=XAyZQUi8jDr47VpSAHp_8nQb0KvSMJHo5THojsToFdk,474 +django/contrib/gis/locale/lb/LC_MESSAGES/django.po,sha256=5rfudPpH4snSq2iVm9E81EBwM0S2vbkY2WBGhpuga1Q,1482 +django/contrib/gis/locale/lt/LC_MESSAGES/django.mo,sha256=9I8bq0gbDGv7wBe60z3QtWZ5x_NgALjCTvR6rBtPPBY,2113 +django/contrib/gis/locale/lt/LC_MESSAGES/django.po,sha256=jD2vv47dySaH1nVzzf7mZYKM5vmofhmaKXFp4GvX1Iw,2350 +django/contrib/gis/locale/lv/LC_MESSAGES/django.mo,sha256=KkVqgndzTA8WAagHB4hg65PUvQKXl_O79fb2r04foXw,2025 +django/contrib/gis/locale/lv/LC_MESSAGES/django.po,sha256=21VWQDPMF27yZ-ctKO-f0sohyvVkIaTXk9MKF-WGmbo,2253 +django/contrib/gis/locale/mk/LC_MESSAGES/django.mo,sha256=PVw73LWWNvaNd95zQbAIA7LA7JNmpf61YIoyuOca2_s,2620 +django/contrib/gis/locale/mk/LC_MESSAGES/django.po,sha256=eusHVHXHRfdw1_JyuBW7H7WPCHFR_z1NBqr79AVqAk0,2927 +django/contrib/gis/locale/ml/LC_MESSAGES/django.mo,sha256=Kl9okrE3AzTPa5WQ-IGxYVNSRo2y_VEdgDcOyJ_Je78,2049 +django/contrib/gis/locale/ml/LC_MESSAGES/django.po,sha256=PWg8atPKfOsnVxg_uro8zYO9KCE1UVhfy_zmCWG0Bdk,2603 +django/contrib/gis/locale/mn/LC_MESSAGES/django.mo,sha256=-Nn70s2On94C-jmSZwTppW2q7_W5xgMpzPXYmxZSKXs,2433 +django/contrib/gis/locale/mn/LC_MESSAGES/django.po,sha256=I0ZHocPlRYrogJtzEGVPsWWHpoVEa7e2KYP9Ystlj60,2770 +django/contrib/gis/locale/mr/LC_MESSAGES/django.mo,sha256=sO2E__g61S0p5I6aEwnoAsA3epxv7_Jn55TyF0PZCUA,468 +django/contrib/gis/locale/mr/LC_MESSAGES/django.po,sha256=McWaLXfWmYTDeeDbIOrV80gwnv07KCtNIt0OXW_v7vw,1476 +django/contrib/gis/locale/my/LC_MESSAGES/django.mo,sha256=e6G8VbCCthUjV6tV6PRCy_ZzsXyZ-1OYjbYZIEShbXI,525 +django/contrib/gis/locale/my/LC_MESSAGES/django.po,sha256=R3v1S-904f8FWSVGHe822sWrOJI6cNJIk93-K7_E_1c,1580 +django/contrib/gis/locale/nb/LC_MESSAGES/django.mo,sha256=AmVS8gbKlqYHpr-v2UdOuYt17wO2WMhVJzfDWX6Tl78,1930 +django/contrib/gis/locale/nb/LC_MESSAGES/django.po,sha256=psdNBDn8IvOyAChU7NqUKIOIssUocfQKSsXnt-89fd8,2146 +django/contrib/gis/locale/ne/LC_MESSAGES/django.mo,sha256=nB-Ta8w57S6hIAhAdWZjDT0Dg6JYGbAt5FofIhJT7k8,982 +django/contrib/gis/locale/ne/LC_MESSAGES/django.po,sha256=eMH6uKZZZYn-P3kmHumiO4z9M4923s9tWGhHuJ0eWuI,1825 +django/contrib/gis/locale/nl/LC_MESSAGES/django.mo,sha256=d22j68OCI1Bevtl2WgXHSQHFCiDgkPXmrFHca_uUm14,1947 +django/contrib/gis/locale/nl/LC_MESSAGES/django.po,sha256=ffytg6K7pTQoIRfxY35i1FpolJeox-fpSsG1JQzvb-0,2381 +django/contrib/gis/locale/nn/LC_MESSAGES/django.mo,sha256=32x5_V6o_BQBefFmyajOg3ssClw-DMEdvzXkY90fV3Q,1202 +django/contrib/gis/locale/nn/LC_MESSAGES/django.po,sha256=NWA3nD8ZwAZxG9EkE6TW0POJgB6HTeC4J6GOlTMD7j4,1796 +django/contrib/gis/locale/os/LC_MESSAGES/django.mo,sha256=02NpGC8WPjxmPqQkfv9Kj2JbtECdQCtgecf_Tjk1CZc,1594 +django/contrib/gis/locale/os/LC_MESSAGES/django.po,sha256=JBIsv5nJg3Wof7Xy7odCI_xKRBLN_Hlbb__kNqNW4Xw,2161 +django/contrib/gis/locale/pa/LC_MESSAGES/django.mo,sha256=JR1NxG5_h_dFE_7p6trBWWIx-QqWYIgfGomnjaCsWAA,1265 +django/contrib/gis/locale/pa/LC_MESSAGES/django.po,sha256=Ejd_8dq_M0E9XFijk0qj4oC-8_oe48GWWHXhvOrFlnY,1993 +django/contrib/gis/locale/pl/LC_MESSAGES/django.mo,sha256=BkGcSOdz9VE7OYEeFzC9OLANJsTB3pFU1Xs8-CWFgb4,2095 +django/contrib/gis/locale/pl/LC_MESSAGES/django.po,sha256=IIy2N8M_UFanmHB6Ajne9g5NQ7tJCF5JvgrzasFUJDY,2531 +django/contrib/gis/locale/pt/LC_MESSAGES/django.mo,sha256=sE5PPOHzfT8QQXuV5w0m2pnBTRhKYs_vFhk8p_A4Jg0,2036 +django/contrib/gis/locale/pt/LC_MESSAGES/django.po,sha256=TFt6Oj1NlCM3pgs2dIgFZR3S3y_g7oR7S-XRBlM4924,2443 +django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo,sha256=5HGIao480s3B6kXtSmdy1AYjGUZqbYuZ9Eapho_jkTk,1976 +django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po,sha256=4-2WPZT15YZPyYbH7xnBRc7A8675875kVFjM9tr1o5U,2333 +django/contrib/gis/locale/ro/LC_MESSAGES/django.mo,sha256=CgEHPVvoOtiUwF6Dp0yb8_1OTQQnw-0jdp3Y4Iq-dUc,1732 +django/contrib/gis/locale/ro/LC_MESSAGES/django.po,sha256=sOTzTV-Bxota1ukWrzdij8Ff7V4JVNm-ShSGeoh_PXI,2143 +django/contrib/gis/locale/ru/LC_MESSAGES/django.mo,sha256=5uccCKKgLtin1jcp_1j4aiv5FEzX6LxRNEL3i11m7ts,2583 +django/contrib/gis/locale/ru/LC_MESSAGES/django.po,sha256=Pvs1ADP2MtalAHAZ04cpQeQPXsKBCVeggPW8GP-nsPQ,2862 +django/contrib/gis/locale/sk/LC_MESSAGES/django.mo,sha256=_LWDbFebq9jEa1YYsSMOruTk0oRaU9sxPGml1YPuink,2010 +django/contrib/gis/locale/sk/LC_MESSAGES/django.po,sha256=Iz_iHKaDzNhLM5vJd3bbzsCXzKhoEGeqECZxEgBIiGc,2244 +django/contrib/gis/locale/sl/LC_MESSAGES/django.mo,sha256=9-efMT2MoEMa5-SApGWTRiyfvI6vmZzLeMg7qGAr7_A,2067 +django/contrib/gis/locale/sl/LC_MESSAGES/django.po,sha256=foZY7N5QkuAQS7nc3CdnJerCPk-lhSb1xZqU11pNGNo,2303 +django/contrib/gis/locale/sq/LC_MESSAGES/django.mo,sha256=WEq6Bdd9fM_aRhWUBpl_qTc417U9708u9sXNgyB8o1k,1708 +django/contrib/gis/locale/sq/LC_MESSAGES/django.po,sha256=mAOImw7HYWDO2VuoHU-VAp08u5DM-BUC633Lhkc3vRk,2075 +django/contrib/gis/locale/sr/LC_MESSAGES/django.mo,sha256=J20yLH-sD2a2KGFqN3GDdJPISOS7YMe9K6UR9ZXlbl4,2442 +django/contrib/gis/locale/sr/LC_MESSAGES/django.po,sha256=cw89jyImmFqspzFVcnkncUNYAH_j3ozId-Ou2lc0L6U,2682 +django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=f_vDMwcdrbaW6ZynN9QZNYB-4TNbZyp4y5UYKCJB7yM,1971 +django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po,sha256=7HvQAUkA1RLQOUWab-NBSunUNde4V0_nHd_Z4UMMCZc,2225 +django/contrib/gis/locale/sv/LC_MESSAGES/django.mo,sha256=XVr0uSQnEIRNJoOpgFlxvYnpF4cGDP2K2oTjqVHhmuA,1987 +django/contrib/gis/locale/sv/LC_MESSAGES/django.po,sha256=fqUAyUbjamnqbdie8Ecek0v99uo-4uUfaSvtFffz8v4,2275 +django/contrib/gis/locale/sw/LC_MESSAGES/django.mo,sha256=uBhpGHluGwYpODTE-xhdJD2e6PHleN07wLE-kjrXr_M,1426 +django/contrib/gis/locale/sw/LC_MESSAGES/django.po,sha256=nHXQQMYYXT1ec3lIBxQIDIAwLtXucX47M4Cozy08kko,1889 +django/contrib/gis/locale/ta/LC_MESSAGES/django.mo,sha256=Rboo36cGKwTebe_MiW4bOiMsRO2isB0EAyJJcoy_F6s,466 +django/contrib/gis/locale/ta/LC_MESSAGES/django.po,sha256=sLYW8_5BSVoSLWUr13BbKRe0hNJ_cBMEtmjCPBdTlAk,1474 +django/contrib/gis/locale/te/LC_MESSAGES/django.mo,sha256=xDkaSztnzQ33Oc-GxHoSuutSIwK9A5Bg3qXEdEvo4h4,824 +django/contrib/gis/locale/te/LC_MESSAGES/django.po,sha256=nYryhktJumcwtZDGZ43xBxWljvdd-cUeBrAYFZOryVg,1772 +django/contrib/gis/locale/th/LC_MESSAGES/django.mo,sha256=0kekAr7eXc_papwPAxEZ3TxHOBg6EPzdR3q4hmAxOjg,1835 +django/contrib/gis/locale/th/LC_MESSAGES/django.po,sha256=WJPdoZjLfvepGGMhfBB1EHCpxtxxfv80lRjPG9kGErM,2433 +django/contrib/gis/locale/tr/LC_MESSAGES/django.mo,sha256=_bNVyXHbuyM42-fAsL99wW7_Hwu5hF_WD7FzY-yfS8k,1961 +django/contrib/gis/locale/tr/LC_MESSAGES/django.po,sha256=W0pxShIqMePnQvn_7zcY_q4_C1PCnWwFMastDo_gHd0,2242 +django/contrib/gis/locale/tt/LC_MESSAGES/django.mo,sha256=cGVPrWCe4WquVV77CacaJwgLSnJN0oEAepTzNMD-OWk,1470 +django/contrib/gis/locale/tt/LC_MESSAGES/django.po,sha256=98yeRs-JcMGTyizOpEuQenlnWJMYTR1-rG3HGhKCykk,2072 +django/contrib/gis/locale/udm/LC_MESSAGES/django.mo,sha256=I6bfLvRfMn79DO6bVIGfYSVeZY54N6c8BNO7OyyOOsw,462 +django/contrib/gis/locale/udm/LC_MESSAGES/django.po,sha256=B1PCuPYtNOrrhu4fKKJgkqxUrcEyifS2Y3kw-iTmSIk,1470 +django/contrib/gis/locale/uk/LC_MESSAGES/django.mo,sha256=5uJgGDDQi8RTRNxbQToKE7FVLOK73w5Wgmf6zCa66Uk,2455 +django/contrib/gis/locale/uk/LC_MESSAGES/django.po,sha256=fsxwSb93uD59ms8jdO84qx8C5rKy74TDcH12yaKs8mY,2873 +django/contrib/gis/locale/ur/LC_MESSAGES/django.mo,sha256=tB5tz7EscuE9IksBofNuyFjk89-h5X7sJhCKlIho5SY,1410 +django/contrib/gis/locale/ur/LC_MESSAGES/django.po,sha256=16m0t10Syv76UcI7y-EXfQHETePmrWX4QMVfyeuX1fQ,2007 +django/contrib/gis/locale/vi/LC_MESSAGES/django.mo,sha256=NT5T0FRCC2XINdtaCFCVUxb5VRv8ta62nE8wwSHGTrc,1384 +django/contrib/gis/locale/vi/LC_MESSAGES/django.po,sha256=y77GtqH5bv1wR78xN5JLHusmQzoENTH9kLf9Y3xz5xk,1957 +django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=Z5u0aytpFDh02hxQTLKyjiBjSd-_cF8DwPOIXvTsPiQ,1852 +django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po,sha256=CaxyL1PxYEYyLBx3w2XOLYgLfeeL6R6Xv6qJ-x7LkAE,2246 +django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=jEgcPJy_WzZa65-5rXb64tN_ehUku_yIj2d7tXwweP8,1975 +django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po,sha256=iVnQKpbsQ4nJi65PHAO8uGRO6jhHWs22gTOUKPpb64s,2283 +django/contrib/gis/management/commands/inspectdb.py,sha256=tpyZFocjeeRN6hE1yXfp1CANzyaQYqQpI8RLhKtGzBA,717 +django/contrib/gis/management/commands/ogrinspect.py,sha256=s07ShXnLoDDhtvzgu1VeRzlxk_o6-RcFflzsbjKZCFk,5720 +django/contrib/gis/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/serializers/geojson.py,sha256=IWR-98IYQXvJSJ4y3d09kh3ZxuFZuEKg-T9eAig5GEA,2710 +django/contrib/gis/sitemaps/__init__.py,sha256=eVHUxfzw1VQn6bqH3D8bE471s8bNJSB3phuAI-zg9gA,138 +django/contrib/gis/sitemaps/kml.py,sha256=kbKyIt-_u7zZJB8uPG4Cfi7axA5ms2ltdonctm5zewA,2413 +django/contrib/gis/sitemaps/views.py,sha256=4xrd2NEQjsPx9582Pa0R2IEzx5NpP5unqCUsPjURgto,2313 +django/contrib/gis/static/gis/css/ol3.css,sha256=pJADzfx4_NL2C1onFpU-muconAA5NThN4sEqSNyY_So,657 +django/contrib/gis/static/gis/img/draw_line_off.svg,sha256=6XW83xsR5-Guh27UH3y5UFn9y9FB9T_Zc4kSPA-xSOI,918 +django/contrib/gis/static/gis/img/draw_line_on.svg,sha256=Hx-pXu4ped11esG6YjXP1GfZC5q84zrFQDPUo1C7FGA,892 +django/contrib/gis/static/gis/img/draw_point_off.svg,sha256=PICrywZPwuBkaQAKxR9nBJ0AlfTzPHtVn_up_rSiHH4,803 +django/contrib/gis/static/gis/img/draw_point_on.svg,sha256=raGk3oc8w87rJfLdtZ4nIXJyU3OChCcTd4oH-XAMmmM,803 +django/contrib/gis/static/gis/img/draw_polygon_off.svg,sha256=gnVmjeZE2jOvjfyx7mhazMDBXJ6KtSDrV9f0nSzkv3A,981 +django/contrib/gis/static/gis/img/draw_polygon_on.svg,sha256=ybJ9Ww7-bsojKQJtjErLd2cCOgrIzyqgIR9QNhH_ZfA,982 +django/contrib/gis/static/gis/js/OLMapWidget.js,sha256=MxTkvtZiu0Ea55FniH-0WyqoySKdrBNkZdmj8DFoeWY,8930 +django/contrib/gis/templates/gis/openlayers-osm.html,sha256=TeiUqCjt73W8Hgrp_6zAtk_ZMBxskNN6KHSmnJ1-GD4,378 +django/contrib/gis/templates/gis/openlayers.html,sha256=P_sBibtZ8ybiBG6dtYbVhRgDYJE-oKYPzl452xad5Ok,1912 +django/contrib/gis/templates/gis/admin/openlayers.html,sha256=GsjT4sNA-2iHRe7PJKsBIGDEAa29vGXwFNNACowj1lw,1867 +django/contrib/gis/templates/gis/admin/openlayers.js,sha256=KoT3VUMAez9-5QoT5U6OJXzt3MLxlTrJMMwINjQ_k7M,8975 +django/contrib/gis/templates/gis/admin/osm.html,sha256=yvYyZPmgP64r1JT3eZCDun5ENJaaN3d3wbTdCxIOvSo,111 +django/contrib/gis/templates/gis/admin/osm.js,sha256=0wFRJXKZ2plp7tb0F9fgkMzp4NrKZXcHiMkKDJeHMRw,128 +django/contrib/gis/templates/gis/kml/base.kml,sha256=VYnJaGgFVHRzDjiFjbcgI-jxlUos4B4Z1hx_JeI2ZXU,219 +django/contrib/gis/templates/gis/kml/placemarks.kml,sha256=TEC81sDL9RK2FVeH0aFJTwIzs6_YWcMeGnHkACJV1Uc,360 +django/contrib/gis/utils/__init__.py,sha256=OmngSNhywEjrNKGXysMlq_iFYvx7ycDWojpCqF6JYLo,579 +django/contrib/gis/utils/layermapping.py,sha256=MpOvn1WrinZhD_D8YYJHHWEsefh15B7kKO3peX5GFZc,27556 +django/contrib/gis/utils/ogrinfo.py,sha256=VmbxQ5Ri4zjtTxNymuxJp3t3cAntUC83YBMp9PuMMSU,1934 +django/contrib/gis/utils/ogrinspect.py,sha256=4lZA5_rbdo-IG7DnqddQyT_2JI_AXhuW9nduBwMWrQY,8924 +django/contrib/gis/utils/srs.py,sha256=5D5lPZwFYgZiVaKD7eCkl9vj-pGRB11HEgeNlxUAjfo,2991 +django/contrib/humanize/__init__.py,sha256=88gkwJxqbRpmigRG0Gu3GNQkXGtTNpica4nf3go-_cI,67 +django/contrib/humanize/apps.py,sha256=ODfDrSH8m3y3xYlyIIwm7DZmrNcoYKG2K8l5mU64V7g,194 +django/contrib/humanize/locale/af/LC_MESSAGES/django.mo,sha256=bNLjjeZ3H-KD_pm-wa1_5eLCDOmG2FXgDHVOg5vgL7o,5097 +django/contrib/humanize/locale/af/LC_MESSAGES/django.po,sha256=p3OduzjtTGkwlgDJhPgSm9aXI2sWzORspsPf7_RnWjs,8923 +django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo,sha256=YSyNaNTh2nILzWMH0F61fl7jX0yb4erZhQO1EBo2HiU,7691 +django/contrib/humanize/locale/ar/LC_MESSAGES/django.po,sha256=VAN7tVSYQZfZV5RfTe-wvQOVA9Q1ylLQRrFb9ihMpqs,11035 +django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo,sha256=WvBk8V6g1vgzGqZ_rR-4p7SMh43PFnDnRhIS9HSwdoQ,3468 +django/contrib/humanize/locale/ast/LC_MESSAGES/django.po,sha256=S9lcUf2y5wR8Ufa-Rlz-M73Z3bMo7zji_63cXwtDK2I,5762 +django/contrib/humanize/locale/az/LC_MESSAGES/django.mo,sha256=UfaC3y6Ln5SzCR6UYUmC3cDSXSUByjeYAPEuZww1Dfw,5175 +django/contrib/humanize/locale/az/LC_MESSAGES/django.po,sha256=OMeHZ41sBTno2jj4-C6bHBsTaVJYz7WWTvSkJdQ7ySE,9128 +django/contrib/humanize/locale/be/LC_MESSAGES/django.mo,sha256=qpbjGVSQnPESRACvTjzc3p5REpxyRGv7qgxQCigrNBY,8409 +django/contrib/humanize/locale/be/LC_MESSAGES/django.po,sha256=pyudF4so8SQG-gfmSNcNdG5BQA27Q0p_nQF1tYMuw88,13148 +django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo,sha256=1mRaFPsm5ITFyfdFdqdeY-_Om2OYKua5YWSEP192WR8,4645 +django/contrib/humanize/locale/bg/LC_MESSAGES/django.po,sha256=kTyRblfWlBUMxd_czXTOe-39CcX68X6e4DTmYm3V2gc,6684 +django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo,sha256=jbL4ucZxxtexI10jgldtgnDie3I23XR3u-PrMMMqP6U,4026 +django/contrib/humanize/locale/bn/LC_MESSAGES/django.po,sha256=0l4yyy7q3OIWyFk_PW0y883Vw2Pmu48UcnLM9OBxB68,6545 +django/contrib/humanize/locale/br/LC_MESSAGES/django.mo,sha256=V_tPVAyQzVdDwWPNlVGWmlVJjmVZfbh35alkwsFlCNU,5850 +django/contrib/humanize/locale/br/LC_MESSAGES/django.po,sha256=BcAqEV2JpF0hiCQDttIMblp9xbB7zoHsmj7fJFV632k,12245 +django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo,sha256=1-RNRHPgZR_9UyiEn9Djp4mggP3fywKZho45E1nGMjM,1416 +django/contrib/humanize/locale/bs/LC_MESSAGES/django.po,sha256=M017Iu3hyXmINZkhCmn2he-FB8rQ7rXN0KRkWgrp7LI,5498 +django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo,sha256=I0A0wyJlSfGw34scNPoj9itqU8iz0twcyxUS15u5nJE,5230 +django/contrib/humanize/locale/ca/LC_MESSAGES/django.po,sha256=t-wxHJ0ZrXrc3bAjavz40eSu5HTJqJjz5wvfdiydJ6k,9153 +django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo,sha256=PJeNGbrXH0yMbwVxv9rpVajMGXDFcTyNCSzJLTQvimA,6805 +django/contrib/humanize/locale/cs/LC_MESSAGES/django.po,sha256=tm42tsSZYzY-a_7szHB9yuJYUffQXz4nfEgvEY9vY9w,11579 +django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo,sha256=VjJiaUUhvX9tjOEe6x2Bdp7scvZirVcUsA4-iE2-ElQ,5241 +django/contrib/humanize/locale/cy/LC_MESSAGES/django.po,sha256=sylmceSq-NPvtr_FjklQXoBAfueKu7hrjEpMAsVbQC4,7813 +django/contrib/humanize/locale/da/LC_MESSAGES/django.mo,sha256=V8u7uq8GNU7Gk3urruDnM2iR6fiio9RvLB8ou4e3EWY,5298 +django/contrib/humanize/locale/da/LC_MESSAGES/django.po,sha256=AnAvSgks2ph0MS2ZJlYKddKwQTbduEIpHK0kzsNphWM,9151 +django/contrib/humanize/locale/de/LC_MESSAGES/django.mo,sha256=7HZDGVn4FuGS2nNqHLg1RrnmQLB2Ansbri0ysHq-GfM,5418 +django/contrib/humanize/locale/de/LC_MESSAGES/django.po,sha256=wNFP1wO9hDhgyntigfVcHr7ZGao8a2PPgU24j4nl_O8,9184 +django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo,sha256=w2rgnclJnn1QQjqufly0NjUlP6kS6N8dcGwhbeBLq-w,7036 +django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po,sha256=AAbtZ32HrIeB1SDn3xenPU8pFUL0Fy6D9eYlObt6EdU,11690 +django/contrib/humanize/locale/el/LC_MESSAGES/django.mo,sha256=o-yjhpzyGRbbdMzwUcG_dBP_FMEMZevm7Wz1p4Wd-pg,6740 +django/contrib/humanize/locale/el/LC_MESSAGES/django.po,sha256=UbD5QEw_-JNoNETaOyDfSReirkRsHnlHeSsZF5hOSkI,10658 +django/contrib/humanize/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/humanize/locale/en/LC_MESSAGES/django.po,sha256=JJny3qazVIDtswuStyS6ZMV0UR0FUPWDqXVZ8PQRuU4,10689 +django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486 +django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po,sha256=dVOlMtk3-d-KrNLM5Rji-Xrk6Y_n801ofjGQvxSu67M,4742 +django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo,sha256=mkx192XQM3tt1xYG8EOacMfa-BvgzYCbSsJQsWZGeAo,3461 +django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po,sha256=MArKzXxY1104jxaq3kvDZs2WzOGYxicfJxFKsLzFavw,5801 +django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo,sha256=b47HphXBi0cax_reCZiD3xIedavRHcH2iRG8pcwqb54,5386 +django/contrib/humanize/locale/eo/LC_MESSAGES/django.po,sha256=oN1YqOZgxKY3L1a1liluhM6X5YA5bawg91mHF_Vfqx8,9095 +django/contrib/humanize/locale/es/LC_MESSAGES/django.mo,sha256=SD1PQS13JgpM7jnvvtKVQYsV6m7IgYdw7cfQ_VW8nag,5440 +django/contrib/humanize/locale/es/LC_MESSAGES/django.po,sha256=MBPPR_43glxHTmNPHy7sdKp5UjeHqe7_GeXkxOy3QGo,9428 +django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo,sha256=w3GNYZ0Cg9u7QTGWWnTPNI5JNS3PQkk0_XOlReDzLa4,5461 +django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po,sha256=zk18690pQF6URZmvOISW6OsoRQNiiU5lt_q07929Rko,9360 +django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo,sha256=2GhQNtNOjK5mTov5RvnuJFTYbdoGBkDGLxzvJ8Vsrfs,4203 +django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po,sha256=JBf2fHO8jWi6dFdgZhstKXwyot_qT3iJBixQZc3l330,6326 +django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo,sha256=82DL2ztdq10X5RIceshK1nO99DW5628ZIjaN8Xzp9ok,3939 +django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po,sha256=-O7AQluA5Kce9-bd04GN4tfQKoCxb8Sa7EZR6TZBCdM,6032 +django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo,sha256=cJECzKpD99RRIpVFKQW65x0Nvpzrm5Fuhfi-nxOWmkM,942 +django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po,sha256=tDdYtvRILgeDMgZqKHSebe7Z5ZgI1bZhDdvGVtj_anM,4832 +django/contrib/humanize/locale/et/LC_MESSAGES/django.mo,sha256=uq4MJ63oINTjeiW8dsd-h7F3Mm95Sccho6_JIHAXhrc,4402 +django/contrib/humanize/locale/et/LC_MESSAGES/django.po,sha256=encp47HDhO8aDbDmOMaI8oZPIc5He70l-fyPBDQlWlA,9069 +django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo,sha256=w2TlBudWWTI1M7RYCl_n2UY7U1CBzxIuwXl-7DCVl8o,5287 +django/contrib/humanize/locale/eu/LC_MESSAGES/django.po,sha256=77QrRqIsMuu-6HxHvaifKsPA9OVZR7686WFp26dQFMg,9146 +django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo,sha256=-EfCvMVkX5VqYlXxiX8fLQntzZx8pBjmjtjvIdsaPvU,5808 +django/contrib/humanize/locale/fa/LC_MESSAGES/django.po,sha256=Xxv-FVTrSjbx0JB33F6O1wBzodwkHJpmTEiNssNTeYQ,9775 +django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo,sha256=qlx3w4Y0CNcC5rIrbig_sqCvKAwh_IS-YseoQX3zymc,4177 +django/contrib/humanize/locale/fi/LC_MESSAGES/django.po,sha256=6xTZvvC_VxAyAQpUibJUDu4V2Gdryy8vJc2OviaYNnw,6180 +django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo,sha256=M7Qw0-T3752Scd4KXukhQHriG_2hgC8zYnGZGwBo_r8,5461 +django/contrib/humanize/locale/fr/LC_MESSAGES/django.po,sha256=xyn-d8-_ozUhfr25hpuUU5IQhZvtNI0JVDoUYoRzO88,9311 +django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/humanize/locale/fy/LC_MESSAGES/django.po,sha256=pPvcGgBWiZwQ5yh30OlYs-YZUd_XsFro71T9wErVv0M,4732 +django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo,sha256=AOEiBNOak_KQkBeGyUpTNO12zyg3CiK66h4kMoS15_0,5112 +django/contrib/humanize/locale/ga/LC_MESSAGES/django.po,sha256=jTXihbd-ysAUs0TEKkOBmXJJj69V0cFNOHM6VbcPCWw,11639 +django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo,sha256=XNSpJUu4DxtlXryfUVeBOrvl2-WRyj2nKjips_qGDOg,7232 +django/contrib/humanize/locale/gd/LC_MESSAGES/django.po,sha256=I7s86NJDzeMsCGgXja--fTZNFm9bM7Cd8M1bstxabSY,11874 +django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo,sha256=ChoVHsJ_bVIaHtHxhxuUK99Zu1tvRu0iY5vhtB1LDMg,3474 +django/contrib/humanize/locale/gl/LC_MESSAGES/django.po,sha256=U5D505aBKEdg80BGWddcwWuzmYdoNHx1WEPzVHQfbTE,5903 +django/contrib/humanize/locale/he/LC_MESSAGES/django.mo,sha256=zV7tqLeq2al9nSDKcTGp7cDD2pEuHD-J_34roqIYvZc,7857 +django/contrib/humanize/locale/he/LC_MESSAGES/django.po,sha256=gvUe-8PJc6dn-6lLpEi_PCDgITgJ6UzZls9cUHSA4Ss,12605 +django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo,sha256=qrzm-6vXIUsxA7nOxa-210-6iO-3BPBj67vKfhTOPrY,4131 +django/contrib/humanize/locale/hi/LC_MESSAGES/django.po,sha256=BrypbKaQGOyY_Gl1-aHXiBVlRqrbSjGfZ2OK8omj_9M,6527 +django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo,sha256=29XTvFJHex31hbu2qsOfl5kOusz-zls9eqlxtvw_H0s,1274 +django/contrib/humanize/locale/hr/LC_MESSAGES/django.po,sha256=OuEH4fJE6Fk-s0BMqoxxdlUAtndvvKK7N8Iy-9BP3qA,5424 +django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo,sha256=4ZQDrpkEyLSRtVHEbP31ejNrR6y-LSNDfW1Hhi7VczI,7146 +django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po,sha256=GtSTgK-cKHMYeOYFvHtcUtUnLyWPP05F0ZM3tEYfshs,11800 +django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo,sha256=8tEqiZHEc6YmfWjf7hO0Fb3Xd-HSleKaR1gT_XFTQ8g,5307 +django/contrib/humanize/locale/hu/LC_MESSAGES/django.po,sha256=KDVYBAGSuMrtwqO98-oGOOAp7Unfm7ode1sv8lfe81c,9124 +django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo,sha256=C1yx1DrYTrZ7WkOzZ5hvunphWABvGX-DqXbChNQ5_yg,1488 +django/contrib/humanize/locale/hy/LC_MESSAGES/django.po,sha256=MGbuYylBt1C5hvSlktydD4oMLZ1Sjzj7DL_nl7uluTg,7823 +django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo,sha256=d0m-FddFnKp08fQYQSC9Wr6M4THVU7ibt3zkIpx_Y_A,4167 +django/contrib/humanize/locale/ia/LC_MESSAGES/django.po,sha256=qX6fAZyn54hmtTU62oJcHF8p4QcYnoO2ZNczVjvjOeE,6067 +django/contrib/humanize/locale/id/LC_MESSAGES/django.mo,sha256=Wb_pFDfiAow4QUsbBiqvRYt49T6cBVFTMTB_F2QUbWI,4653 +django/contrib/humanize/locale/id/LC_MESSAGES/django.po,sha256=sNc4OeIE9wvxxOQlFC9xNawJkLxa2gPUVlaKGljovOw,8116 +django/contrib/humanize/locale/io/LC_MESSAGES/django.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464 +django/contrib/humanize/locale/io/LC_MESSAGES/django.po,sha256=RUs8JkpT0toKOLwdv1oCbcBP298EOk02dkdNSJiC-_A,4720 +django/contrib/humanize/locale/is/LC_MESSAGES/django.mo,sha256=D6ElUYj8rODRsZwlJlH0QyBSM44sVmuBCNoEkwPVxko,3805 +django/contrib/humanize/locale/is/LC_MESSAGES/django.po,sha256=1VddvtkhsK_5wmpYIqEFqFOo-NxIBnL9wwW74Tw9pbw,8863 +django/contrib/humanize/locale/it/LC_MESSAGES/django.mo,sha256=nOn-bSN3OVnqLwTlUfbb_iHLzwWt9hsR2GVHh4GZJZE,5940 +django/contrib/humanize/locale/it/LC_MESSAGES/django.po,sha256=r7sg7QtNFPzrENz5kj1wdktqdqMluA_RRtM8TKwe7PQ,10046 +django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo,sha256=kYDryScxMRi2u2iOmpXc2dMytZ9_9DQMU3C3xD2REDE,4799 +django/contrib/humanize/locale/ja/LC_MESSAGES/django.po,sha256=6-W89FFg7x_JxJjACQhb4prK2Y7i1vlzm_nnIkgpNGw,8141 +django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo,sha256=UeUbonYTkv1d2ljC0Qj8ZHw-59zHu83fuMvnME9Fkmw,4878 +django/contrib/humanize/locale/ka/LC_MESSAGES/django.po,sha256=-eAMexwjm8nSB4ARJU3f811UZnuatHKIFf8FevpJEpo,9875 +django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo,sha256=jujbUM0jOpt3Mw8zN4LSIIkxCJ0ihk_24vR0bXoux78,2113 +django/contrib/humanize/locale/kk/LC_MESSAGES/django.po,sha256=hjZg_NRE9xMA5uEa2mVSv1Hr4rv8inG9es1Yq7uy9Zc,8283 +django/contrib/humanize/locale/km/LC_MESSAGES/django.mo,sha256=mfXs9p8VokORs6JqIfaSSnQshZEhS90rRFhOIHjW7CI,459 +django/contrib/humanize/locale/km/LC_MESSAGES/django.po,sha256=JQBEHtcy-hrV_GVWIjvUJyOf3dZ5jUzzN8DUTAbHKUg,4351 +django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo,sha256=Oq3DIPjgCqkn8VZMb6ael7T8fQ7LnWobPPAZKQSFHl4,461 +django/contrib/humanize/locale/kn/LC_MESSAGES/django.po,sha256=yrXx6TInsxjnyJfhl8sXTLmYedd2jaAku9L_38CKR5A,4353 +django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo,sha256=hDb7IOB8PRflKkZ81yQbgHtvN4TO35o5kWTK3WpiL4A,4817 +django/contrib/humanize/locale/ko/LC_MESSAGES/django.po,sha256=dZpSVF3l5wGTwKOXn0looag7Q23jyLGlzs083kpnqFc,8217 +django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/humanize/locale/lb/LC_MESSAGES/django.po,sha256=_y0QFS5Kzx6uhwOnzmoHtCrbufMrhaTLsHD0LfMqtcM,4730 +django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo,sha256=O0C-tPhxWNW5J4tCMlB7c7shVjNO6dmTURtIpTVO9uc,7333 +django/contrib/humanize/locale/lt/LC_MESSAGES/django.po,sha256=M5LlRxC1KWh1-3fwS93UqTijFuyRENmQJXfpxySSKik,12086 +django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo,sha256=-XzcL0rlKmGkt28ukVIdwQZobR7RMmsOSstKH9eezuQ,6211 +django/contrib/humanize/locale/lv/LC_MESSAGES/django.po,sha256=fJOCQcPLCw1g-q8g4UNWR3MYFtBWSNkeOObjCMdWUp4,10572 +django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo,sha256=htUgd6rcaeRPDf6UrEb18onz-Ayltw9LTvWRgEkXm08,4761 +django/contrib/humanize/locale/mk/LC_MESSAGES/django.po,sha256=Wl9Rt8j8WA_0jyxKCswIovSiCQD-ZWFYXbhFsCUKIWo,6665 +django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo,sha256=rJuNYIlbZI6kFOXOamF17prachKeteiFMwv9nfBlptA,4736 +django/contrib/humanize/locale/ml/LC_MESSAGES/django.po,sha256=cMDjSKjpV1faKhC1ozTqpYAlhM4yoKauSCbMfmX8jYw,10131 +django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo,sha256=gi-b-GRPhg2s2O9wP2ENx4bVlgHBo0mSqoi58d_QpCw,6020 +django/contrib/humanize/locale/mn/LC_MESSAGES/django.po,sha256=0zV7fYPu6xs_DVOCUQ6li36JWOnpc-RQa0HXwo7FrWc,9797 +django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/humanize/locale/mr/LC_MESSAGES/django.po,sha256=M44sYiBJ7woVZZlDO8rPDQmS_Lz6pDTCajdheyxtdaI,4724 +django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo,sha256=xSHIddCOU0bnfiyzQLaDaHAs1E4CaBlkyeXdLhJo1A8,842 +django/contrib/humanize/locale/ms/LC_MESSAGES/django.po,sha256=YhBKpxsTw9BleyaDIoDJAdwDleBFQdo1LckqLRmN8x4,7127 +django/contrib/humanize/locale/my/LC_MESSAGES/django.mo,sha256=55CWHz34sy9k6TfOeVI9GYvE9GRa3pjSRE6DSPk9uQ8,3479 +django/contrib/humanize/locale/my/LC_MESSAGES/django.po,sha256=jCiDhSqARfqKcMLEHJd-Xe6zo3Uc9QpiCh3BbAAA5UE,5433 +django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo,sha256=ZQ8RSlS3DXBHmpjZrZza9FPSxb1vDBN87g87dRbGMkQ,5317 +django/contrib/humanize/locale/nb/LC_MESSAGES/django.po,sha256=fpfJStyZSHz0A6fVoRSOs_NKcUGo9fFKmXme4yll62s,9134 +django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo,sha256=iZv-kP5V4Rj5DneI-AgJqysfWH2_3_Fg4IXnOpI-yaw,2981 +django/contrib/humanize/locale/ne/LC_MESSAGES/django.po,sha256=h4RPtcieQTSA9WYdlnnkhXqjYWIeguqLV5eCGgIEDTo,8734 +django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo,sha256=xSGou2yFmVuiMH3C1IefwHBSys0YI_qW8ZQ9rwLdlPQ,5262 +django/contrib/humanize/locale/nl/LC_MESSAGES/django.po,sha256=s7LbdXpSQxkqSr666oTwTNlfdrJpLeYGoCe1xlAkGH8,9217 +django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo,sha256=_Qbyf366ApSCU09Er6CvEf5WrA8s6ZzsyZXs44BoT10,3482 +django/contrib/humanize/locale/nn/LC_MESSAGES/django.po,sha256=qkEeQKQ8XwPKtTv2Y8RscAnE4QarinOze3Y3BTIEMCk,5818 +django/contrib/humanize/locale/os/LC_MESSAGES/django.mo,sha256=BwS3Mj7z_Fg5s7Qm-bGLVhzYLZ8nPgXoB0gXLnrMGWc,3902 +django/contrib/humanize/locale/os/LC_MESSAGES/django.po,sha256=CGrxyL5l-5HexruOc7QDyRbum7piADf-nY8zjDP9wVM,6212 +django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo,sha256=TH1GkAhaVVLk2jrcqAmdxZprWyikAX6qMP0eIlr2tWM,1569 +django/contrib/humanize/locale/pa/LC_MESSAGES/django.po,sha256=_7oP0Hn-IU7IPLv_Qxg_wstLEdhgWNBBTCWYwSycMb0,5200 +django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo,sha256=UT-bQF-nGA9XBIuitXuld4JKrJKRct_HAbmHdPOE0eg,6977 +django/contrib/humanize/locale/pl/LC_MESSAGES/django.po,sha256=hgqkd9mPgYmacnv0y2RwMn5svKQO4BCSvh-0zuG2yeQ,11914 +django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo,sha256=El9Sdr3kXS-yTol_sCg1dquxf0ThDdWyrWGjjim9Dj4,5408 +django/contrib/humanize/locale/pt/LC_MESSAGES/django.po,sha256=XudOc67ybF_fminrTR2XOCKEKwqB5FX14pl3clCNXGE,9281 +django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo,sha256=5GqZStkWlU0gGvtk_ufR3ZdLRqLEkSF6KJtbTuJb3pc,5427 +django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po,sha256=Hz2kgq9Nv4jjGCyL16iE9ctJElxcLoIracR7DuVY-BE,9339 +django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo,sha256=NcQde9eakJYiI4R3wE2R4ek9iq0p9OmHVktiJGdfmXM,6229 +django/contrib/humanize/locale/ro/LC_MESSAGES/django.po,sha256=lYA7q6-qiISsf-SpH40QB92Fyr3QXd05sPHN4bzyubM,10578 +django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo,sha256=tkKePMXIA1h_TXxXmB2m-QbelTteNKEc5-SEzs7u6FM,8569 +django/contrib/humanize/locale/ru/LC_MESSAGES/django.po,sha256=fXkT7XpiU2_wmnR1__QCxIdndI2M3ssNus8rMM-TSOw,13609 +django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo,sha256=uUeDN0iYDq_3vT3NcTOTpKCGcv2ner5WtkIk6GVIsu0,6931 +django/contrib/humanize/locale/sk/LC_MESSAGES/django.po,sha256=cwmpA5EbD4ZE8aK0I1enRE_4RVbtfp1HQy0g1n_IYAE,11708 +django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo,sha256=f_07etc_G4OdYiUBKPkPqKm2iINqXoNsHUi3alUBgeo,5430 +django/contrib/humanize/locale/sl/LC_MESSAGES/django.po,sha256=mleF0fvn0oEfszhGLoaQkWofTwZJurKrJlIH8o-6kAI,8166 +django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo,sha256=1XXRe0nurGUUxI7r7gbSIuluRuza7VOeNdkIVX3LIFU,5280 +django/contrib/humanize/locale/sq/LC_MESSAGES/django.po,sha256=BS-5o3aG8Im9dWTkx4E_IbbeTRFcjjohinz1823ZepI,9127 +django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo,sha256=_YudgsUlnmAqspuuHFh2pMZ8H7SCEqm6UZ7-U7-kCnI,7246 +django/contrib/humanize/locale/sr/LC_MESSAGES/django.po,sha256=8AvdR2SIuIPbqndDWZrB0DHaWGAEGtgSCy3HG2J1AXQ,11423 +django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=PaGxGtTZSzguwipvTdOhO7bvM8WlzCWb1RCEaIupRUQ,562 +django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po,sha256=FrPnMu6xX0NypoRYRAOBhdICGSv8geuHXQKKn3Gd9ck,5185 +django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo,sha256=9BCahKoSjzfgXKCkubKvfyXAcrGAzaHvTtp-gSZzL84,5359 +django/contrib/humanize/locale/sv/LC_MESSAGES/django.po,sha256=-Agt-sWKqksZ_DCK1lRm4wzMnen4X28Gg1-hVfzI9FY,9224 +django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo,sha256=cxjSUqegq1JX08xIAUgqq9ByP-HuqaXuxWM8Y2gHdB4,4146 +django/contrib/humanize/locale/sw/LC_MESSAGES/django.po,sha256=bPYrLJ2yY_lZ3y1K-RguNi-qrxq2r-GLlsz1gZcm2A8,6031 +django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo,sha256=1X2vH0iZOwM0uYX9BccJUXqK-rOuhcu5isRzMpnjh2o,466 +django/contrib/humanize/locale/ta/LC_MESSAGES/django.po,sha256=8x1lMzq2KOJveX92ADSuqNmXGIEYf7fZ1JfIJPysS04,4722 +django/contrib/humanize/locale/te/LC_MESSAGES/django.mo,sha256=iKd4dW9tan8xPxgaSoenIGp1qQpvSHHXUw45Tj2ATKQ,1327 +django/contrib/humanize/locale/te/LC_MESSAGES/django.po,sha256=FQdjWKMsiv-qehYZ4AtN9iKRf8Rifzcm5TZzMkQVfQI,5103 +django/contrib/humanize/locale/th/LC_MESSAGES/django.mo,sha256=jT7wGhYWP9HHwOvtr2rNPStiOgZW-rGMcO36w1U8Y4c,3709 +django/contrib/humanize/locale/th/LC_MESSAGES/django.po,sha256=ZO3_wU7z0VASS5E8RSLEtmTveMDjJ0O8QTynb2-jjt0,8318 +django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo,sha256=Z7-3YuSHL0_5sVzsUglegY-jD9uQvw3nAzf2LVomTzU,5263 +django/contrib/humanize/locale/tr/LC_MESSAGES/django.po,sha256=aNI_MjfKWeb4UmukfkYWs1ZXj8JabBYG3WKkADGyOK8,9160 +django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo,sha256=z8VgtMhlfyDo7bERDfrDmcYV5aqOeBY7LDgqa5DRxDM,3243 +django/contrib/humanize/locale/tt/LC_MESSAGES/django.po,sha256=j_tRbg1hzLBFAmPQt0HoN-_WzWFtA07PloCkqhvNkcY,5201 +django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/humanize/locale/udm/LC_MESSAGES/django.po,sha256=AR55jQHmMrbA6RyHGOtqdvUtTFlxWnqvfMy8vZK25Bo,4354 +django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo,sha256=Y1DAAowIHg4ibKYa6blAjm_OAjE9DppWN0HIkW7FNCg,8809 +django/contrib/humanize/locale/uk/LC_MESSAGES/django.po,sha256=Kv644K7dXfAt4tustWP-2dVT5aV26wBlUeBHfYo1D50,13754 +django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo,sha256=MF9uX26-4FFIz-QpDUbUHUNLQ1APaMLQmISMIaPsOBE,1347 +django/contrib/humanize/locale/ur/LC_MESSAGES/django.po,sha256=D5UhcPEcQ16fsBEdkk_zmpjIF6f0gEv0P86z_pK_1eA,5015 +django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo,sha256=HDah_1qqUz5m_ABBVIEML3WMR2xyomFckX82i6b3n4k,1915 +django/contrib/humanize/locale/uz/LC_MESSAGES/django.po,sha256=Ql3GZOhuoVgS0xHEzxjyYkOWQUyi_jiizfAXBp2Y4uw,7296 +django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo,sha256=ZUK_Na0vnfdhjo0MgnBWnGFU34sxcMf_h0MeyuysKG8,3646 +django/contrib/humanize/locale/vi/LC_MESSAGES/django.po,sha256=DzRpXObt9yP5RK_slWruaIhnVI0-JXux2hn_uGsVZiE,5235 +django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=JcMWgxYXOPXTCR6t8szkuDHSQ6p0RJX7Tggq84gJhwQ,4709 +django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po,sha256=L7SmGldceykiGHJe42Hxx_qyJa9rBuAnJdYgIY-L-6o,8242 +django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=qYO9_rWuIMxnlL9Q8V9HfhUu7Ebv1HGOlvsnh7MvZkE,4520 +django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po,sha256=AijEfvIlJK9oVaLJ7lplmbvhGRKIbYcLh8WxoBYoQkA,7929 +django/contrib/humanize/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/humanize/templatetags/humanize.py,sha256=RlF6BSA8g0m5ZoJgoikncAGgRccZE6FlVy8zSU1YcXE,12551 +django/contrib/messages/__init__.py,sha256=Sjt2mgia8vqSpISrs67N27rAXgvqR-MPq37VB-nmSvE,174 +django/contrib/messages/api.py,sha256=sWP2DP-n8ZWOTM-BLFDGrH_l-voGwrSxC0OgEyJt1F4,3071 +django/contrib/messages/apps.py,sha256=yGXBKfV5WF_ElcPbX4wJjXq6jzp39ttnO7sp8N_IzOQ,194 +django/contrib/messages/constants.py,sha256=WZxjzvEoKI7mgChSFp_g9e-zUH8r6JLhu9sFsftTGNA,312 +django/contrib/messages/context_processors.py,sha256=0LniZjxZ7Fx2BxYdJ0tcruhG4kkBEEhsc7Urcf31NnE,354 +django/contrib/messages/middleware.py,sha256=4L-bzgSjTw-Kgh8Wg8MOqkJPyilaxyXi_jH1UpP1h-U,986 +django/contrib/messages/utils.py,sha256=6PzAryJ0e6oOwtSAMrjAIsYGu_nWIpgMG0p8f_rzOrg,256 +django/contrib/messages/views.py,sha256=R5xD2DLmAO0x6EGpE8TX5bku4zioOiYkQnAtf6r-VAE,523 +django/contrib/messages/storage/__init__.py,sha256=gXDHbQ9KgQdfhYOla9Qj59_SlE9WURQiKzIA0cFH0DQ,392 +django/contrib/messages/storage/base.py,sha256=SyLyVQeRdmPvVt9SO4srCdIb0m2oBu1H_iOx40M48BM,5643 +django/contrib/messages/storage/cookie.py,sha256=vAvUYBznSRY2ztfeZe5a38yuq1a11LGkDchs3c3AwME,6532 +django/contrib/messages/storage/fallback.py,sha256=IbyyZg8cTU-19ZeRg6LndLfRK0SoevDwqKtrqzhVp6c,2095 +django/contrib/messages/storage/session.py,sha256=KTAqur1KMJUc-liD-I0mVDYbafMS23zxZfnFz4XPiiU,1729 +django/contrib/postgres/__init__.py,sha256=jtn9-mwOISc5D_YUoQ5z_3sN4bEPNxBOCDzbGNag_mc,67 +django/contrib/postgres/apps.py,sha256=Yj8hOP1HhMWjiI0i6DrTxl-AfDpCLb-p8QCaiOsvZOU,3002 +django/contrib/postgres/constraints.py,sha256=t0b6ajZuVc22U_8D6vBQDdGQ0wIIPOLw5Sz0S4_CZHU,4299 +django/contrib/postgres/functions.py,sha256=zHeAyKR5MhnsIGI5qbtmRdxPm8OtycEBE5OmCNyynD8,252 +django/contrib/postgres/indexes.py,sha256=sVHNlpotiGi5DFsV6ADCUIDzpTpSr3gCMeLnbIDs1bI,6061 +django/contrib/postgres/lookups.py,sha256=5qXZ3uLy2LzwZ5ZknhO6iAVhHahS6lCIv-R6kcW2-pE,1967 +django/contrib/postgres/operations.py,sha256=5f0zm2MoBE4-I4JndlrPfJ_LbyCTDdMwgnXA9ZxbHv4,4840 +django/contrib/postgres/search.py,sha256=PgYrl42XxKKCl6Af94poZC_FYz8ChGVsc-wDrXevtdU,9014 +django/contrib/postgres/serializers.py,sha256=EPW4-JtgMV_x4_AosG4C-HLX3K4O9ls9Ezw9f07iHd8,435 +django/contrib/postgres/signals.py,sha256=MmUklgaTW1-UBMGQTxNO_1fsO7mZugGs9ScovuCIyJo,2245 +django/contrib/postgres/utils.py,sha256=gBGBmAYMKLkB6nyaRgx5Yz_00bXaOA6BDK9koiE-_co,1187 +django/contrib/postgres/validators.py,sha256=CA_iygE2q3o8tXlQ9JfMYxoO6HDJk3D0PIcmGrahwdI,2675 +django/contrib/postgres/aggregates/__init__.py,sha256=QCznqMKqPbpraxSi1Y8-B7_MYlL42F1kEWZ1HeLgTKs,65 +django/contrib/postgres/aggregates/general.py,sha256=w6Gixqh_ZtGJwkpD1TtYLOAKESplztLlI6brAt_FCco,1521 +django/contrib/postgres/aggregates/mixins.py,sha256=SBJjxbcpFCGRaWZDck21ts-Q98uVfPExgE1U5JI1Eqg,2433 +django/contrib/postgres/aggregates/statistics.py,sha256=Z6G85CawnnzHCndRXaVdI9bJxYYictT3EuIOEplzNgo,1501 +django/contrib/postgres/fields/__init__.py,sha256=Xo8wuWPwVNOkKY-EwV9U1zusQ2DjMXXtL7_8R_xAi5s,148 +django/contrib/postgres/fields/array.py,sha256=yNqwdxibiQirLksYg27d2kJMfP-n7PSonPwELWI_IaI,9832 +django/contrib/postgres/fields/citext.py,sha256=G40UZv4zop8Zrq2vMhluZ-MT7yPLEc8IEDi3hZ27gGw,439 +django/contrib/postgres/fields/hstore.py,sha256=Uh2bcb4xqNNSHf8OY7ZVA8zowZGKxNcacFAj9NOPLeE,3221 +django/contrib/postgres/fields/jsonb.py,sha256=nJbeiitLbN25VQi7dQ8-sARPOhf8QIOxkfRf5rPaxNc,5692 +django/contrib/postgres/fields/mixins.py,sha256=eYtXzR2ec8J8564b-eaUsE17UO_AIkqrlKD-p0GlTGo,986 +django/contrib/postgres/fields/ranges.py,sha256=_LYo7Qwe0gPGJ781f3K9AnwuhSX8rkmlCF40rHYFQKI,9011 +django/contrib/postgres/fields/utils.py,sha256=TV-Aj9VpBb13I2iuziSDURttZtz355XakxXnFwvtGio,95 +django/contrib/postgres/forms/__init__.py,sha256=GSqucR50I9jrZUYZUFVmb8nV_FSlXu1BcCpFck2pVXI,118 +django/contrib/postgres/forms/array.py,sha256=GFJXIOhWZlRd5rkVE-x8Wp_78Px59j5m7Y-o3tRa5go,7554 +django/contrib/postgres/forms/hstore.py,sha256=f7PJ41fsd8D7cvyJG-_ugslM-hXL7qnZPdx08UZQNXY,1766 +django/contrib/postgres/forms/jsonb.py,sha256=1dEdSd7VO9uFAdIZh_HFHjmpAMnnqCI1oXo_SYctFv0,1733 +django/contrib/postgres/forms/ranges.py,sha256=jDtJ-Dni53i_UDqEQJx1CAx-HV7f38AJOuqlC4jrN9s,3755 +django/contrib/postgres/jinja2/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/contrib/postgres/locale/af/LC_MESSAGES/django.mo,sha256=VaToTp7rFp8wAEJGucEHgAp1W3ThisCWYyKy7q4Rsy0,3135 +django/contrib/postgres/locale/af/LC_MESSAGES/django.po,sha256=sGAyoCHl28BJYQBolUBjdn7CeclnunrBURSciuj7ApE,3474 +django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo,sha256=AFcSJOhEOAWVIXw9q7FoyyT9G1ufw530IG2GwOYNOJw,4416 +django/contrib/postgres/locale/ar/LC_MESSAGES/django.po,sha256=ZEYrujwMpePljEsEjgJrRgHvQWn6zP9zYVkan83TyuU,5017 +django/contrib/postgres/locale/az/LC_MESSAGES/django.mo,sha256=kUYiVWbIYkyUI8U1XZxTwWdW4yK0uymZLOmdxsfcxeQ,3132 +django/contrib/postgres/locale/az/LC_MESSAGES/django.po,sha256=92N_-hq2ONqo5Dgl2o2dNyAivzzHKRiQrpjTQHfGceE,3464 +django/contrib/postgres/locale/be/LC_MESSAGES/django.mo,sha256=hLU_Yns6Athz7WWVL_bpu0IL7QtaqFluGXOyz996fLs,4458 +django/contrib/postgres/locale/be/LC_MESSAGES/django.po,sha256=aZThekvh2PPo6e5P9_i-a2R7DLozo8DsEDsz7hpt2Yo,4974 +django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo,sha256=7VaGqc8TO0NVL-eZbxVuGb8J6atQ_aC3C3Nh3G9zcJQ,3439 +django/contrib/postgres/locale/bg/LC_MESSAGES/django.po,sha256=9S2pgIZFOv3qp0QunLFUfPiNk40RZjHIiVA39Uj3zFs,4010 +django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo,sha256=jX8PuYFVnEpyUEajyGbNXayTL-Tr4xGbEwtGOaUWIsY,3191 +django/contrib/postgres/locale/ca/LC_MESSAGES/django.po,sha256=TN6xBUf_xn-K2_ARNiVn612ZWrPmozJQ-LBYeaeYrH4,3651 +django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo,sha256=EJVbu8yrrGSHKjwsCuf55itCsXZBuzepGew626N8O8A,3653 +django/contrib/postgres/locale/cs/LC_MESSAGES/django.po,sha256=vV2zEURlT9Uiehds2NFDkHWg3gteehUTYMRljwzPlug,4166 +django/contrib/postgres/locale/da/LC_MESSAGES/django.mo,sha256=3r5Y9TTLDWjQtE4ffNNZJPaqDth-rTF7F9GjYWf2fJE,3142 +django/contrib/postgres/locale/da/LC_MESSAGES/django.po,sha256=t6f1A8xjn9Q8qnsGLxhwsgkx-zvwO--EZxyMcXaDQpE,3570 +django/contrib/postgres/locale/de/LC_MESSAGES/django.mo,sha256=78QMyqVVBH0_HdT1IEfoZbKFvIFAiG0S96dJzfx_GR4,3282 +django/contrib/postgres/locale/de/LC_MESSAGES/django.po,sha256=rICLyLxIuA_WWMcq0u6MfnUbYZlM_Vs4n-ETi55LTro,3728 +django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo,sha256=1fVpsCGFtvcOtjM7nkTq3mPAHeFKUt7iafEbeU126NY,3853 +django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po,sha256=czUFqMMzMa6ie50w6mVekNaFLNoY4wPsyIt3zRHQ3Z0,4286 +django/contrib/postgres/locale/el/LC_MESSAGES/django.mo,sha256=PKQX9koDltdpPB_2sz_cCMj46CU6f6UKrQhkniPp5V0,3917 +django/contrib/postgres/locale/el/LC_MESSAGES/django.po,sha256=C4bWUZaxJCXkVUWlvaW4zo6C_fZAI7V1qBPOJHbZfdY,4411 +django/contrib/postgres/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/postgres/locale/en/LC_MESSAGES/django.po,sha256=Gup_YV0Kprm0VcSlQ_py5o5X__M8E4Nv_w53EiyTfmo,3136 +django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo,sha256=6DVCsh5l93gP7mZm3B-cX7mCR2JZmkncQhcKnTCi2qE,3155 +django/contrib/postgres/locale/eo/LC_MESSAGES/django.po,sha256=RIfsz1ohsRlBTb9QPdyI-1iKV8CU9pjrVqc4_3AhizU,3539 +django/contrib/postgres/locale/es/LC_MESSAGES/django.mo,sha256=WnSqn-4gREdsGohEhTJybt5E2Vg_mR6QMr_tt2Ek-uQ,3195 +django/contrib/postgres/locale/es/LC_MESSAGES/django.po,sha256=ijuEmSYMQX6Tl-dBW7yzVu94dm5SlQMxd7zA4NGi3U0,3762 +django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo,sha256=x1B_qkCNdJZpyRE1EVZOp0Ri7GeJCfXOUcPRM5tIGuY,3150 +django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po,sha256=8DeRcuCCaOHy0PRvpsPt66Vf8v2AMYgWAb-KhsYrJwE,3526 +django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo,sha256=wmkoFFXblYw1ufz4gcSntO79yq20mHl8hlbj4Hhmcug,2903 +django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po,sha256=Br2Lo11i-EeryGFsRmUWr_PD6_xk8kavVzdwqtR7AuU,3579 +django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo,sha256=4-c48HNLkDnIIPIBOaIhxoOf4muYRRelX0rR0dVrpAE,882 +django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po,sha256=5HmM8uVQkt869MyzuQIk5C6czFe4MTRz5CBmgeN_V14,2496 +django/contrib/postgres/locale/et/LC_MESSAGES/django.mo,sha256=_BZuR25C1mzMVR2LTXE4u4QaP5ht7C7q8PjsnAEEQO8,3081 +django/contrib/postgres/locale/et/LC_MESSAGES/django.po,sha256=BF6hMf4uD6sFFXBJoudgimwKCj25jlzt7rjK3lg-BFA,3592 +django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo,sha256=e1i7Y8OyrDBzRTDViMBFliQxGa-wYBaBBWrr6V7MIVw,3133 +django/contrib/postgres/locale/eu/LC_MESSAGES/django.po,sha256=uLRlYrtifsM_BmHtxLUMnL-nNxJ9S3X-Py7W_6rRvqA,3544 +django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo,sha256=0E8pqNUlKTUXSY1o8A1TmMbAE49QZpa5yxqqECJbZ04,3614 +django/contrib/postgres/locale/fa/LC_MESSAGES/django.po,sha256=Zdcp_d3unZ4JnRQdcMIPQVsV9ysal7W1zu_vJsMqJx4,4083 +django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo,sha256=eVu4C_rIzT2fQGNbJDEkrQb4pjF00lOPAixxqpYvbhs,3212 +django/contrib/postgres/locale/fi/LC_MESSAGES/django.po,sha256=zILj96C-jR-bjBRVVLScZngm7MRA-BtUM4j4IUMNJ48,3555 +django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo,sha256=5aU3Uzf6zslwx6R8f8Lo8aMbxGo7loql-9EkTy1Lx2c,3366 +django/contrib/postgres/locale/fr/LC_MESSAGES/django.po,sha256=6qQvZEb3M5jAoTao2Mooe3vuMyDuMhBkyMk5mwLf9rU,3763 +django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo,sha256=0c_5bWFtIPFkBJ_CbXUt-2BIDxZbjM_tuJ-EqdKGMXc,3828 +django/contrib/postgres/locale/gd/LC_MESSAGES/django.po,sha256=ox1CJI5BZgCNIXHmZMyzXKyE49LoJ54FRCiG6AWp29s,4276 +django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo,sha256=YlBrsev1RIUA4Zxbnl_ufkTANki4VM9O42Ge07u5QPc,722 +django/contrib/postgres/locale/gl/LC_MESSAGES/django.po,sha256=h4Z-Fdi9o1MG33vCWGMHqSj6dklYy653vGkq81lYeKA,2433 +django/contrib/postgres/locale/he/LC_MESSAGES/django.mo,sha256=-YQ8LqCoiqzkjfKifILLTqQVIGY1yb1VNl4or6n77cc,4017 +django/contrib/postgres/locale/he/LC_MESSAGES/django.po,sha256=bV17gzx9-OxTkrx-ElmZfb3yZc9A-Rl943nd5yYWGtY,4421 +django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo,sha256=oIY9TCvkVmv-fGbGs-N2acx5VC3PNzZxWW4FRjWbTUQ,1217 +django/contrib/postgres/locale/hr/LC_MESSAGES/django.po,sha256=EnvgxKmz6qBe6cH05CAm0bO5zuXkAOYFnRF5c4LmIRo,2762 +django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo,sha256=22M3RqpT_lfmAx6fqr1Hl2ulJbMrDi3rvUfZ1KxD7rY,3734 +django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po,sha256=8gnj3dJDr4peDy_2IP7l8HTBd1ihroFzYtJM9cREhoc,4200 +django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo,sha256=XUGRCc2SiGXBmnFivmTTLWdZUDAaKkEpTbEtt9bdoZg,3163 +django/contrib/postgres/locale/hu/LC_MESSAGES/django.po,sha256=jKXOQk4wBl--aTAUUtisLgWGqxN0dj8KBMlIqZTpvyw,3702 +django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo,sha256=wybr0GxcDRdCnz9qeoE7wkTtqqWYByX59bnkf60TYdA,3593 +django/contrib/postgres/locale/hy/LC_MESSAGES/django.po,sha256=9IO_50Tke30BbBpU83otWMjaySKPDL7apvwzYPEToS0,4140 +django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo,sha256=dnyXX0ii0CFMrI02mZhkCzY66KTFdWXBOlXjo6gP_Ps,758 +django/contrib/postgres/locale/ia/LC_MESSAGES/django.po,sha256=jNRfADlv6JldyeezHt_3LXpudpmA-cXr73GIe3aPd6E,2475 +django/contrib/postgres/locale/id/LC_MESSAGES/django.mo,sha256=HXYRf8ZkBATqE_lYp0OqHW0-EcAw8JJxqdolOcxbqQU,2980 +django/contrib/postgres/locale/id/LC_MESSAGES/django.po,sha256=-5lsVajqTHfDt3jKEQV2u0XOOljgutbAu97rclqDZm0,3562 +django/contrib/postgres/locale/is/LC_MESSAGES/django.mo,sha256=Uhp9XnkAvTDyKSlqLk_81OvTuHsDdiBR0rfABElUOoA,3183 +django/contrib/postgres/locale/is/LC_MESSAGES/django.po,sha256=wtKB5gICQy6krMx99ugKgz5oANCSVQN2CQ-u1igeWg4,3580 +django/contrib/postgres/locale/it/LC_MESSAGES/django.mo,sha256=_qHttDX3mqYgsavBhsSzFLxkljTBAnfjO9UybUsY9iY,3243 +django/contrib/postgres/locale/it/LC_MESSAGES/django.po,sha256=tGG27pe5w9y5ReeHOnlO1BPGmTf_VmY45t_yWuKlKmI,3855 +django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo,sha256=Ffenxw4bewdZBTQqIjRri4KwWmSeUZm8M6ExvX-vT68,3349 +django/contrib/postgres/locale/ja/LC_MESSAGES/django.po,sha256=qVAKneCc7YbVv6eNeP1LptgKKVXNzFnel8Hoyak-KUg,3664 +django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo,sha256=E-ol6-skFX-xPJs3jsGMZaJTuqF_Riu2DXnWa8AqmM0,731 +django/contrib/postgres/locale/ka/LC_MESSAGES/django.po,sha256=MFPEF3-kjkeqLDUMjolV4d6yj1TDnH-vh11vFgnwODA,2524 +django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo,sha256=AdGfrugnkBOmvFZRKrc2KIpKZTZ8ez_k-4vG3SyrzzU,683 +django/contrib/postgres/locale/kk/LC_MESSAGES/django.po,sha256=MmZ0UiTLs2nnVURE3DlkmXuK0IcFkan9ymWhC9CdK7c,2495 +django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo,sha256=gYs6wFnmLFqgcBsF0RtrGLSO4nju6yIQPSeWJo8N3Cs,3175 +django/contrib/postgres/locale/ko/LC_MESSAGES/django.po,sha256=9OJM4mi5xmOzzAJuEJTqyn33NGtePJtm4POxKkBTjw0,3740 +django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo,sha256=RjZ0I6Dut3iDur2LwMwkiCbFYScfBlHBjPXPnKGwdDc,3853 +django/contrib/postgres/locale/lt/LC_MESSAGES/django.po,sha256=xrAuourVTpfB3aRn8EN5yDkYQ4xuWjXiLQF33OOhq_k,4282 +django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo,sha256=bl-6Lp-RV_4fQqwkF1efD650ry1RqHkLHb8cs5JtaRI,3349 +django/contrib/postgres/locale/lv/LC_MESSAGES/django.po,sha256=FHkZ6EotpbebakL6oEKFG6Ld_W-2yyLkD2wKHVD4S-I,3893 +django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo,sha256=UFofPo5u8GZFQeJUXpXv9WkzN8-L3RYB4QtpWSPZucw,3717 +django/contrib/postgres/locale/mk/LC_MESSAGES/django.po,sha256=p6bHPCPH1XuUJ_62EXW3fXnaKCtAvuDLAvS3H1JcX9s,4284 +django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo,sha256=Gk1EKEHiKepj9744QwX0ArC5pNoi0yZg4E18YN5qXqY,3732 +django/contrib/postgres/locale/mn/LC_MESSAGES/django.po,sha256=NdW4WOJZnETLMGuZ_UrIMvUBO8yDkCvY4K1eWjV14d8,4198 +django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo,sha256=SY_EMMXIT-WXai7ubBt7SdR05hfRoxRPxDKWhB3iiWo,3112 +django/contrib/postgres/locale/nb/LC_MESSAGES/django.po,sha256=pyDi1-0Mfk67bRvu9lGLRdluyRgmzaasR9P_-q46o8c,3486 +django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo,sha256=wZ0UYJI4qUpPjLvsPCqRCuHbEKpBz9uOh6qncgXh59g,934 +django/contrib/postgres/locale/ne/LC_MESSAGES/django.po,sha256=ndvFMUw2XzBukzedzXUiPQfnnOitrOlJtz2TZgv0TX4,2590 +django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo,sha256=te1E-XyZ7AdWClce3hzuqOC9ucjEZ7Esag_0VlZP1go,3202 +django/contrib/postgres/locale/nl/LC_MESSAGES/django.po,sha256=ErLCSxuQk-Ee_jZPAlcRuBhpTT0kXJvOvupPkfEleJE,3748 +django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo,sha256=kEiLBOXjo_b9MntYuOl-g0a68PGQl7BpIkuKOr_yfu0,3702 +django/contrib/postgres/locale/pl/LC_MESSAGES/django.po,sha256=OSHqlFP3Iu3glIEUI4bVD4owyv9DI6IWcBlQraWvUMI,4423 +django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo,sha256=ajCZcwyubfnqn-X-rhPdfidkLRBM9HdHzrPezmGmZCw,3135 +django/contrib/postgres/locale/pt/LC_MESSAGES/django.po,sha256=Oo78Px9ZXGWC0aiuc-1cJFvyT0yEjJNuge9gzWqOdF0,3580 +django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo,sha256=aCXnsSyXnuCicykEvSU0_igpIbYm2wFa0_PVx5PUeNo,3167 +django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po,sha256=a1H7LDz9PfpP2wEeV-oRs-3f7xvTFJgK21e1dCBQ3lE,3935 +django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo,sha256=wIyzI-mQ_wTDpsU5QhIVek_Wf6RfUUWzRsOEu7fdtIY,3454 +django/contrib/postgres/locale/ro/LC_MESSAGES/django.po,sha256=4MyOnJbBSza7grnCQ2-_-knfs5w6oBdlMFHrS9DbYXQ,3897 +django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo,sha256=tJm0QXyOt7USDeVXRE9ZoE5EDA0Xman6JooYEO3odNQ,5119 +django/contrib/postgres/locale/ru/LC_MESSAGES/django.po,sha256=G3Fsbh2qjnPNDeufzCs7SwITCaWsHEX30ltPJSpySQ4,5831 +django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo,sha256=jgpnLYmOCNlj-BH605ybhVx0rG4yXKIIUCf696DwAVU,3630 +django/contrib/postgres/locale/sk/LC_MESSAGES/django.po,sha256=kv4raaUoWuOeOuTThku1_SiKsf7nYEBDaa-R5yGtg7U,4051 +django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo,sha256=BT1LywwWuDO9iENJm-pqBksEisuETBlh0r4ILn4wgx0,3524 +django/contrib/postgres/locale/sl/LC_MESSAGES/django.po,sha256=YmFNHoKR5av9ychiCloy5OXeL_v-rDzA0vYqUy84umc,3988 +django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo,sha256=D2h9Ca6yXexYDlEgjtl9dTni7mTPgwf08bjIQjBYI7g,3167 +django/contrib/postgres/locale/sq/LC_MESSAGES/django.po,sha256=AhkjE8iDbVpzG1dtKUJ1KQvgISelBZD68mqF27G-ipA,3558 +django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo,sha256=6gW7KQoByAgFBZkJcQ1jKZjqEb1F4jIOiG_MdShwkPI,4106 +django/contrib/postgres/locale/sr/LC_MESSAGES/django.po,sha256=GrxjCPa0hhfDPPf6QoSbMrKuxb_3w5IQ9KK6fOkYtRo,4497 +django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=neXGMvkPwx3Kujk8JG_X8T6r5qQkI-br5R5__UZsXzw,3098 +django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po,sha256=RyUcNHzNBqADVud2paoK-EPegcv_3eFRyjVaJARDpJQ,3626 +django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo,sha256=cAc33SL4bBPVT5hVW22uJyr2EKPtHwglgXQrSR6SffE,3196 +django/contrib/postgres/locale/sv/LC_MESSAGES/django.po,sha256=rIueQEIpQmN6zpZeM36wqGCAdUWP7C2PWoSTfxgZzGY,3660 +django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo,sha256=lUbBuExvk1-LvJCDpbMV1NnR4HbgxFWhGnsaeetovQY,3137 +django/contrib/postgres/locale/tr/LC_MESSAGES/django.po,sha256=OMOT8BZCkJLh52Iq2U5ijUYs_wtEm0sDdUcirwcKoVo,3521 +django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo,sha256=2kT-GcG490kWS9V-NTjS3nKxxA8xm4euTo0Dhqd4Yb4,4758 +django/contrib/postgres/locale/uk/LC_MESSAGES/django.po,sha256=AdBiSfMyt10qIxfTcquptNVyKxwI9k_9ZjuskaEM5JQ,5402 +django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=8QhVzkVySV8HW0bi44DOQHmX7PrTnqOvP7xflgL3fAA,2849 +django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po,sha256=K9FON5cG2bxUwXM5r6735FAO4bRV-JJa28WdMQdySxs,3274 +django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=sAHb1ufRXHR2aLniqP6U1p9I1ez5Zcm6E6hShdzwbn8,2836 +django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po,sha256=-3ymLFHXRS-DpDMXQrGLedewtmqrxPB1fBwmTWfq3Zg,3227 +django/contrib/postgres/templates/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/contrib/redirects/__init__.py,sha256=9vdTkDvH0443yn0qXx59j4dXPn3P-Pf9lB8AWrSp_Bk,69 +django/contrib/redirects/admin.py,sha256=P9wp8yIvDjJSfIXpWYM2ftDlVhKvte_0AM9Ky_j1JIs,314 +django/contrib/redirects/apps.py,sha256=BvTvN3IXCv7yEKqhxwCDiSCZ3695YXNttEvmONHNxC4,197 +django/contrib/redirects/middleware.py,sha256=kJfTIj8G2loRgiEJkqiYEredzt4xhNAfDaTZkk9Coyo,1926 +django/contrib/redirects/models.py,sha256=Sq4pXwDiBhjJeczujxjj0aCMoYELTOCvKiZAvONJ36s,993 +django/contrib/redirects/locale/af/LC_MESSAGES/django.mo,sha256=UqXzx3fQxw4n7RGNgnp4lzLJ93DPRAgIAg6bwPs5GFY,1119 +django/contrib/redirects/locale/af/LC_MESSAGES/django.po,sha256=JvDnHyWH_-IyOTSR36hwSBmd_fXa3trpUAgEThdtDvM,1260 +django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo,sha256=BX8CzqhOiPIE2dZ1J-bomSuudCMDs8MKbZ1aCzFUrXk,1342 +django/contrib/redirects/locale/ar/LC_MESSAGES/django.po,sha256=v4WQ_5jy6a_JupP7YLLxVIOB82UjIDZJ09uuFCaJCIc,1533 +django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo,sha256=a1ixBQQIdBZ7o-ADnF2r74CBtPLsuatG7txjc05_GXI,1071 +django/contrib/redirects/locale/ast/LC_MESSAGES/django.po,sha256=PguAqeIUeTMWsADOYLTxoC6AuKrCloi8HN18hbm3pZ0,1266 +django/contrib/redirects/locale/az/LC_MESSAGES/django.mo,sha256=gxyTtthfuZik5KWZbsKzhsCa27pnDA7OdBkZt2Jnxn0,1157 +django/contrib/redirects/locale/az/LC_MESSAGES/django.po,sha256=5uyUelawIxgtoK4zA5w8VkSuoJPdjSBrJRud1zm1JjU,1341 +django/contrib/redirects/locale/be/LC_MESSAGES/django.mo,sha256=SnSSaDw89oonokFQ7r0hdSM9nfH_H9rlKTN8aVlZhkY,1407 +django/contrib/redirects/locale/be/LC_MESSAGES/django.po,sha256=BR3YGf7Q5OqTP_rh1WNNi1BS8O1q76JMBHNdfA0PyGU,1638 +django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo,sha256=fEXrzyixSGCWaWu5XxVsjRKMlPwYkORpFtAiwNNShvM,1268 +django/contrib/redirects/locale/bg/LC_MESSAGES/django.po,sha256=_Xha-uOePDqOqOVmYgcR8auVgNT3CS-Z_V_vwyTlwfk,1493 +django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo,sha256=SbQh_pgxNCogvUFud7xW9T6NTAvpaQb2jngXCtpjICM,1319 +django/contrib/redirects/locale/bn/LC_MESSAGES/django.po,sha256=LgUuiPryDLSXxo_4KMCdjM5XC3BiRfINuEk0s5PUQYQ,1511 +django/contrib/redirects/locale/br/LC_MESSAGES/django.mo,sha256=Yt8xo5B5LJ9HB8IChCkj5mljFQAAKlaW_gurtF8q8Yw,1429 +django/contrib/redirects/locale/br/LC_MESSAGES/django.po,sha256=L2qPx6mZEVUNay1yYEweKBLr_fXVURCnACfsezfP_pI,1623 +django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo,sha256=0Yak4rXHjRRXLu3oYYzvS8qxvk2v4IFvUiDPA68a5YI,1115 +django/contrib/redirects/locale/bs/LC_MESSAGES/django.po,sha256=s9Nhx3H4074hlSqo1zgQRJbozakdJTwA1aTuMSqEJWw,1316 +django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo,sha256=sqFznyD9vEvzgzVCTHrzsDmv6ZJy5UCzV15pLacScjc,1137 +django/contrib/redirects/locale/ca/LC_MESSAGES/django.po,sha256=GQhL6KJW4kwv-xta5DcPUlPOMXf5hgs8emZgSUGjbmk,1366 +django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo,sha256=M9xlGux_iL--U8s4M2qJNYKGD4j4OU6qfd09xb-w6m4,1175 +django/contrib/redirects/locale/cs/LC_MESSAGES/django.po,sha256=lM6-ofabOoT0RLvjHt3G1RHVnkAlaTL_EOb3lD4mF3o,1445 +django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo,sha256=NSGoK12A7gbtuAuzQEVFPNSZMqqmhHyRvTEn9PUm9So,1132 +django/contrib/redirects/locale/cy/LC_MESSAGES/django.po,sha256=jDmC64z5exPnO9zwRkBmpa9v3DBlaeHRhqZYPoWqiIY,1360 +django/contrib/redirects/locale/da/LC_MESSAGES/django.mo,sha256=h1ahMUSbE_eZzb8QOHztyb6mzwnlM6BE8nY13FRfkNM,1091 +django/contrib/redirects/locale/da/LC_MESSAGES/django.po,sha256=LSf5K4BLG1Anvya22J5nl1ayimtbCA0EutpxttyxtWo,1317 +django/contrib/redirects/locale/de/LC_MESSAGES/django.mo,sha256=iPnuOSbyoQESXyU3arhhm0ESlXrP3OxOkKL9ZpHy_6Q,1136 +django/contrib/redirects/locale/de/LC_MESSAGES/django.po,sha256=_7aysk610BBjdYBuF4NgVFW_sMVLY3xBfVfHtSEFNls,1308 +django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo,sha256=wAFETbVpnUkTChU3d58C2qUdh0_klrwZ5X0yqSavBeY,1242 +django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po,sha256=b1CcYJx9s6swmeXvcI6VE2b_FU_i2_xsHyB4IyAYMoQ,1386 +django/contrib/redirects/locale/el/LC_MESSAGES/django.mo,sha256=kzCurtbtzdZsJOzqLbTtn3kjltOnBq6Nd8p8EFTllF0,1384 +django/contrib/redirects/locale/el/LC_MESSAGES/django.po,sha256=-lFhtPYSaYaS81Zh1CX9vxx0lvQDpAUsTBRNT48ne94,1611 +django/contrib/redirects/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/redirects/locale/en/LC_MESSAGES/django.po,sha256=3eabYEzjR72eSPB0YS6-y4thESdzhQMxAXwlwHX_bGs,1105 +django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486 +django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po,sha256=CcP5GVZaImhRgohA5zy5K3rCscOlBtn81DB-V26-Wxg,958 +django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo,sha256=VscL30uJnV-eiQZITpBCy0xk_FfKdnMh4O9Hk4HGxww,1053 +django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po,sha256=loe8xIVjZ7eyteQNLPoa-QceBZdgky22dR6deK5ubmA,1246 +django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo,sha256=pZo0DSbfGGTHi-jgaTGp29kJK-iplaai-WXJoOPluMA,1138 +django/contrib/redirects/locale/eo/LC_MESSAGES/django.po,sha256=3AxFPHffYw3svHe-MR3zuVGLMtkJPL_SX_vB_ztx98c,1414 +django/contrib/redirects/locale/es/LC_MESSAGES/django.mo,sha256=RfNvdDrQeIfIw9I0dpnRjs10QzAFx-h-NRqYIfHx5gQ,1143 +django/contrib/redirects/locale/es/LC_MESSAGES/django.po,sha256=FePzvVGRJi6SmLm988JAbM3PADj1Bjn_XjGa7SFykkU,1392 +django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo,sha256=r692fI2lVfRy4G0y8iBc-j4gFB8URHZSLRFNVTHfhC0,1101 +django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po,sha256=UFTX4uDkhpd8Lo7ozQ_goAUkXsPlRuzdF8V5GMCbO7A,1316 +django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo,sha256=wcAMOiqsgz2KEpRwirRH9FNoto6vmo_hxthrQJi0IHU,1147 +django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po,sha256=n8DM14vHekZRayH0B6Pm3L5XnSo4lto4ZAdu4OhcOmc,1291 +django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo,sha256=aU__Eh-OzuEO7sRI45r-7Jnpz9QQpEKtqAZuWpfwQyQ,1136 +django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po,sha256=KyfWRFCA5kcBpi1uVK_rosEfYFs5mzpBvTsK5rdK4j0,1331 +django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486 +django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po,sha256=f4XZW8OHjRJoztMJtSDCxd2_Mfy-XK44hLtigjGSsZY,958 +django/contrib/redirects/locale/et/LC_MESSAGES/django.mo,sha256=1KWgSYZUyo6JbwlQHdCg9IRwI4-llys7MfkFRCN10C8,1122 +django/contrib/redirects/locale/et/LC_MESSAGES/django.po,sha256=j0-f8wRSbi6oM8fwRmG1LptZrgUYCyoHzNE3sGuDmoU,1346 +django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo,sha256=c0en4U_IaOUGF0Tt8lMwCm2Fmv3bAiT-D8BO9pNVFIM,1119 +django/contrib/redirects/locale/eu/LC_MESSAGES/django.po,sha256=W-tZOxWXSOzUgZSKRG_CoOf7XjxYuQEMZp0D59EZK9A,1304 +django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo,sha256=WEtbdwPLTpiEZqTb6hJZMeLjL1snmGDWbzoYwa3BQnI,1241 +django/contrib/redirects/locale/fa/LC_MESSAGES/django.po,sha256=-XfgGc8mlwIWIk0NvtWZlwBrcDG3Mrj9k7FLDJMKQl4,1463 +django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo,sha256=mCSVYBr0r3ieZPuORu4t1bsxHVnXg5_4cV8C59RC-vk,1158 +django/contrib/redirects/locale/fi/LC_MESSAGES/django.po,sha256=5hNG5JNitRLU1YrFwSOnyiMRTlRw4rXgyTjRImXEy-g,1368 +django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo,sha256=I1P_kxyPHDIDVBDQN41n_YJ8XlQolXHGWA6zBicKdaQ,1115 +django/contrib/redirects/locale/fr/LC_MESSAGES/django.po,sha256=PNSeqiILgKrYphJu58dq557p_CELrVYjE3NMHaeMn70,1346 +django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/redirects/locale/fy/LC_MESSAGES/django.po,sha256=D7xverCbf3kTCcFM8h7EKWM5DcxZRqeOSKDB1irbKeE,948 +django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo,sha256=blwOMshClFZKvOZXVvqENK_E_OkdS1ydbjQCDXcHXd4,1075 +django/contrib/redirects/locale/ga/LC_MESSAGES/django.po,sha256=76rdrG4GVbcKwgUQN4bB-B0t6hpivCA_ehf4uzGM_mY,1341 +django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo,sha256=fcIwOFja3uSj8spusyE3ECkiugkvGk9pa5DLsGSkSMQ,1252 +django/contrib/redirects/locale/gd/LC_MESSAGES/django.po,sha256=CkNt_Ra3yA9uKDy4BeK6in2lc63VSqqlK2JPQ6s4S-Q,1371 +django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo,sha256=LoMrpBThJSmWzZ1wT66xGndnNCVCOq2eCEyo88qKwkA,1127 +django/contrib/redirects/locale/gl/LC_MESSAGES/django.po,sha256=d8qXhC2wI45yXtFJuMBgibzHsCkZSxAD3I6pVdpxlSU,1313 +django/contrib/redirects/locale/he/LC_MESSAGES/django.mo,sha256=cVPF03bdLcUiZt52toHoPXMqE5rEYPU0vEb5uIZwH_4,1128 +django/contrib/redirects/locale/he/LC_MESSAGES/django.po,sha256=Ycu8QAgIhJm-zN3_dlJelXKK87YQZV8Ahc5i7AUtkVk,1302 +django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo,sha256=onR8L7Kvkx6HgFLK7jT-wA_zjarBN8pyltG6BbKFIWU,1409 +django/contrib/redirects/locale/hi/LC_MESSAGES/django.po,sha256=fNv9_qwR9iS-pjWNXnrUFIqvc10lwg3bfj5lgdQOy1U,1649 +django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo,sha256=7wHi6Uu0czZhI6v0ndJJ1wSkalTRfn7D5ovyw8tr4U4,1207 +django/contrib/redirects/locale/hr/LC_MESSAGES/django.po,sha256=HtxZwZ-ymmf-XID0z5s7nGYg-4gJL8i6FDGWt9i4Wns,1406 +django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo,sha256=BWq3u0MayCCE_OEhXKmZpiGMgJ0FoVcx_1MhU1RwYCY,1202 +django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po,sha256=1amIKvx5ekK-LFuGlYjDZECPdHB-3Jef7YkNIrixhZw,1396 +django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo,sha256=Co0W08iPHHkK9gAn-XCMM2EVkT3Z1YPyO8RGKiweGHg,1104 +django/contrib/redirects/locale/hu/LC_MESSAGES/django.po,sha256=iEjHBh8B7VMXZDdwTnyvNf7I8IjKjzB0uH9YRL3YcgA,1371 +django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo,sha256=gT5x1TZXMNyBwfmQ-C_cOB60JGYdKIM7tVb3-J5d6nw,1261 +django/contrib/redirects/locale/hy/LC_MESSAGES/django.po,sha256=40QTpth2AVeoy9P36rMJC2C82YsBh_KYup19WL6zM6w,1359 +django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo,sha256=PDB5ZQP6iH31xN6N2YmPZYjt6zzc88TRmh9_gAWH2U0,1152 +django/contrib/redirects/locale/ia/LC_MESSAGES/django.po,sha256=GXjbzY-cQz2QLx_iuqgijT7VUMcoNKL7prbP6yIbj8E,1297 +django/contrib/redirects/locale/id/LC_MESSAGES/django.mo,sha256=O7EKMm1GR4o1JXQV5vFP58nFK-__2evesMPJFucOxsc,1067 +django/contrib/redirects/locale/id/LC_MESSAGES/django.po,sha256=4qK_1_82j2RmRm4d6JWMskOCy1QIeuNral9xP1x2s10,1364 +django/contrib/redirects/locale/io/LC_MESSAGES/django.mo,sha256=vz7TWRML-DFDFapbEXTByb9-pRQwoeJ0ApSdh6nOzXY,1019 +django/contrib/redirects/locale/io/LC_MESSAGES/django.po,sha256=obStuMYYSQ7x2utkGS3gekdPfnsNAwp3DcNwlwdg1sI,1228 +django/contrib/redirects/locale/is/LC_MESSAGES/django.mo,sha256=aMjlGilYfP7clGriAp1Za60uCD40rvLt9sKXuYX3ABg,1040 +django/contrib/redirects/locale/is/LC_MESSAGES/django.po,sha256=nw5fxVV20eQqsk4WKg6cIiKttG3zsITSVzH4p5xBV8s,1299 +django/contrib/redirects/locale/it/LC_MESSAGES/django.mo,sha256=nFyQf8zpMFSgbDT85GHnOxQQbuss2Dp_DlwhgLvPVAQ,1105 +django/contrib/redirects/locale/it/LC_MESSAGES/django.po,sha256=_mI90dLhi--cxkJWjtTT9_JLesqyMOPKYrfGhzwVDQs,1307 +django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo,sha256=98oXXZ0raebFOFB23-p5VaAhbW46kwC9jxM8I2FAV_U,1148 +django/contrib/redirects/locale/ja/LC_MESSAGES/django.po,sha256=XJQiqtbTrwDIBQCWfYJcHuXYDh7gr0HvCTiuGXcZtIQ,1324 +django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo,sha256=0aOLKrhUX6YAIMNyt6KES9q2iFk2GupEr76WeGlJMkk,1511 +django/contrib/redirects/locale/ka/LC_MESSAGES/django.po,sha256=bK3ULAIG00Nszoz74r-W3W8CihaoijYkWlc6sUqJXrg,1720 +django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo,sha256=Ogx9NXK1Nfw4ctZfp-slIL81ziDX3f4DZ01OkVNY5Tw,699 +django/contrib/redirects/locale/kab/LC_MESSAGES/django.po,sha256=gI6aUPkXH-XzKrStDsMCMNfQKDEc-D1ffqE-Z-ItQuI,1001 +django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo,sha256=KVLc6PKL1MP_Px0LmpoW2lIvgLiSzlvoJ9062F-s3Zw,1261 +django/contrib/redirects/locale/kk/LC_MESSAGES/django.po,sha256=k3TtiYJ7x50M19DCu2eLcsCroKusJ3paiC2RvZ-920A,1473 +django/contrib/redirects/locale/km/LC_MESSAGES/django.mo,sha256=tcW1s7jvTG0cagtdRNT0jSNkhX-B903LKl7bK31ZvJU,1248 +django/contrib/redirects/locale/km/LC_MESSAGES/django.po,sha256=KJ4h1umpfFLdsWZtsfXoeOl6cUPUD97U4ISWt80UZ2U,1437 +django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo,sha256=-gqNBZVFvxqOiPWUb9jH4myXufHHfdyr_yROTfpk2jU,1396 +django/contrib/redirects/locale/kn/LC_MESSAGES/django.po,sha256=qFM2v3ys7E5u-WJE7CR-2IMrDTqFjNq96OQ1syMDWoI,1588 +django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo,sha256=yDH8E_HHHuztdZ7NZMrPX-wE5Uczz5N_WqU3ry1SLeY,902 +django/contrib/redirects/locale/ko/LC_MESSAGES/django.po,sha256=SKwVRkFsM0FI3AegJJyH-Ah4IKCKyhVAP3dgEVjb8Yc,1342 +django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/redirects/locale/lb/LC_MESSAGES/django.po,sha256=Hv1CF9CC78YuVVNpklDtPJDU5-iIUeuXcljewmc9akg,946 +django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo,sha256=reiFMXJnvE4XUosbKjyvUFzl4IKjlJoFK1gVJE9Tbnc,1191 +django/contrib/redirects/locale/lt/LC_MESSAGES/django.po,sha256=3D3sSO1D9XyRpiT57l-0emy7V11uKCWJYqpEzmmpUzE,1377 +django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo,sha256=VqRgNikYESXSN9jtuwSV1g-0diIEFHZum0OBFKa8beI,1156 +django/contrib/redirects/locale/lv/LC_MESSAGES/django.po,sha256=CY9aWK4HDemKARRc9HrCdaFQgDnebK0BR4BYXUvdlcs,1418 +django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo,sha256=3XGgf2K60LclScPKcgw07TId6x535AW5jtGVJ9lC01A,1353 +django/contrib/redirects/locale/mk/LC_MESSAGES/django.po,sha256=Smsdpid5VByoxvnfzju_XOlp6aTPl8qshFptot3cRYM,1596 +django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo,sha256=IhSkvbgX9xfE4GypOQ7W7SDM-wOOqx1xgSTW7L1JofU,1573 +django/contrib/redirects/locale/ml/LC_MESSAGES/django.po,sha256=9KpXf88GRUB5I51Rj3q9qhvhjHFINuiJ9ig0SZdYE6k,1755 +django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo,sha256=14fdHC_hZrRaA0EAFzBJy8BHj4jMMX6l2e6rLLBtJ8E,1274 +django/contrib/redirects/locale/mn/LC_MESSAGES/django.po,sha256=7_QzUWf5l0P-7gM35p9UW7bOj33NabQq_zSrekUeZsY,1502 +django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/redirects/locale/mr/LC_MESSAGES/django.po,sha256=0aGKTlriCJoP-Tirl-qCl7tjjpjURhgCjRGmurHVO3c,940 +django/contrib/redirects/locale/my/LC_MESSAGES/django.mo,sha256=H5-y9A3_1yIXJzC4sSuHqhURxhOlnYEL8Nvc0IF4zUE,549 +django/contrib/redirects/locale/my/LC_MESSAGES/django.po,sha256=MZGNt0jMQA6aHA6OmjvaC_ajvRWfUfDiKkV0j3_E480,1052 +django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo,sha256=flh3A8h-hu_Ed0dGUAPH7ZxF1WC9sYB2NqCPkNPfMLQ,1147 +django/contrib/redirects/locale/nb/LC_MESSAGES/django.po,sha256=9v20yzVkeilgDRfoXetQNytBShYEsgOLVctsZpzOfBI,1405 +django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo,sha256=TxTnBGIi5k0PKAjADeCuOAJQV5dtzLrsFRXBXtfszWI,1420 +django/contrib/redirects/locale/ne/LC_MESSAGES/django.po,sha256=5b5R-6AlSIQrDyTtcmquoW5xrQRGZwlxZpBpZfVo5t4,1607 +django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo,sha256=uGVQu5YnzWjf2aBtxY2ZdCHXz7M8T2GKz5EcQ20ODvM,1080 +django/contrib/redirects/locale/nl/LC_MESSAGES/django.po,sha256=fnEiqRdM-BOP2_6v4U-FC4cCmcVgXAXloiWKhYu-uOE,1400 +django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo,sha256=oiw7wSgqGUrHIdec6sIa7OlHXGME5iWA9h1UUlhl6Mw,1072 +django/contrib/redirects/locale/nn/LC_MESSAGES/django.po,sha256=pfu1XKvB-9DS_5dAbvjGzZCKAYxBEtnStJlBJxRSEXk,1267 +django/contrib/redirects/locale/os/LC_MESSAGES/django.mo,sha256=joQ-ibV9_6ctGMNPLZQLCx5fUamRQngs6_LDd_s9sMQ,1150 +django/contrib/redirects/locale/os/LC_MESSAGES/django.po,sha256=ZwFWiuGS9comy7r2kMnKuqaPOvVehVdAAuFvXM5ldxM,1358 +django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo,sha256=MY-OIDNXlZth-ZRoOJ52nlUPg_51_F5k0NBIpc7GZEw,748 +django/contrib/redirects/locale/pa/LC_MESSAGES/django.po,sha256=TPDTK2ZvDyvO1ob8Qfr64QDbHVWAREfEeBO5w9jf63E,1199 +django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo,sha256=aGAOoNeL9rFfo9e0-cF_BR_rar_EdsvVRu4Dst13-Fo,1243 +django/contrib/redirects/locale/pl/LC_MESSAGES/django.po,sha256=HN7UDhyn68qUz9F3vbiHZ-I6blirCP0_cb67OG0lkOs,1556 +django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo,sha256=WocPaVk3fQEz_MLmGVtFBGwsThD-gNU7GDocqEbeaBA,1129 +django/contrib/redirects/locale/pt/LC_MESSAGES/django.po,sha256=ptCzoE41c9uFAbgSjb6VHSFYPEUv_51YyBdoThXN3XA,1350 +django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo,sha256=VdgeMeUovE8E-WoYzGPnyap8LvvyrpQVNWQz_TQnHlA,1125 +django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po,sha256=IWPRuD5TBAiHwAzbOwNYTSVv8fjtz8oiFPVro_PMn7o,1459 +django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo,sha256=HSQTOHGdyzkHlm6Ti1FBLU7Oj896At-xJJnwQF4Orgw,1222 +django/contrib/redirects/locale/ro/LC_MESSAGES/django.po,sha256=OYNV39_gWPt8ZgHDs6Bkv5_o4rveTnnlhcZLXhbwPXw,1453 +django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo,sha256=pV_IGa3dFWwIymZyWyVdmQHdJO2dpMTm0ut3W1qBz0I,1456 +django/contrib/redirects/locale/ru/LC_MESSAGES/django.po,sha256=Mz9QdfJfRwOGxvZ4VmvXgBDImvp0uHZMCg4Z6-Yvf3I,1669 +django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo,sha256=4U3JX_UnnYmBNtKseSUobgTslILeZWfn37Dg7q52svY,1160 +django/contrib/redirects/locale/sk/LC_MESSAGES/django.po,sha256=8tDwfdkGAXo4eAR66nfkIdegbyjc3-qBfrMZgrf_cF4,1376 +django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo,sha256=GAZtOFSUxsOHdXs3AzT40D-3JFWIlNDZU_Z-cMvdaHo,1173 +django/contrib/redirects/locale/sl/LC_MESSAGES/django.po,sha256=gkZTyxNh8L2gNxyLVzm-M1HTiK8KDvughTa2MK9NzWo,1351 +django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo,sha256=PPP6hwk_Rdh1PAui4uYeO0WYDiqp2s9xkff3otyU0Vw,1100 +django/contrib/redirects/locale/sq/LC_MESSAGES/django.po,sha256=4CMn93YtrtEWnyZg3grYTlgYrZfMGaBibCZsTemkYng,1328 +django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo,sha256=98eGFHvaFIE3E9wHJZASamCveVAq3QIpbomp-v98PP0,1350 +django/contrib/redirects/locale/sr/LC_MESSAGES/django.po,sha256=oBVQHiz2S5tyx7oLxYSj_iPObbrQb_fdoh9YRXm7mno,1542 +django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=NtYbs9CByLODdJjIZl9tww4H0lYTkzlQyxQPH3zDFiI,1145 +django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po,sha256=QaY-2djs6TVf7eGtExSP_68ZLMlBO-rOj1HgvlIJ5Sw,1354 +django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo,sha256=y1KpTjzF2FWY_x373UyaEFTTNYPT6hroB6zvA1ev010,1147 +django/contrib/redirects/locale/sv/LC_MESSAGES/django.po,sha256=7Us64PRHRyIZ8D7lY6HCef9xXnoSfwWI3YYtlNEaFSo,1362 +django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo,sha256=oJnTp9CTgNsg5TSOV_aPZIUXdr6-l65hAZbaARZCO2w,1078 +django/contrib/redirects/locale/sw/LC_MESSAGES/django.po,sha256=CTVwA3O7GUQb7l1WpbmT8kOfqr7DpqnIyQt3HWJ6YTQ,1245 +django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo,sha256=AE6Py2_CV2gQKjKQAa_UgkLT9i61x3i1hegQpRGuZZM,1502 +django/contrib/redirects/locale/ta/LC_MESSAGES/django.po,sha256=ojdq8p4HnwtK0n6By2I6_xuucOpJIobJEGRMGc_TrS8,1700 +django/contrib/redirects/locale/te/LC_MESSAGES/django.mo,sha256=Gtcs4cbgrD7-bSkPKiPbM5DcjONS2fSdHhvWdbs_E1M,467 +django/contrib/redirects/locale/te/LC_MESSAGES/django.po,sha256=RT-t3TjcOLyNQQWljVrIcPWErKssh_HQMyGujloy-EI,939 +django/contrib/redirects/locale/th/LC_MESSAGES/django.mo,sha256=1l6eO0k1KjcmuRJKUS4ZdtJGhAUmUDMAMIeNwEobQqY,1331 +django/contrib/redirects/locale/th/LC_MESSAGES/django.po,sha256=DVVqpGC6zL8Hy8e6P8ZkhKbvcMJmXV5euLxmfoTCtms,1513 +django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo,sha256=JiOhL6RrAmUHv_ljhAb20__QFEKbv1OznJTm9RKDP_w,1099 +django/contrib/redirects/locale/tr/LC_MESSAGES/django.po,sha256=3Q80rTAcOtqptUPzct6E6PrQEDj5XzhQcXwjtvm9iBs,1369 +django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo,sha256=Hf1JXcCGNwedxy1nVRM_pQ0yUebC-tvOXr7P0h86JyI,1178 +django/contrib/redirects/locale/tt/LC_MESSAGES/django.po,sha256=2WCyBQtqZk-8GXgtu-x94JYSNrryy2QoMnirhiBrgV0,1376 +django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/redirects/locale/udm/LC_MESSAGES/django.po,sha256=xsxlm4itpyLlLdPQRIHLuvTYRvruhM3Ezc9jtp3XSm4,934 +django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo,sha256=nCpHZGF8aYaw3UDrSXugypDHEIkWYHXncmyC_YHzxw0,1414 +django/contrib/redirects/locale/uk/LC_MESSAGES/django.po,sha256=-UDqtKOxcTA4C4O0QW7GnjtnXtEmwDfvfLmNQFMI1No,1700 +django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo,sha256=CQkt-yxyAaTd_Aj1ZZC8s5-4fI2TRyTEZ-SYJZgpRrQ,1138 +django/contrib/redirects/locale/ur/LC_MESSAGES/django.po,sha256=CkhmN49PvYTccvlSRu8qGpcbx2C-1aY7K3Lq1VC2fuM,1330 +django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo,sha256=vD0Y920SSsRsLROKFaU6YM8CT5KjQxJcgMh5bZ4Pugo,743 +django/contrib/redirects/locale/uz/LC_MESSAGES/django.po,sha256=G2Rj-6g8Vse2Bp8L_hGIO84S--akagMXj8gSa7F2lK4,1195 +django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo,sha256=BquXycJKh-7-D9p-rGUNnjqzs1d6S1YhEJjFW8_ARFA,1106 +django/contrib/redirects/locale/vi/LC_MESSAGES/django.po,sha256=xsCASrGZNbQk4d1mhsTZBcCpPJ0KO6Jr4Zz1wfnL67s,1301 +django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=6BYNDezC7sivl2kFYJRZf2lphYze8z4PVhdRG9XU0xY,1093 +django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po,sha256=m0lZpC3XCfE-H9-PFK5-v9gD9zgXIn_VMqsnO36CiZw,1359 +django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=-H2o5p5v8j5RqKZ6vOsWToFWGOn8CaO3KSTiU42Zqjk,1071 +django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po,sha256=fQicS5nmJLgloKM83l6NcSJp36-Wjn2Dl9jf03e0pGo,1334 +django/contrib/redirects/migrations/0001_initial.py,sha256=sLBuNs62iHPqqj7fx46HxEVW7ibcUcw2qTaavugh4d4,1499 +django/contrib/redirects/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/__init__.py,sha256=W7kKt-gCROzrUA6UpIRAit3SHa-coN4_A4fphGikCEk,67 +django/contrib/sessions/apps.py,sha256=q_fkp7a7_1GT14XHkHgNIET0sItgfBeFT7B137_KeZM,194 +django/contrib/sessions/base_session.py,sha256=5FofwClB_ukwCsXPfJbzUvKoYaMQ78B_lWXU0fqSg1k,1490 +django/contrib/sessions/exceptions.py,sha256=epvfG9haHc8p34Ic6IqUSC-Yj06Ruh2TSm9G6HQMdno,256 +django/contrib/sessions/middleware.py,sha256=LK9G_6KRDN-t_4ZQTBn4Fmy0cXusgfI-UzGJDZyMDno,3386 +django/contrib/sessions/models.py,sha256=vmROoszsXHnPHoSbFca8k-U9Z8Wg6EAHYeEK87VHHk8,1257 +django/contrib/sessions/serializers.py,sha256=clq2ENNQ3ujEuuc5gHSDvaz30kWWHelnQPY6tzUu0qs,424 +django/contrib/sessions/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/backends/base.py,sha256=J3Hud0Gx3SIr3A4ysLThhQUSPXcwzRcN3ksh2VNv2dE,12416 +django/contrib/sessions/backends/cache.py,sha256=-qeSz07gUidiY_xq7imMJ3SP17J_rLsIO50KxOhq_8E,2713 +django/contrib/sessions/backends/cached_db.py,sha256=c9JtGXxyJYRT7MMVrqwo0jw1v3JCpaBNXeL8d1tAfBE,2011 +django/contrib/sessions/backends/db.py,sha256=zzhv0nQ4OIFeyM2QXrIUG26l_IJosagKaGOI2NcZnz4,3770 +django/contrib/sessions/backends/file.py,sha256=0L3yDX0_eFtP9_GVl79OpRfHRtJ9o5vOUsRCYHFHOEA,7740 +django/contrib/sessions/backends/signed_cookies.py,sha256=L43gDpk-RFbMF_-fluEjzyUO5nKrEiCTX0yZs7cd5eI,2665 +django/contrib/sessions/locale/af/LC_MESSAGES/django.mo,sha256=0DS0pgVrMN-bUimDfesgHs8Lgr0loz2c6nJdz58RxyQ,717 +django/contrib/sessions/locale/af/LC_MESSAGES/django.po,sha256=ZJRLBshQCAiTTAUycdB3MZIadLeHR5LxbSlDvSWLnEo,838 +django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo,sha256=yoepqaR68PTGLx--cAOzP94Sqyl5xIYpeQ0IFWgY380,846 +django/contrib/sessions/locale/ar/LC_MESSAGES/django.po,sha256=ZgwtBYIdtnqp_8nKHXF1NVJFzQU81-3yv9b7STrQHMc,995 +django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo,sha256=hz2m-PkrHby2CKfIOARj6kCzisT-Vs0syfDSTx_iVVw,702 +django/contrib/sessions/locale/ast/LC_MESSAGES/django.po,sha256=M90j1Nx6oDJ16hguUkfKYlyb5OymUeZ5xzPixWxSC7I,846 +django/contrib/sessions/locale/az/LC_MESSAGES/django.mo,sha256=_4XcYdtRasbCjRoaWGoULsXX2cEa--KdRdqbnGoaRuM,731 +django/contrib/sessions/locale/az/LC_MESSAGES/django.po,sha256=qYd7vz6A-hHQNwewzI6wEsxRVLdoc2xLGm1RPW0Hxc4,891 +django/contrib/sessions/locale/be/LC_MESSAGES/django.mo,sha256=FHZ72QuOd-vAOjOXisLs4CaEk7uZuzjO_EfUSB6754M,854 +django/contrib/sessions/locale/be/LC_MESSAGES/django.po,sha256=tHsYVn3XNTcukB0SrHUWP1iV763rrQHCimOyJHRPiek,1023 +django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo,sha256=DGp3j3E0-5bBjFCKx9c6Jcz9ZaXysd2DgVPuxROWDmU,783 +django/contrib/sessions/locale/bg/LC_MESSAGES/django.po,sha256=AEgnW2F8S85JZOh4JVJ6nLynsmHRZOBBoOluVxHosVo,942 +django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo,sha256=0BdFN7ou9tmoVG00fCA-frb1Tri3iKz43W7SWal398s,762 +django/contrib/sessions/locale/bn/LC_MESSAGES/django.po,sha256=LycmTel6LXV2HGGN6qzlAfID-cVEQCNnW1Nv_hbWXJk,909 +django/contrib/sessions/locale/br/LC_MESSAGES/django.mo,sha256=6ubPQUyXX08KUssyVZBMMkTlD94mlA6wzsteAMiZ8C8,1027 +django/contrib/sessions/locale/br/LC_MESSAGES/django.po,sha256=LKxGGHOQejKpUp18rCU2FXW8D_H3WuP_P6dPlEluwcE,1201 +django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo,sha256=M7TvlJMrSUAFhp7oUSpUKejnbTuIK-19yiGBBECl9Sc,759 +django/contrib/sessions/locale/bs/LC_MESSAGES/django.po,sha256=Ur0AeRjXUsLgDJhcGiw75hRk4Qe98DzPBOocD7GFDRQ,909 +django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo,sha256=tbaZ48PaihGGD9-2oTKiMFY3kbXjU59nNciCRINOBNk,738 +django/contrib/sessions/locale/ca/LC_MESSAGES/django.po,sha256=tJuJdehKuD9aXOauWOkE5idQhsVsLbeg1Usmc6N_SP0,906 +django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo,sha256=wEFP4NNaRQDbcbw96UC906jN4rOrlPJMn60VloXr944,759 +django/contrib/sessions/locale/cs/LC_MESSAGES/django.po,sha256=7XkKESwfOmbDRDbUYr1f62-fDOuyI-aCqLGaEiDrmX8,962 +django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo,sha256=GeWVeV2PvgLQV8ecVUA2g3-VvdzMsedgIDUSpn8DByk,774 +django/contrib/sessions/locale/cy/LC_MESSAGES/django.po,sha256=zo18MXtkEdO1L0Q6ewFurx3lsEWTCdh0JpQJTmvw5bY,952 +django/contrib/sessions/locale/da/LC_MESSAGES/django.mo,sha256=7_YecCzfeYQp9zVYt2B7MtjhAAuVb0BcK2D5Qv_uAbg,681 +django/contrib/sessions/locale/da/LC_MESSAGES/django.po,sha256=qX_Oo7niVo57bazlIYFA6bnVmPBclUUTWvZFYNLaG04,880 +django/contrib/sessions/locale/de/LC_MESSAGES/django.mo,sha256=N3kTal0YK9z7Te3zYGLbJmoSB6oWaviWDLGdPlsPa9g,721 +django/contrib/sessions/locale/de/LC_MESSAGES/django.po,sha256=0qnfDeCUQN2buKn6R0MvwhQP05XWxSu-xgvfxvnJe3k,844 +django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo,sha256=RABl3WZmY6gLh4IqmTUhoBEXygDzjp_5lLF1MU9U5fA,810 +django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po,sha256=cItKs5tASYHzDxfTg0A_dgBQounpzoGyOEFn18E_W_g,934 +django/contrib/sessions/locale/el/LC_MESSAGES/django.mo,sha256=QbTbmcfgc8_4r5hFrIghDhk2XQ4f8_emKmqupMG2ah0,809 +django/contrib/sessions/locale/el/LC_MESSAGES/django.po,sha256=HeaEbpVmFhhrZt2NsZteYaYoeo8FYKZF0IoNJwtzZkc,971 +django/contrib/sessions/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/sessions/locale/en/LC_MESSAGES/django.po,sha256=afaM-IIUZtcRZduojUTS8tT0w7C4Ya9lXgReOvq_iF0,804 +django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486 +django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po,sha256=gvnvUpim1l7oImnzPXqBww-Uz0TgGjzCLaaszpdkQ10,761 +django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo,sha256=T5NQCTYkpERfP9yKbUvixT0VdBt1zGmGB8ITlkVc420,707 +django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po,sha256=1ks_VE1qpEfPcyKg0HybkTG0-DTttTHTfUPhQCR53sw,849 +django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo,sha256=eBvYQbZS_WxVV3QCSZAOyHNIljC2ZXxVc4mktUuXVjI,727 +django/contrib/sessions/locale/eo/LC_MESSAGES/django.po,sha256=Ru9xicyTgHWVHh26hO2nQNFRQmwBnYKEagsS8TZRv3E,917 +django/contrib/sessions/locale/es/LC_MESSAGES/django.mo,sha256=jbHSvHjO2OCLlBD66LefocKOEbefWbPhj-l3NugiWuc,734 +django/contrib/sessions/locale/es/LC_MESSAGES/django.po,sha256=fY5WXeONEXHeuBlH0LkvzdZ2CSgbvLZ8BJc429aIbhI,909 +django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo,sha256=_8icF2dMUWj4WW967rc5npgndXBAdJrIiz_VKf5D-Rw,694 +django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po,sha256=AnmvjeOA7EBTJ6wMOkCl8JRLVYRU8KS0egPijcKutns,879 +django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo,sha256=UP7ia0gV9W-l0Qq5AS4ZPadJtml8iuzzlS5C9guMgh8,754 +django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po,sha256=_XeiiRWvDaGjofamsRHr5up_EQvcw0w-GLLeWK27Af8,878 +django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo,sha256=MDM0K3xMvyf8ymvAurHYuacpxfG_YfJFyNnp1uuc6yY,756 +django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po,sha256=Y7VNa16F_yyK7_XJvF36rR2XNW8aBJK4UDweufyXpxE,892 +django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486 +django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po,sha256=zWjgB0AmsmhX2tjk1PgldttqY56Czz8epOVCaYWXTLU,761 +django/contrib/sessions/locale/et/LC_MESSAGES/django.mo,sha256=aL1jZWourEC7jtjsuBZHD-Gw9lpL6L1SoqjTtzguxD0,737 +django/contrib/sessions/locale/et/LC_MESSAGES/django.po,sha256=VNBYohAOs59jYWkjVMY-v2zwVy5AKrtBbFRJZLwdCFg,899 +django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo,sha256=M9piOB_t-ZnfN6pX-jeY0yWh2S_5cCuo1oGiy7X65A4,728 +django/contrib/sessions/locale/eu/LC_MESSAGES/django.po,sha256=bHdSoknoH0_dy26e93tWVdO4TT7rnCPXlSLPsYAhwyw,893 +django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo,sha256=6DdJcqaYuBnhpFFHR42w-RqML0eQPFMAUEEDY0Redy8,755 +django/contrib/sessions/locale/fa/LC_MESSAGES/django.po,sha256=NgJlLPsS9FXjRzKqGgUTkNG9puYrBRf0KQK-QqXMIxQ,916 +django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo,sha256=oAugvlTEvJmG8KsZw09WcfnifYY5oHnGo4lxcxqKeaY,721 +django/contrib/sessions/locale/fi/LC_MESSAGES/django.po,sha256=BVVrjbZZtLGAuZ9HK63p769CbjZFZMlS4BewSMfNMKU,889 +django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo,sha256=aDGYdzx2eInF6IZ-UzPDEJkuYVPnvwVND3qVuSfJNWw,692 +django/contrib/sessions/locale/fr/LC_MESSAGES/django.po,sha256=hARxGdtBOzEZ_iVyzkNvcKlgyM8fOkdXTH3upj2XFYM,893 +django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/sessions/locale/fy/LC_MESSAGES/django.po,sha256=U-VEY4WbmIkmrnPK4Mv-B-pbdtDzusBCVmE8iHyvzFU,751 +django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo,sha256=zTrydRCRDiUQwF4tQ3cN1-5w36i6KptagsdA5_SaGy0,747 +django/contrib/sessions/locale/ga/LC_MESSAGES/django.po,sha256=Qpk1JaUWiHSEPdgBk-O_KfvGzwlZ4IAA6c6-nsJe400,958 +django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo,sha256=Yi8blY_fUD5YTlnUD6YXZvv1qjm4QDriO6CJIUe1wIk,791 +django/contrib/sessions/locale/gd/LC_MESSAGES/django.po,sha256=fEa40AUqA5vh743Zqv0FO2WxSFXGYk4IzUR4BoaP-C4,890 +django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo,sha256=uQ2ZmtUNoVCB2mSlMGSy-j4a_hu9PBfJDo796d8beFA,701 +django/contrib/sessions/locale/gl/LC_MESSAGES/django.po,sha256=FovTLHdVK15N9FI9lFFAOP4zt7GsvO0kKdocgeVDkNk,902 +django/contrib/sessions/locale/he/LC_MESSAGES/django.mo,sha256=qhgjSWfGAOgl-i7iwzSrJttx88xcj1pB0iLkEK64mJU,809 +django/contrib/sessions/locale/he/LC_MESSAGES/django.po,sha256=gtBgkC2bpVyWm8B5pjV3-9tBo0xqUsJuJz2neN79isg,969 +django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo,sha256=naqxOjfAnNKy3qqnUG-4LGf9arLRJpjyWWmSj5tEfao,759 +django/contrib/sessions/locale/hi/LC_MESSAGES/django.po,sha256=WnTGvOz9YINMcUJg2BYCaHceZLKaTfsba_0AZtRNP38,951 +django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo,sha256=axyJAmXmadpFxIhu8rroVD8NsGGadQemh9-_ZDo7L1U,819 +django/contrib/sessions/locale/hr/LC_MESSAGES/django.po,sha256=3G-qOYXBO-eMWWsa5LwTCW9M1oF0hlWgEz7hAK8hJqI,998 +django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo,sha256=_OXpOlCt4KU0i65Iw4LMjSsyn__E9wH20l9vDNBSEzw,805 +django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po,sha256=yv3vX_UCDrdl07GQ79Mnytwgz2oTvySYOG9enzMpFJA,929 +django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo,sha256=ik40LnsWkKYEUioJB9e11EX9XZ-qWMa-S7haxGhM-iI,727 +django/contrib/sessions/locale/hu/LC_MESSAGES/django.po,sha256=1-UWEEsFxRwmshP2x4pJbitWIGZ1YMeDDxnAX-XGNxc,884 +django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo,sha256=x6VQWGdidRJFUJme-6jf1pcitktcQHQ7fhmw2UBej1Q,815 +django/contrib/sessions/locale/hy/LC_MESSAGES/django.po,sha256=eRMa3_A2Vx195mx2lvza1v-wcEcEeMrU63f0bgPPFjc,893 +django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo,sha256=-o4aQPNJeqSDRSLqcKuYvJuKNBbFqDJDe3IzHgSgZeQ,744 +django/contrib/sessions/locale/ia/LC_MESSAGES/django.po,sha256=PULLDd3QOIU03kgradgQzT6IicoPhLPlUvFgRl-tGbA,869 +django/contrib/sessions/locale/id/LC_MESSAGES/django.mo,sha256=mOaIF0NGOO0-dt-nhHL-i3cfvt9-JKTbyUkFWPqDS9Y,705 +django/contrib/sessions/locale/id/LC_MESSAGES/django.po,sha256=EA6AJno3CaFOO-dEU9VQ_GEI-RAXS0v0uFqn1RJGjEs,914 +django/contrib/sessions/locale/io/LC_MESSAGES/django.mo,sha256=_rqAY6reegqmxmWc-pW8_kDaG9zflZuD-PGOVFsjRHo,683 +django/contrib/sessions/locale/io/LC_MESSAGES/django.po,sha256=tbKMxGuB6mh_m0ex9rO9KkTy6qyuRW2ERrQsGwmPiaw,840 +django/contrib/sessions/locale/is/LC_MESSAGES/django.mo,sha256=3QeMl-MCnBie9Sc_aQ1I7BrBhkbuArpoSJP95UEs4lg,706 +django/contrib/sessions/locale/is/LC_MESSAGES/django.po,sha256=LADIFJv8L5vgDJxiQUmKPSN64zzzrIKImh8wpLBEVWQ,853 +django/contrib/sessions/locale/it/LC_MESSAGES/django.mo,sha256=qTY3O-0FbbpZ5-BR5xOJWP0rlnIkBZf-oSawW_YJWlk,726 +django/contrib/sessions/locale/it/LC_MESSAGES/django.po,sha256=hEv0iTGLuUvEBk-lF-w7a9P3ifC0-eiodNtuSc7cXhg,869 +django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo,sha256=hbv9FzWzXRIGRh_Kf_FLQB34xfmPU_9RQKn9u1kJqGU,757 +django/contrib/sessions/locale/ja/LC_MESSAGES/django.po,sha256=ppGx5ekOWGgDF3vzyrWsqnFUZ-sVZZhiOhvAzl_8v54,920 +django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo,sha256=VZ-ysrDbea_-tMV-1xtlTeW62IAy2RWR94V3Y1iSh4U,803 +django/contrib/sessions/locale/ka/LC_MESSAGES/django.po,sha256=MDOG7BAO8Ez75CfgERCq1zA3syJbvQKpc4wBVlryfqQ,950 +django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo,sha256=W_yE0NDPJrVznA2Qb89VuprJNwyxSg59ovvjkQe6mAs,743 +django/contrib/sessions/locale/kab/LC_MESSAGES/django.po,sha256=FJeEuv4P3NT_PpWHEUsQVSWXu65nYkJ6Z2AlbSKb0ZA,821 +django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo,sha256=FROGz_MuIhsIU5_-EYV38cHnRZrc3-OxxkBeK0ax9Rk,810 +django/contrib/sessions/locale/kk/LC_MESSAGES/django.po,sha256=l5gu1XfvRMNhCHBl-NTGoUHWa0nRSxqSDt0zljpr7Kg,1024 +django/contrib/sessions/locale/km/LC_MESSAGES/django.mo,sha256=VOuKsIG2DEeCA5JdheuMIeJlpmAhKrI6lD4KWYqIIPk,929 +django/contrib/sessions/locale/km/LC_MESSAGES/django.po,sha256=09i6Nd_rUK7UqFpJ70LMXTR6xS0NuGETRLe0CopMVBk,1073 +django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo,sha256=X5svX5_r3xZUy4OjUuo2gItc5PIOSjZOvE5IZwnM6Io,814 +django/contrib/sessions/locale/kn/LC_MESSAGES/django.po,sha256=Rq-I2veQe5l7Q7HG9pRY_mKeNcxhSRDgqphKbuNpoNc,961 +django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo,sha256=EUyVQYGtiFJg01mP30a0iOqBYHvpzHAcGTZM28Ubs5Q,700 +django/contrib/sessions/locale/ko/LC_MESSAGES/django.po,sha256=PjntvSzRz_Aekj9VFhGsP5yO6rAsxTMzwFj58JqToIU,855 +django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/sessions/locale/lb/LC_MESSAGES/django.po,sha256=3igeAnQjDg6D7ItBkQQhyBoFJOZlBxT7NoZiExwD-Fo,749 +django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo,sha256=L9w8-qxlDlCqR_2P0PZegfhok_I61n0mJ1koJxzufy4,786 +django/contrib/sessions/locale/lt/LC_MESSAGES/django.po,sha256=7e5BmXuaHHgGX5W1eC6wIH2QyMTNOg4JZjkZM0i-jTc,952 +django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo,sha256=exEzDUNwNS0GLsUkKPu_SfqBxU7T6VRA_T2schIQZ88,753 +django/contrib/sessions/locale/lv/LC_MESSAGES/django.po,sha256=fBgQEbsGg1ECVm1PFDrS2sfKs2eqmsqrSYzx9ELotNQ,909 +django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo,sha256=4oTWp8-qzUQBiqG32hNieABgT3O17q2C4iEhcFtAxLA,816 +django/contrib/sessions/locale/mk/LC_MESSAGES/django.po,sha256=afApb5YRhPXUWR8yF_TTym73u0ov7lWiwRda1-uNiLY,988 +django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo,sha256=tff5TsHILSV1kAAB3bzHQZDB9fgMglZJTofzCunGBzc,854 +django/contrib/sessions/locale/ml/LC_MESSAGES/django.po,sha256=eRkeupt42kUey_9vJmlH8USshnXPZ8M7aYHq88u-5iY,1016 +django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo,sha256=CcCH2ggVYrD29Q11ZMthcscBno2ePkQDbZfoYquTRPM,784 +django/contrib/sessions/locale/mn/LC_MESSAGES/django.po,sha256=nvcjbJzXiDvWFXrM5CxgOQIq8XucsZEUVdYkY8LnCRE,992 +django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/sessions/locale/mr/LC_MESSAGES/django.po,sha256=FQRdZ-qIDuvTCrwbnWfxoxNi8rywLSebcNbxGvr-hb0,743 +django/contrib/sessions/locale/my/LC_MESSAGES/django.mo,sha256=8zzzyfJYok969YuAwDUaa6YhxaSi3wcXy3HRNXDb_70,872 +django/contrib/sessions/locale/my/LC_MESSAGES/django.po,sha256=mfs0zRBI0tugyyEfXBZzZ_FMIohydq6EYPZGra678pw,997 +django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo,sha256=hfJ1NCFgcAAtUvNEpaZ9b31PyidHxDGicifUWANIbM8,717 +django/contrib/sessions/locale/nb/LC_MESSAGES/django.po,sha256=yXr6oYuiu01oELdQKuztQFWz8x5C2zS5OzEfU9MHJsU,908 +django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo,sha256=slFgMrqGVtLRHdGorLGPpB09SM92_WnbnRR0rlpNlPQ,802 +django/contrib/sessions/locale/ne/LC_MESSAGES/django.po,sha256=1vyoiGnnaB8f9SFz8PGfzpw6V_NoL78DQwjjnB6fS98,978 +django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo,sha256=84BTlTyxa409moKbQMFyJisI65w22p09qjJHBAmQe-g,692 +django/contrib/sessions/locale/nl/LC_MESSAGES/django.po,sha256=smRr-QPGm6h6hdXxghggWES8b2NnL7yDQ07coUypa8g,909 +django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo,sha256=042gOyJuXb51nG7gxI_rYst9QWuB3thtAeevKpDLFVQ,695 +django/contrib/sessions/locale/nn/LC_MESSAGES/django.po,sha256=j2kDL1vDsHoBX_ky6_S0tWxaqFst6v7OLqqlt6N2ECI,842 +django/contrib/sessions/locale/os/LC_MESSAGES/django.mo,sha256=xVux1Ag45Jo9HQBbkrRzcWrNjqP09nMQl16jIh0YVlo,732 +django/contrib/sessions/locale/os/LC_MESSAGES/django.po,sha256=1hG5Vsz2a2yW05_Z9cTNrBKtK9VRPZuQdx4KJ_0n98o,892 +django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo,sha256=qEx4r_ONwXK1-qYD5uxxXEQPqK5I6rf38QZoUSm7UVA,771 +django/contrib/sessions/locale/pa/LC_MESSAGES/django.po,sha256=M7fmVGP8DtZGEuTV3iJhuWWqILVUTDZvUey_mrP4_fM,918 +django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo,sha256=F9CQb7gQ1ltP6B82JNKu8IAsTdHK5TNke0rtDIgNz3c,828 +django/contrib/sessions/locale/pl/LC_MESSAGES/django.po,sha256=C_MJBB-vwTZbx-t4-mzun-RxHhdOVv04b6xrWdnTv8E,1084 +django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo,sha256=dlJF7hF4GjLmQPdAJhtf-FCKX26XsOmZlChOcxxIqPk,738 +django/contrib/sessions/locale/pt/LC_MESSAGES/django.po,sha256=cOycrw3HCHjSYBadpalyrg5LdRTlqZCTyMh93GOQ8O0,896 +django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo,sha256=XHNF5D8oXIia3e3LYwxd46a2JOgDc_ykvc8yuo21fT0,757 +django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po,sha256=K_zxKaUKngWPFpvHgXOcymJEsiONSw-OrVrroRXmUUk,924 +django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo,sha256=WR9I9Gum_pq7Qg2Gzhf-zAv43OwR_uDtsbhtx4Ta5gE,776 +django/contrib/sessions/locale/ro/LC_MESSAGES/django.po,sha256=fEgVxL_0Llnjspu9EsXBf8AVL0DGdfF7NgV88G7WN1E,987 +django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo,sha256=n-8vXR5spEbdfyeWOYWC_6kBbAppNoRrWYgqKFY6gJA,913 +django/contrib/sessions/locale/ru/LC_MESSAGES/django.po,sha256=sNqNGdoof6eXzFlh4YIp1O54MdDOAFDjD3GvAFsNP8k,1101 +django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo,sha256=Yntm624Wt410RwuNPU1c-WwQoyrRrBs69VlKMlNUHeQ,766 +django/contrib/sessions/locale/sk/LC_MESSAGES/django.po,sha256=JIvzoKw_r4jZXWEaHvIYAZDAzrEkfpr0WM9dNfUlzBE,924 +django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo,sha256=EE6mB8BiYRyAxK6qzurRWcaYVs96FO_4rERYQdtIt3k,770 +django/contrib/sessions/locale/sl/LC_MESSAGES/django.po,sha256=KTjBWyvaNCHbpV9K6vbnavwxxXqf2DlIqVPv7MVFcO8,928 +django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo,sha256=eRaTy3WOC76EYLtMSD4xtJj2h8eE4W-TS4VvCVxI5bw,683 +django/contrib/sessions/locale/sq/LC_MESSAGES/django.po,sha256=9pzp7834LQKafe5fJzC4OKsAd6XfgtEQl6K6hVLaBQM,844 +django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo,sha256=ZDBOYmWIoSyDeT0nYIIFeMtW5jwpr257CbdTZlkVeRQ,855 +django/contrib/sessions/locale/sr/LC_MESSAGES/django.po,sha256=OXQOYeac0ghuzLrwaErJGr1FczuORTu2yroFX5hvRnk,1027 +django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=f3x9f9hTOsJltghjzJMdd8ueDwzxJex6zTXsU-_Hf_Y,757 +django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po,sha256=HKjo7hjSAvgrIvlI0SkgF3zxz8TtKWyBT51UGNhDwek,946 +django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo,sha256=SGbr0K_5iAMA22MfseAldMDgLSEBrI56pCtyV8tMAPc,707 +django/contrib/sessions/locale/sv/LC_MESSAGES/django.po,sha256=vraY3915wBYGeYu9Ro0-TlBeLWqGZP1fbckLv8y47Ys,853 +django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo,sha256=Edhqp8yuBnrGtJqPO7jxobeXN4uU5wKSLrOsFO1F23k,743 +django/contrib/sessions/locale/sw/LC_MESSAGES/django.po,sha256=iY4rN4T-AA2FBQA7DiWWFvrclqKiDYQefqwwVw61-f8,858 +django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo,sha256=qLIThhFQbJKc1_UVr7wVIm1rJfK2rO5m84BCB_oKq7s,801 +django/contrib/sessions/locale/ta/LC_MESSAGES/django.po,sha256=bYqtYf9XgP9IKKFJXh0u64JhRhDvPPUliI1J-NeRpKE,945 +django/contrib/sessions/locale/te/LC_MESSAGES/django.mo,sha256=kteZeivEckt4AmAeKgmgouMQo1qqSQrI8M42B16gMnQ,786 +django/contrib/sessions/locale/te/LC_MESSAGES/django.po,sha256=dQgiNS52RHrL6bV9CEO7Jk9lk3YUQrUBDCg_bP2OSZc,980 +django/contrib/sessions/locale/th/LC_MESSAGES/django.mo,sha256=D41vbkoYMdYPj3587p-c5yytLVi9pE5xvRZEYhZrxPs,814 +django/contrib/sessions/locale/th/LC_MESSAGES/django.po,sha256=43704TUv4ysKhL8T5MowZwlyv1JZrPyVGrpdIyb3r40,988 +django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo,sha256=STDnYOeO1d9nSCVf7pSkMq8R7z1aeqq-xAuIYjsofuE,685 +django/contrib/sessions/locale/tr/LC_MESSAGES/django.po,sha256=XYKo0_P5xitYehvjMzEw2MTp_Nza-cIXEECV3dA6BmY,863 +django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo,sha256=Q-FGu_ljTsxXO_EWu7zCzGwoqFXkeoTzWSlvx85VLGc,806 +django/contrib/sessions/locale/tt/LC_MESSAGES/django.po,sha256=UC85dFs_1836noZTuZEzPqAjQMFfSvj7oGmEWOGcfCA,962 +django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/sessions/locale/udm/LC_MESSAGES/django.po,sha256=CPml2Fn9Ax_qO5brCFDLPBoTiNdvsvJb1btQ0COwUfY,737 +django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo,sha256=jzNrLuFghQMCHNRQ0ihnKMCicgear0yWiTOLnvdPszw,841 +django/contrib/sessions/locale/uk/LC_MESSAGES/django.po,sha256=GM9kNL1VoFSRfbHB5KiivIbp-nJl1aZ69wL2xszNqlM,1017 +django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo,sha256=FkGIiHegr8HR8zjVyJ9TTW1T9WYtAL5Mg77nRKnKqWk,729 +django/contrib/sessions/locale/ur/LC_MESSAGES/django.po,sha256=qR4QEBTP6CH09XFCzsPSPg2Dv0LqzbRV_I67HO2OUwk,879 +django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo,sha256=asPu0RhMB_Ui1li-OTVL4qIXnM9XpjsYyx5yJldDYBY,744 +django/contrib/sessions/locale/uz/LC_MESSAGES/django.po,sha256=KsHuLgGJt-KDH0h6ND7JLP2dDJAdLVHSlau4DkkfqA8,880 +django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo,sha256=KriTpT-Hgr10DMnY5Bmbd4isxmSFLmav8vg2tuL2Bb8,679 +django/contrib/sessions/locale/vi/LC_MESSAGES/django.po,sha256=M7S46Q0Q961ykz_5FCAN8SXQ54w8tp4rZeZpy6bPtXs,909 +django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=zsbhIMocgB8Yn1XEBxbIIbBh8tLifvvYNlhe5U61ch8,722 +django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po,sha256=tPshgXjEv6pME4N082ztamJhd5whHB2_IV_egdP-LlQ,889 +django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=WZzfpFKZ41Pu8Q9SuhGu3hXwp4eiq8Dt8vdiQfxvF9M,733 +django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po,sha256=6IRDQu6-PAYh6SyEIcKdhuR172lX0buY8qqsU0QXlYU,898 +django/contrib/sessions/management/commands/clearsessions.py,sha256=yDcSmK65l5H1-2hiHhDlN0zivQrxm_ihNKLKt6MmRiQ,650 +django/contrib/sessions/migrations/0001_initial.py,sha256=F7fzk2d9hDPjUwx2w-lXdZcFG1h4HyHnkfcJ6aK7C-0,955 +django/contrib/sessions/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sitemaps/__init__.py,sha256=FI4QoFGgY4j9UVt4Z3-W4M8HDBdQHzq109y7gG2Nu5s,5764 +django/contrib/sitemaps/apps.py,sha256=ktY9PcWsmv5TOlvEdG6IL8ZBbGMtZRpO24j5g7DGilU,195 +django/contrib/sitemaps/views.py,sha256=KP-cCkD4VGFbd4ZavWK79gAkZa83APeRgTx-eouny4M,3516 +django/contrib/sitemaps/management/commands/ping_google.py,sha256=gqfCpod-Wp3nFBc8mpWhbP2QSWsWE74IJ-hlcm8_7SY,558 +django/contrib/sitemaps/templates/sitemap.xml,sha256=KTiksPVpo22dkRjjavoJtckzo-Rin7aZ_QgbC42Y8O0,479 +django/contrib/sitemaps/templates/sitemap_index.xml,sha256=VqDmRlWMx9kC6taiBoi1h9JVspV54ou3nFjE8Nfofl8,209 +django/contrib/sites/__init__.py,sha256=qIj6PsbyT_DVkvjrASve-9F8GeoCKv6sO0-jlEhRJv4,61 +django/contrib/sites/admin.py,sha256=ClzCRn4fUPWO1dNlEWEPjSDInnK87XbNRmadvjYs1go,214 +django/contrib/sites/apps.py,sha256=xRYkn8bbxOK7rSsDiLHPkxUqAN4iscVMvwKIjiwdj94,365 +django/contrib/sites/management.py,sha256=K6cgSOdN4ins_TiWjUIkGFwuibJmshTlFonqYT2QKrw,1597 +django/contrib/sites/managers.py,sha256=OJfKicEOuqcD0B7NuH4scszrknQZ-X1Nf1PL0XgWqLM,1929 +django/contrib/sites/middleware.py,sha256=qYcVHsHOg0VxQNS4saoLHkdF503nJR-D7Z01vE0SvUM,309 +django/contrib/sites/models.py,sha256=nXbWDsKuokp2-bwxnrDhw2yA221wByMOsGaTxwwX4B8,3697 +django/contrib/sites/requests.py,sha256=74RhONzbRqEGoNXLu4T7ZjAFKYvCLmY_XQWnGRz6jdw,640 +django/contrib/sites/shortcuts.py,sha256=RZr1iT8zY_z8o52PIWEBFCQL03pE28pp6708LveS240,581 +django/contrib/sites/locale/af/LC_MESSAGES/django.mo,sha256=A10bZFMs-wUetVfF5UrFwmuiKnN4ZnlrR4Rx8U4Ut1A,786 +django/contrib/sites/locale/af/LC_MESSAGES/django.po,sha256=O0-ZRvmXvV_34kONuqakuXV5OmYbQ569K1Puj3qQNac,907 +django/contrib/sites/locale/ar/LC_MESSAGES/django.mo,sha256=kLoytp2jvhWn6p1c8kNVua2sYAMnrpS4xnbluHD22Vs,947 +django/contrib/sites/locale/ar/LC_MESSAGES/django.po,sha256=HYA3pA29GktzXBP-soUEn9VP2vkZuhVIXVA8TNPCHCs,1135 +django/contrib/sites/locale/ast/LC_MESSAGES/django.mo,sha256=eEvaeiGnZFBPGzKLlRz4M9AHemgJVAb-yNpbpxRqtd0,774 +django/contrib/sites/locale/ast/LC_MESSAGES/django.po,sha256=huBohKzLpdaJRFMFXXSDhDCUOqVqyWXfxb8_lLOkUd0,915 +django/contrib/sites/locale/az/LC_MESSAGES/django.mo,sha256=CjAGI4qGoXN95q4LpCLXLKvaNB33Ocf5SfXdurFBkas,773 +django/contrib/sites/locale/az/LC_MESSAGES/django.po,sha256=E84kNPFhgHmIfYT0uzCnTPGwPkAqKzqwFvJB7pETbVo,933 +django/contrib/sites/locale/be/LC_MESSAGES/django.mo,sha256=HGh78mI50ZldBtQ8jId26SI-lSHv4ZLcveRN2J8VzH8,983 +django/contrib/sites/locale/be/LC_MESSAGES/django.po,sha256=W5FhVJKcmd3WHl2Lpd5NJUsc7_sE_1Pipk3CVPoGPa4,1152 +django/contrib/sites/locale/bg/LC_MESSAGES/django.mo,sha256=a2R52umIQIhnzFaFYSRhQ6nBlywE8RGMj2FUOFmyb0A,904 +django/contrib/sites/locale/bg/LC_MESSAGES/django.po,sha256=awB8RMS-qByhNB6eH2f0Oyxb3SH8waLhrZ--rokGfaI,1118 +django/contrib/sites/locale/bn/LC_MESSAGES/django.mo,sha256=cI3a9_L-OC7gtdyRNaGX7A5w0Za0M4ERnYB7rSNkuRU,925 +django/contrib/sites/locale/bn/LC_MESSAGES/django.po,sha256=8ZxYF16bgtTZSZRZFok6IJxUV02vIztoVx2qXqwO8NM,1090 +django/contrib/sites/locale/br/LC_MESSAGES/django.mo,sha256=rI_dIznbwnadZbxOPtQxZ1pGYePNwcNNXt05iiPkchU,1107 +django/contrib/sites/locale/br/LC_MESSAGES/django.po,sha256=7Ein5Xw73DNGGtdd595Bx6ixfSD-dBXZNBUU44pSLuQ,1281 +django/contrib/sites/locale/bs/LC_MESSAGES/django.mo,sha256=bDeqQNme586LnQRQdvOWaLGZssjOoECef3vMq_OCXno,692 +django/contrib/sites/locale/bs/LC_MESSAGES/django.po,sha256=xRTWInDNiLxikjwsjgW_pYjhy24zOro90-909ns9fig,923 +django/contrib/sites/locale/ca/LC_MESSAGES/django.mo,sha256=lEUuQEpgDY3bVWzRONrPzYlojRoNduT16_oYDkkbdfk,791 +django/contrib/sites/locale/ca/LC_MESSAGES/django.po,sha256=aORAoVn69iG1ynmEfnkBzBO-UZOzzbkPVOU-ZvfMtZg,996 +django/contrib/sites/locale/cs/LC_MESSAGES/django.mo,sha256=mnXnpU7sLDTJ3OrIUTnGarPYsupNIUPV4ex_BPWU8fk,827 +django/contrib/sites/locale/cs/LC_MESSAGES/django.po,sha256=ONzFlwzmt7p5jdp6111qQkkevckRrd7GNS0lkDPKu-4,1035 +django/contrib/sites/locale/cy/LC_MESSAGES/django.mo,sha256=70pOie0K__hkmM9oBUaQfVwHjK8Cl48E26kRQL2mtew,835 +django/contrib/sites/locale/cy/LC_MESSAGES/django.po,sha256=FAZrVc72x-4R1A-1qYOBwADoXngC_F6FO8nRjr5-Z6g,1013 +django/contrib/sites/locale/da/LC_MESSAGES/django.mo,sha256=FTOyV1DIH9sMldyjgPw98d2HCotoO4zJ_KY_C9DCB7Y,753 +django/contrib/sites/locale/da/LC_MESSAGES/django.po,sha256=Po1Z6u52CFCyz9hLfK009pMbZzZgHrBse0ViX8wCYm8,957 +django/contrib/sites/locale/de/LC_MESSAGES/django.mo,sha256=5Q6X0_bDQ1ZRpkTy7UpPNzrhmQsB9Q0P1agB7koRyzs,792 +django/contrib/sites/locale/de/LC_MESSAGES/django.po,sha256=aD0wBinqtDUPvBbwtHrLEhFdoVRx1nOh17cJFuWhN3U,980 +django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo,sha256=pPpWYsYp81MTrqCsGF0QnGktZNIll70bdBwSkuVE8go,868 +django/contrib/sites/locale/dsb/LC_MESSAGES/django.po,sha256=IA3G8AKJls20gzfxnrfPzivMNpL8A0zBQBg7OyzrP6g,992 +django/contrib/sites/locale/el/LC_MESSAGES/django.mo,sha256=G9o1zLGysUePGzZRicQ2aIIrc2UXMLTQmdpbrUMfWBU,878 +django/contrib/sites/locale/el/LC_MESSAGES/django.po,sha256=RBi_D-_znYuV6LXfTlSOf1Mvuyl96fIyEoiZ-lgeyWs,1133 +django/contrib/sites/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/sites/locale/en/LC_MESSAGES/django.po,sha256=tSjfrNZ_FqLHsXjm5NuTyo5-JpdlPLsPZjFqF2APhy8,817 +django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486 +django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po,sha256=7V9dBdbfHa9aGAfs9nw6ivSxX30CqaYc1ptfplTAPJc,791 +django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo,sha256=FbSh7msJdrHsXr0EtDMuODFzSANG_HJ3iBlW8ePpqFs,639 +django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po,sha256=Ib-DIuTWlrN3kg99kLCuqWJVtt1NWaFD4UbDFK6d4KY,862 +django/contrib/sites/locale/eo/LC_MESSAGES/django.mo,sha256=N4KkH12OHxic3pp1okeBhpfDx8XxxpULk3UC219vjWU,792 +django/contrib/sites/locale/eo/LC_MESSAGES/django.po,sha256=ymXSJaFJWGBO903ObqR-ows-p4T3KyUplc_p_3r1uk8,1043 +django/contrib/sites/locale/es/LC_MESSAGES/django.mo,sha256=qLN1uoCdslxdYWgdjgSBi7szllP-mQZtHbuZnNOthsQ,804 +django/contrib/sites/locale/es/LC_MESSAGES/django.po,sha256=QClia2zY39269VSQzkQsLwwukthN6u2JBsjbLNxA1VQ,1066 +django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo,sha256=_O4rVk7IM2BBlZvjDP2SvTOo8WWqthQi5exQzt027-s,776 +django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po,sha256=RwyNylXbyxdSXn6qRDXd99-GaEPlmr6TicHTUW0boaQ,969 +django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo,sha256=a4Xje2M26wyIx6Wlg6puHo_OXjiDEy7b0FquT9gbThA,825 +django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po,sha256=9bnRhVD099JzkheO80l65dufjuawsj9aSFgFu5A-lnM,949 +django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo,sha256=AtGta5jBL9XNBvfSpsCcnDtDhvcb89ALl4hNjSPxibM,809 +django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po,sha256=TnkpQp-7swH-x9cytUJe-QJRd2n_pYMVo0ltDw9Pu8o,991 +django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486 +django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po,sha256=8PWXy2L1l67wDIi98Q45j7OpVITr0Lt4zwitAnB-d_o,791 +django/contrib/sites/locale/et/LC_MESSAGES/django.mo,sha256=I2E-49UQsG-F26OeAfnKlfUdA3YCkUSV8ffA-GMSkE0,788 +django/contrib/sites/locale/et/LC_MESSAGES/django.po,sha256=mEfD6EyQ15PPivb5FTlkabt3Lo_XGtomI9XzHrrh34Y,992 +django/contrib/sites/locale/eu/LC_MESSAGES/django.mo,sha256=1HTAFI3DvTAflLJsN7NVtSd4XOTlfoeLGFyYCOX69Ec,807 +django/contrib/sites/locale/eu/LC_MESSAGES/django.po,sha256=NWxdE5-mF6Ak4nPRpCFEgAMIsVDe9YBEZl81v9kEuX8,1023 +django/contrib/sites/locale/fa/LC_MESSAGES/django.mo,sha256=odtsOpZ6noNqwDb18HDc2e6nz3NMsa-wrTN-9dk7d9w,872 +django/contrib/sites/locale/fa/LC_MESSAGES/django.po,sha256=uL2I9XjqIxqTUKf6buewtm9rwflM23pxspFMs7w4SPM,1088 +django/contrib/sites/locale/fi/LC_MESSAGES/django.mo,sha256=I5DUeLk1ChUC32q5uzriABCLLJpJKNbEK4BfqylPQzg,786 +django/contrib/sites/locale/fi/LC_MESSAGES/django.po,sha256=LH2sFIKM3YHPoz9zIu10z1DFv1svXphBdOhXNy4a17s,929 +django/contrib/sites/locale/fr/LC_MESSAGES/django.mo,sha256=W7Ne5HqgnRcl42njzbUaDSY059jdhwvr0tgZzecVWD8,756 +django/contrib/sites/locale/fr/LC_MESSAGES/django.po,sha256=u24rHDJ47AoBgcmBwI1tIescAgbjFxov6y906H_uhK0,999 +django/contrib/sites/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/sites/locale/fy/LC_MESSAGES/django.po,sha256=Yh6Lw0QI2Me0zCtlyXraFLjERKqklB6-IJLDTjH_jTs,781 +django/contrib/sites/locale/ga/LC_MESSAGES/django.mo,sha256=g5popLirHXWn6ZWJHESQaG5MmKWZL_JNI_5Vgn5FTqU,683 +django/contrib/sites/locale/ga/LC_MESSAGES/django.po,sha256=34hj3ELt7GQ7CaHL246uBDmvsVUaaN5kTrzt8j7eETM,962 +django/contrib/sites/locale/gd/LC_MESSAGES/django.mo,sha256=df4XIGGD6FIyMUXsb-SoSqNfBFAsRXf4qYtolh_C964,858 +django/contrib/sites/locale/gd/LC_MESSAGES/django.po,sha256=NPKp7A5-y-MR7r8r4WqtcVQJEHCIOP5mLTd0cIfUsug,957 +django/contrib/sites/locale/gl/LC_MESSAGES/django.mo,sha256=QUJdJV71VT-4iVQ5mUAeyszTVhD2LlmmPQv0WpPWttU,742 +django/contrib/sites/locale/gl/LC_MESSAGES/django.po,sha256=cLcejsFyoFk0fRX9fAcl9owHoxiD593QZZeZTfObBVw,940 +django/contrib/sites/locale/he/LC_MESSAGES/django.mo,sha256=L3bganfG4gHqp2WXGh4rfWmmbaIxHaGc7-ypAqjSL_E,820 +django/contrib/sites/locale/he/LC_MESSAGES/django.po,sha256=nT0Gu0iWpFV7ZJ6SAdcogZccCz3CV-R5rgqwEl5NA6c,985 +django/contrib/sites/locale/hi/LC_MESSAGES/django.mo,sha256=J4oIS1vJnCvdCCUD4tlTUVyTe4Xn0gKcWedfhH4C0t0,665 +django/contrib/sites/locale/hi/LC_MESSAGES/django.po,sha256=INBrm37jL3okBHuzX8MSN1vMptj77a-4kwQkAyt8w_8,890 +django/contrib/sites/locale/hr/LC_MESSAGES/django.mo,sha256=KjDUhEaOuYSMexcURu2UgfkatN2rrUcAbCUbcpVSInk,876 +django/contrib/sites/locale/hr/LC_MESSAGES/django.po,sha256=-nFMFkVuDoKYDFV_zdNULOqQlnqtiCG57aakN5hqlmg,1055 +django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo,sha256=RyHVb7u9aRn5BXmWzR1gApbZlOioPDJ59ufR1Oo3e8Y,863 +django/contrib/sites/locale/hsb/LC_MESSAGES/django.po,sha256=Aq54y5Gb14bIt28oDDrFltnSOk31Z2YalwaJMDMXfWc,987 +django/contrib/sites/locale/hu/LC_MESSAGES/django.mo,sha256=P--LN84U2BeZAvRVR-OiWl4R02cTTBi2o8XR2yHIwIU,796 +django/contrib/sites/locale/hu/LC_MESSAGES/django.po,sha256=b0VhyFdNaZZR5MH1vFsLL69FmICN8Dz-sTRk0PdK49E,953 +django/contrib/sites/locale/hy/LC_MESSAGES/django.mo,sha256=Hs9XwRHRkHicLWt_NvWvr7nMocmY-Kc8XphhVSAMQRc,906 +django/contrib/sites/locale/hy/LC_MESSAGES/django.po,sha256=MU4hXXGfjXKfYcjxDYzFfsEUIelz5ZzyQLkeSrUQKa0,1049 +django/contrib/sites/locale/ia/LC_MESSAGES/django.mo,sha256=gRMs-W5EiY26gqzwnDXEMbeb1vs0bYZ2DC2a9VCciew,809 +django/contrib/sites/locale/ia/LC_MESSAGES/django.po,sha256=HXZzn9ACIqfR2YoyvpK2FjZ7QuEq_RVZ1kSC4nxMgeg,934 +django/contrib/sites/locale/id/LC_MESSAGES/django.mo,sha256=__2E_2TmVUcbf1ygxtS1lHvkhv8L0mdTAtJpBsdH24Y,791 +django/contrib/sites/locale/id/LC_MESSAGES/django.po,sha256=e5teAHiMjLR8RDlg8q99qtW-K81ltcIiBIdb1MZw2sE,1000 +django/contrib/sites/locale/io/LC_MESSAGES/django.mo,sha256=W-NP0b-zR1oWUZnHZ6fPu5AC2Q6o7nUNoxssgeguUBo,760 +django/contrib/sites/locale/io/LC_MESSAGES/django.po,sha256=G4GUUz3rxoBjWTs-j5RFCvv52AEHiwrCBwom5hYeBSE,914 +django/contrib/sites/locale/is/LC_MESSAGES/django.mo,sha256=lkJgTzDjh5PNfIJpOS2DxKmwVUs9Sl5XwFHv4YdCB30,812 +django/contrib/sites/locale/is/LC_MESSAGES/django.po,sha256=1DVgAcHSZVyDd5xn483oqICIG4ooyZY8ko7A3aDogKM,976 +django/contrib/sites/locale/it/LC_MESSAGES/django.mo,sha256=6NQjjtDMudnAgnDCkemOXinzX0J-eAE5gSq1F8kjusY,795 +django/contrib/sites/locale/it/LC_MESSAGES/django.po,sha256=zxavlLMmp1t1rCDsgrw12kVgxiK5EyR_mOalSu8-ws8,984 +django/contrib/sites/locale/ja/LC_MESSAGES/django.mo,sha256=RNuCS6wv8uK5TmXkSH_7SjsbUFkf24spZfTsvfoTKro,814 +django/contrib/sites/locale/ja/LC_MESSAGES/django.po,sha256=e-cj92VOVc5ycIY6NwyFh5bO7Q9q5vp5CG4dOzd_eWQ,982 +django/contrib/sites/locale/ka/LC_MESSAGES/django.mo,sha256=m8GTqr9j0ijn0YJhvnsYwlk5oYcASKbHg_5hLqZ91TI,993 +django/contrib/sites/locale/ka/LC_MESSAGES/django.po,sha256=BCsMvNq-3Pi9-VnUvpUQaGx6pbCgI8rCcIHUA8VL4as,1155 +django/contrib/sites/locale/kab/LC_MESSAGES/django.mo,sha256=Utdj5gH5YPeaYMjeMzF-vjqYvYTCipre2qCBkEJSc-Y,808 +django/contrib/sites/locale/kab/LC_MESSAGES/django.po,sha256=d78Z-YanYZkyP5tpasj8oAa5RimVEmce6dlq5vDSscA,886 +django/contrib/sites/locale/kk/LC_MESSAGES/django.mo,sha256=T2dTZ83vBRfQb2dRaKOrhvO00BHQu_2bu0O0k7RsvGA,895 +django/contrib/sites/locale/kk/LC_MESSAGES/django.po,sha256=9ixNnoE3BxfBj4Xza0FM5qInd0uiNnAlXgDb_KaICn4,1057 +django/contrib/sites/locale/km/LC_MESSAGES/django.mo,sha256=Q7pn5E4qN957j20-iCHgrfI-p8sm3Tc8O2DWeuH0By8,701 +django/contrib/sites/locale/km/LC_MESSAGES/django.po,sha256=TOs76vlCMYOZrdHgXPWZhQH1kTBQTpzsDJ8N4kbJQ7E,926 +django/contrib/sites/locale/kn/LC_MESSAGES/django.mo,sha256=fikclDn-FKU_t9lZeBtQciisS3Kqv4tJHtu923OXLJI,676 +django/contrib/sites/locale/kn/LC_MESSAGES/django.po,sha256=p_P7L0KAUoKNLH8vuHV4_2mTWK1m1tjep5XgRqbWd2k,904 +django/contrib/sites/locale/ko/LC_MESSAGES/django.mo,sha256=wlfoWG-vmMSCipUJVVC0Y_W7QbGNNE-oEnVwl_6-AmY,807 +django/contrib/sites/locale/ko/LC_MESSAGES/django.po,sha256=TENAk9obGUxFwMnJQj_V9sZxEKJj4DyWMuGpx3Ft_pM,1049 +django/contrib/sites/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/sites/locale/lb/LC_MESSAGES/django.po,sha256=1yRdK9Zyh7kcWG7wUexuF9-zxEaKLS2gG3ggVOHbRJ8,779 +django/contrib/sites/locale/lt/LC_MESSAGES/django.mo,sha256=bK6PJtd7DaOgDukkzuqos5ktgdjSF_ffL9IJTQY839s,869 +django/contrib/sites/locale/lt/LC_MESSAGES/django.po,sha256=9q7QfFf_IR2A1Cr_9aLVIWf-McR0LivtRC284w2_bo0,1124 +django/contrib/sites/locale/lv/LC_MESSAGES/django.mo,sha256=t9bQiVqpAmXrq8QijN4Lh0n6EGUGQjnuH7hDcu21z4c,823 +django/contrib/sites/locale/lv/LC_MESSAGES/django.po,sha256=vMaEtXGosD3AcTomiuctbOpjLes8TRBnumLe8DC4yq4,1023 +django/contrib/sites/locale/mk/LC_MESSAGES/django.mo,sha256=_YXasRJRWjYmmiEWCrAoqnrKuHHPBG_v_EYTUe16Nfo,885 +django/contrib/sites/locale/mk/LC_MESSAGES/django.po,sha256=AgdIjiSpN0P5o5rr5Ie4sFhnmS5d4doB1ffk91lmOvY,1062 +django/contrib/sites/locale/ml/LC_MESSAGES/django.mo,sha256=axNQVBY0nbR7hYa5bzNtdxB17AUOs2WXhu0Rg--FA3Q,1007 +django/contrib/sites/locale/ml/LC_MESSAGES/django.po,sha256=Sg7hHfK8OMs05ebtTv8gxS6_2kZv-OODwf7okP95Jtk,1169 +django/contrib/sites/locale/mn/LC_MESSAGES/django.mo,sha256=w2sqJRAe0wyz_IuCZ_Ocubs_VHL6wV1BcutWPz0dseQ,867 +django/contrib/sites/locale/mn/LC_MESSAGES/django.po,sha256=Zh_Eao0kLZsrQ8wkL1f-pRrsAtNJOspu45uStq5t8Mo,1127 +django/contrib/sites/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/sites/locale/mr/LC_MESSAGES/django.po,sha256=pqnjF5oxvpMyjijy6JfI8qJbbbowZzE5tZF0DMYiCBs,773 +django/contrib/sites/locale/my/LC_MESSAGES/django.mo,sha256=jN59e9wRheZYx1A4t_BKc7Hx11J5LJg2wQRd21aQv08,961 +django/contrib/sites/locale/my/LC_MESSAGES/django.po,sha256=EhqYIW5-rX33YjsDsBwfiFb3BK6fZKVc3CRYeJpZX1E,1086 +django/contrib/sites/locale/nb/LC_MESSAGES/django.mo,sha256=AaiHGcmcciy5IMBPVAShcc1OQOETJvBCv7GYHMcIQMA,793 +django/contrib/sites/locale/nb/LC_MESSAGES/django.po,sha256=936zoN1sPSiiq7GuH01umrw8W6BtymYEU3bCfOQyfWE,1000 +django/contrib/sites/locale/ne/LC_MESSAGES/django.mo,sha256=wM13WrA4uMhfpU1GKFMcbVBh5LRB4v-v-t7t4AHqaU4,899 +django/contrib/sites/locale/ne/LC_MESSAGES/django.po,sha256=9_78nN66h6ioTnd0OO6YM8MHbqw8uoiaSAyn69aT8Ag,1021 +django/contrib/sites/locale/nl/LC_MESSAGES/django.mo,sha256=ghu-tNPNZuE4sVRDWDVmmmVNPYZLWYm_UPJRqh8wmec,735 +django/contrib/sites/locale/nl/LC_MESSAGES/django.po,sha256=1DCQNzMRhy4vW-KkmlPGy58UR27Np5ilmYhmjaq-8_k,1030 +django/contrib/sites/locale/nn/LC_MESSAGES/django.mo,sha256=m1SUw5bhDUemD8yMGDxcWdhbUMtzZ9WXWXtV2AHIzBs,633 +django/contrib/sites/locale/nn/LC_MESSAGES/django.po,sha256=i8BQyewiU2ymkAkj12M2MJBVbCJPp8PB8_NcQiScaD4,861 +django/contrib/sites/locale/os/LC_MESSAGES/django.mo,sha256=Su06FkWMOPzBxoung3bEju_EnyAEAXROoe33imO65uQ,806 +django/contrib/sites/locale/os/LC_MESSAGES/django.po,sha256=4i4rX6aXDUKjq64T02iStqV2V2erUsSVnTivh2XtQeY,963 +django/contrib/sites/locale/pa/LC_MESSAGES/django.mo,sha256=tOHiisOtZrTyIFoo4Ipn_XFH9hhu-ubJLMdOML5ZUgk,684 +django/contrib/sites/locale/pa/LC_MESSAGES/django.po,sha256=ztGyuqvzxRfNjqDG0rMLCu_oQ8V3Dxdsx0WZoYUyNv8,912 +django/contrib/sites/locale/pl/LC_MESSAGES/django.mo,sha256=lo5K262sZmo-hXvcHoBsEDqX8oJEPSxJY5EfRIqHZh0,903 +django/contrib/sites/locale/pl/LC_MESSAGES/django.po,sha256=-kQ49UvXITMy1vjJoN_emuazV_EjNDQnZDERXWNoKvw,1181 +django/contrib/sites/locale/pt/LC_MESSAGES/django.mo,sha256=PrcFQ04lFJ7mIYThXbW6acmDigEFIoLAC0PYk5hfaJs,797 +django/contrib/sites/locale/pt/LC_MESSAGES/django.po,sha256=Aj8hYI9W5nk5uxKHj1oE-b9bxmmuoeXLKaJDPfI2x2o,993 +django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo,sha256=BsFfarOR6Qk67fB-tTWgGhuOReJSgjwJBkIzZsv28vo,824 +django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po,sha256=jfvgelpWn2VQqYe2_CE39SLTsscCckvjuZo6dWII28c,1023 +django/contrib/sites/locale/ro/LC_MESSAGES/django.mo,sha256=oGsZw4_uYpaH6adMxnAuifJgHeZ_ytRZ4rFhiNfRQkQ,857 +django/contrib/sites/locale/ro/LC_MESSAGES/django.po,sha256=tWbWVbjFFELNzSXX4_5ltmzEeEJsY3pKwgEOjgV_W_8,1112 +django/contrib/sites/locale/ru/LC_MESSAGES/django.mo,sha256=bIZJWMpm2O5S6RC_2cfkrp5NXaTU2GWSsMr0wHVEmcw,1016 +django/contrib/sites/locale/ru/LC_MESSAGES/django.po,sha256=jHy5GR05ZSjLmAwaVNq3m0WdhO9GYxge3rDBziqesA8,1300 +django/contrib/sites/locale/sk/LC_MESSAGES/django.mo,sha256=-EYdm14ZjoR8bd7Rv2b5G7UJVSKmZa1ItLsdATR3-Cg,822 +django/contrib/sites/locale/sk/LC_MESSAGES/django.po,sha256=L2YRNq26DdT3OUFhw25ncZBgs232v6kSsAUTc0beIC8,1019 +django/contrib/sites/locale/sl/LC_MESSAGES/django.mo,sha256=JmkpTKJGWgnBM3CqOUriGvrDnvg2YWabIU2kbYAOM4s,845 +django/contrib/sites/locale/sl/LC_MESSAGES/django.po,sha256=qWrWrSz5r3UOVraX08ILt3TTmfyTDGKbJKbTlN9YImU,1059 +django/contrib/sites/locale/sq/LC_MESSAGES/django.mo,sha256=DMLN1ZDJeDnslavjcKloXSXn6IvangVliVP3O6U8dAY,769 +django/contrib/sites/locale/sq/LC_MESSAGES/django.po,sha256=zg3ALcMNZErAS_xFxmtv6TmXZ0vxobX5AzCwOSRSwc8,930 +django/contrib/sites/locale/sr/LC_MESSAGES/django.mo,sha256=8kfi9IPdB2reF8C_eC2phaP6qonboHPwes_w3UgNtzw,935 +django/contrib/sites/locale/sr/LC_MESSAGES/django.po,sha256=A7xaen8H1W4uMBRAqCXT_0KQMoA2-45AUNDfGo9FydI,1107 +django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=jMXiq18efq0wErJAQfJR1fCnkYcEb7OYXg8sv6kzP0s,815 +django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po,sha256=9jkWYcZCTfQr2UZtyvhWDAmEHBrzunJUZcx7FlrFOis,1004 +django/contrib/sites/locale/sv/LC_MESSAGES/django.mo,sha256=qmhdn3N2C_DR_FYrUaFSacVjghgfb0CuWKanVRJSTq8,792 +django/contrib/sites/locale/sv/LC_MESSAGES/django.po,sha256=dDVuuuHGpZIoT6dU48aT2j4nEuGrd6zZ3FiZEs3TCeE,987 +django/contrib/sites/locale/sw/LC_MESSAGES/django.mo,sha256=cWjjDdFXBGmpUm03UDtgdDrREa2r75oMsXiEPT_Bx3g,781 +django/contrib/sites/locale/sw/LC_MESSAGES/django.po,sha256=oOKNdztQQU0sd6XmLI-n3ONmTL7jx3Q0z1YD8673Wi8,901 +django/contrib/sites/locale/ta/LC_MESSAGES/django.mo,sha256=CLO41KsSKqBrgtrHi6fmXaBk-_Y2l4KBLDJctZuZyWY,714 +django/contrib/sites/locale/ta/LC_MESSAGES/django.po,sha256=YsTITHg7ikkNcsP29tDgkZrUdtO0s9PrV1XPu4mgqCw,939 +django/contrib/sites/locale/te/LC_MESSAGES/django.mo,sha256=GmIWuVyIOcoQoAmr2HxCwBDE9JUYEktzYig93H_4v50,687 +django/contrib/sites/locale/te/LC_MESSAGES/django.po,sha256=jbncxU9H3EjXxWPsEoCKJhKi392XXTGvWyuenqLDxps,912 +django/contrib/sites/locale/th/LC_MESSAGES/django.mo,sha256=dQOp4JoP3gvfsxqEQ73L6F8FgH1YtAA9hYY-Uz5sv6Y,898 +django/contrib/sites/locale/th/LC_MESSAGES/django.po,sha256=auZBoKKKCHZbbh0PaUr9YKiWB1TEYZoj4bE7efAonV8,1077 +django/contrib/sites/locale/tr/LC_MESSAGES/django.mo,sha256=ryf01jcvvBMGPKkdViieDuor-Lr2KRXZeFF1gPupCOA,758 +django/contrib/sites/locale/tr/LC_MESSAGES/django.po,sha256=L9tsnwxw1BEJD-Nm3m1RAS7ekgdmyC0ETs_mr7tQw1E,1043 +django/contrib/sites/locale/tt/LC_MESSAGES/django.mo,sha256=gmmjXeEQUlBpfDmouhxE-qpEtv-iWdQSobYL5MWprZc,706 +django/contrib/sites/locale/tt/LC_MESSAGES/django.po,sha256=yj49TjwcZ4YrGqnJrKh3neKydlTgwYduto9KsmxI_eI,930 +django/contrib/sites/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/sites/locale/udm/LC_MESSAGES/django.po,sha256=vrLZ0XJF63CO3IucbQpd12lxuoM9S8tTUv6cpu3g81c,767 +django/contrib/sites/locale/uk/LC_MESSAGES/django.mo,sha256=H4806mPqOoHJFm549F7drzsfkvAXWKmn1w_WVwQx9rk,960 +django/contrib/sites/locale/uk/LC_MESSAGES/django.po,sha256=jmJKTuGLhfP4rg8M_d86XR4X8qYB-JAtEf6jRKuzi3w,1187 +django/contrib/sites/locale/ur/LC_MESSAGES/django.mo,sha256=s6QL8AB_Mp9haXS4n1r9b0YhEUECPxUyPrHTMI3agts,654 +django/contrib/sites/locale/ur/LC_MESSAGES/django.po,sha256=R9tv3qtett8CUGackoHrc5XADeygVKAE0Fz8YzK2PZ4,885 +django/contrib/sites/locale/uz/LC_MESSAGES/django.mo,sha256=OsuqnLEDl9gUAwsmM2s1KH7VD74ID-k7JXcjGhjFlEY,799 +django/contrib/sites/locale/uz/LC_MESSAGES/django.po,sha256=RoaOwLDjkqqIJTuxpuY7eMLo42n6FoYAYutCfMaDk4I,935 +django/contrib/sites/locale/vi/LC_MESSAGES/django.mo,sha256=YOaKcdrN1238Zdm81jUkc2cpxjInAbdnhsSqHP_jQsI,762 +django/contrib/sites/locale/vi/LC_MESSAGES/django.po,sha256=AHcqR2p0fdscLvzbJO_a-CzMzaeRL4LOw4HB9K3noVQ,989 +django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=7D9_pDY5lBRpo1kfzIQL-PNvIg-ofCm7cBHE1-JWlMk,779 +django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xI_N00xhV8dWDp4fg5Mmj9ivOBBdHP79T3-JYXPyc5M,946 +django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=0F6Qmh1smIXlOUNDaDwDajyyGecc1azfwh8BhXrpETo,790 +django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po,sha256=ixbXNBNKNfrpI_B0O_zktTfo63sRFMOk1B1uIh4DGGg,1046 +django/contrib/sites/migrations/0001_initial.py,sha256=CkzQ6PgORwSokrpq6Dj6u-WCEtcuSf4Pau6UyiBpSlA,1069 +django/contrib/sites/migrations/0002_alter_domain_unique.py,sha256=HECWqP0R0hp77p_ubI5bI9DqEXIiGOTTszAr4EpgtVE,517 +django/contrib/sites/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/staticfiles/__init__.py,sha256=eGxMURIKxiv-dE7rP1hwNgUhfzUN36-Bc58jCpHgmCE,73 +django/contrib/staticfiles/apps.py,sha256=q0Tfga23RfN9gCRPhopgChqOFqbtGfkc3-VeH1CRClg,413 +django/contrib/staticfiles/checks.py,sha256=rH9A8NIYtEkA_PRYXQJxndm243O6Mz6GwyqWSUe3f24,391 +django/contrib/staticfiles/finders.py,sha256=fPaY6cHU_uTIYUoVk86jYt_SK-sbJzIHIvUDcAk2oV8,10393 +django/contrib/staticfiles/handlers.py,sha256=olMF7__MY5qfHfvGFdlyHLPT15rk6PwTd2zj878Plvw,3147 +django/contrib/staticfiles/storage.py,sha256=tRIDkYla6R2zCrnlHcnGh8y1tRvhoCG914jZsNG96uI,19439 +django/contrib/staticfiles/testing.py,sha256=4X-EtOfXnwkJAyFT8qe4H4sbVTKgM65klLUtY81KHiE,463 +django/contrib/staticfiles/urls.py,sha256=owDM_hdyPeRmxYxZisSMoplwnzWrptI_W8-3K2f7ITA,498 +django/contrib/staticfiles/utils.py,sha256=KLa19JS3KGJxwQXn6EDRhdhOU-l8nzkkaF1SiO4Lmjc,2289 +django/contrib/staticfiles/views.py,sha256=43bHYTHVMWjweU_tqzXpBKEp7EtHru_7rwr2w7U-AZk,1261 +django/contrib/staticfiles/management/commands/collectstatic.py,sha256=8ubjHjuo7M03UbiwGkKFPwfYDbSYbdej9CnP--4utxs,14919 +django/contrib/staticfiles/management/commands/findstatic.py,sha256=R5CN75jGnvsV16MQ23eWake_EBE7NG94ExKL-54NqYQ,1539 +django/contrib/staticfiles/management/commands/runserver.py,sha256=uv-h6a8AOs0c92ILT_3Mu0UTBoCiQzThpUEmR-blj70,1318 +django/contrib/syndication/__init__.py,sha256=b5C6iIdbIOHf5wvcm1QJYsspErH3TyWJnCDYS9NjFY4,73 +django/contrib/syndication/apps.py,sha256=hXquFH_3BL6NNR2cxLU-vHlBJZ3OCjbcl8jkzCNvE64,203 +django/contrib/syndication/views.py,sha256=GAvymnnvekrsklbS6bfEYQqdbrtjgy2fq_t3abgIktY,8663 +django/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/asgi.py,sha256=N2L3GS6F6oL-yD9Tu2otspCi2UhbRQ90LEx3ExOP1m0,386 +django/core/exceptions.py,sha256=12lhXTU_JyYUQFySoyLvJQu0OkYB2saZliAfZLjyR6I,5522 +django/core/paginator.py,sha256=zmvHi_-iJEufFCVaiTvXEg6CQj8Ipf51fWw0a_iiRUs,6325 +django/core/signals.py,sha256=qB8Q1iBrd99qgzO6WgY3GX0oSIAzr9sMH6lsFNzaKOM,256 +django/core/signing.py,sha256=5ABHjzgBzFyGmomEx9R2Y83HA0zhDd0A0B2JYqsnZj4,6676 +django/core/validators.py,sha256=VF6WCIvafGrHUIHp-zGtzf6C5sPTzKK3DGBWijSCSJo,18865 +django/core/wsgi.py,sha256=2sYMSe3IBrENeQT7rys-04CRmf8hW2Q2CjlkBUIyjHk,388 +django/core/cache/__init__.py,sha256=GxbLBzFT3_6rqW-E26u30__BYkqhaCh6pzhM1KykZE8,3694 +django/core/cache/utils.py,sha256=fdSTmMvnVTM7dhwf-qbHRnhLJAV1XIJe_Ut5H-EGKBw,381 +django/core/cache/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/cache/backends/base.py,sha256=2gDQdIC--5PTV5eL6I4O-P_tH4Ahs4_DPOLGRoQMchA,10076 +django/core/cache/backends/db.py,sha256=UuXvIasXpRY1l8QECU8SoTO6DGxL2LaZBE8_Tx9BkEM,10868 +django/core/cache/backends/dummy.py,sha256=zJiIXLVJ9Tucb__RoYQFuZJeSvhpCG7NvpLJgOp8bfk,1116 +django/core/cache/backends/filebased.py,sha256=HPnkeEBji5pQGc02TeSpno2AY9uYbvrUoAmJIlu7Ryg,5419 +django/core/cache/backends/locmem.py,sha256=0nvukuE5UPuuYaGNlTh1xbtxxF9U74yc0jvcCGtaL1g,4095 +django/core/cache/backends/memcached.py,sha256=hW6__rL_RYBkvQVGR07fdQ9yPDdHg-A-_rFz27fKxng,7581 +django/core/checks/__init__.py,sha256=V84NUpItdggGTGW06qO_VhQ7dxzYBPbtsrN1CzLIjB0,936 +django/core/checks/caches.py,sha256=jhyfX_m6TepTYRBa-j3qh1owD1W-3jmceu8b8dIFqVk,415 +django/core/checks/database.py,sha256=IpXyIS-TDTH4p037aG2l0qWnAVFtp8ozJEsXMvaoIu8,261 +django/core/checks/messages.py,sha256=ZbasGH7L_MeIGIwb_nYiO9Z_MXF0-aXO1ru2xFACj6Y,2161 +django/core/checks/model_checks.py,sha256=41QRdKoW1f8A2HtwsrmdhQFqxtGskmHad-lTP8-snh4,8601 +django/core/checks/registry.py,sha256=Nzt4fNaK9PhwHiJ8h2BxQd0MWSEXCH9bfPKEQtNVHwk,3099 +django/core/checks/templates.py,sha256=9_qZn_MWX94i209MVu2uS66NPRgbKWtk_XxetKczyfU,1092 +django/core/checks/translation.py,sha256=3yCrv4xGxxai8a1hJYtmMZU3dYxEe6kzQfn4NehdsNE,1917 +django/core/checks/urls.py,sha256=lA8wbw2WDC-e4ZAr-9ooEWtGvrNyMh1G-MZbojGq9W8,3246 +django/core/checks/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/checks/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/checks/security/base.py,sha256=lqsE8OWrm1oCvREUWEusKCEs0aAdyBTDNthfZrgo5Vk,7404 +django/core/checks/security/csrf.py,sha256=CH09reOHXQEdCMqhlejyh0IsGwDQkFeHRYO25glZTYE,1259 +django/core/checks/security/sessions.py,sha256=vvsxKEwb3qHgnCG0R5KUkfUpMHuZMfxjo9-X-2BTp-4,2558 +django/core/files/__init__.py,sha256=OjalFLvs-vPaTE3vP0eYZWyNwMj9pLJZNgG4AcGn2_Y,60 +django/core/files/base.py,sha256=jsYsE3bNpAgaQcUvTE8m1UTj6HVXkHd4bh-Y38JmF84,4812 +django/core/files/images.py,sha256=jmF29FQ1RHZ1Sio6hNjJ6FYVAiz5JQTkAyqX7qWSAFA,2569 +django/core/files/locks.py,sha256=Y5FN6iaVNeFW4HOK1Q424BPTxBpro9l-lxLsE9rUa3E,3514 +django/core/files/move.py,sha256=_4xGm6hCV05X54VY0AkEjYFaNcN85x3hablD2J9jyS4,2973 +django/core/files/storage.py,sha256=CSbLwvCO3r5dUzLkho5ycjUxhCSxrJBOfZ7EawWxxtg,14481 +django/core/files/temp.py,sha256=yy1ye2buKU2PB884jKmzp8jBGIPbPhCa3nflXulVafQ,2491 +django/core/files/uploadedfile.py,sha256=dzZcC1OWFMK52Wp6jzVGIo-MYbkkhSHOhRR4JZgaoQE,3890 +django/core/files/uploadhandler.py,sha256=b0sc54SjxNcf9FsjO8Er-8F0rfyx-UtSF7uoV-j5S_0,6471 +django/core/files/utils.py,sha256=5Ady6JuzCYb_VAtSwc9Dr-iTmpuMIVuJ3RKck1-sYzk,1752 +django/core/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/handlers/asgi.py,sha256=LkGpAIDF7ESZI3fzga5MCaN3_-DfP7uJNweS0YWrm4c,11326 +django/core/handlers/base.py,sha256=sNM1um7hLmyJjbeAAnmk0vbEPuqIZ1vpAFUhifdc-M0,6523 +django/core/handlers/exception.py,sha256=ewEsuAuHED3sV1G4dYR7G6btKJJaGIz57FbkTRzOtYQ,4773 +django/core/handlers/wsgi.py,sha256=WiBarNAHJmFOB3Z0lALCx7EUQvhSwqVvT3C06m8fR4Y,7489 +django/core/mail/__init__.py,sha256=LKe8MUJ_zF5xTfsYjXzhF3jPiNBnI8RAEJaJdSU80xo,4812 +django/core/mail/message.py,sha256=__AvpkcWoVhYLckmTbCutNJJNX0Th4wWH0F7ZabiGMk,16701 +django/core/mail/utils.py,sha256=us5kx4w4lSev93Jjpv9chldLuxh3dskcQ1yDVS09MgM,506 +django/core/mail/backends/__init__.py,sha256=VJ_9dBWKA48MXBZXVUaTy9NhgfRonapA6UAjVFEPKD8,37 +django/core/mail/backends/base.py,sha256=f9Oeaw1RAiPHmsTdQakeYzEabfOtULz0UvldP4Cydpk,1660 +django/core/mail/backends/console.py,sha256=l1XFESBbk1Ney5bUgjCYVPoSDzjobzIK3GMQyxQX1Qk,1402 +django/core/mail/backends/dummy.py,sha256=sI7tAa3MfG43UHARduttBvEAYYfiLasgF39jzaZPu9E,234 +django/core/mail/backends/filebased.py,sha256=1JVo3xc2aZxDBGnrsTnBwfr7I7DwW5vQ_aj5rH3_mkk,2493 +django/core/mail/backends/locmem.py,sha256=OgTK_4QGhsBdqtDKY6bwYNKw2MXudc0PSF5GNVqS7gk,884 +django/core/mail/backends/smtp.py,sha256=wJ3IsY94ust3PtXDUu-Vf59BuRUZIKb0ivJ7YCocKL0,5262 +django/core/management/__init__.py,sha256=KmoFVBLFcqAHmgalDTbx1mu5wB9CSnL7QUDD7717Pu0,16498 +django/core/management/base.py,sha256=GjSBfvsZ_7zvQkHn4UjbU-Z7yqecbU7eNDWr-RYMQyc,21420 +django/core/management/color.py,sha256=3m8gYaiYGpthRU2PFPkuKxZFvfk3-A8pRj4Lq7ejHTw,1817 +django/core/management/sql.py,sha256=DxVxGFhFZ_aDMn3mwnbvX5WEU9syOIL-R235CLatfw4,1893 +django/core/management/templates.py,sha256=h-ml23k5R8qLpBSp4wrEoMLTQDTLKFpCuzmXXuri9Ko,13695 +django/core/management/utils.py,sha256=k_YvRKOkaVDUjrRWkZe3MDGg6kB3iaCFymJDs30pJ_A,4873 +django/core/management/commands/check.py,sha256=z7K7s5QtpMKT84mbwVPH0c_qSvGgoa2bgbSaFEeoOAc,2248 +django/core/management/commands/compilemessages.py,sha256=2gmuGyXYCgpPhOV3TJxSj2PxtSvgrqJoJF-bUSoUQFQ,6223 +django/core/management/commands/createcachetable.py,sha256=xRU5-icXi05yXI1fqDDAYQwlskgmWDBnXFWJoouZkBw,4322 +django/core/management/commands/dbshell.py,sha256=ZfbM6Wewc07gzU6kS4pq5_WSEVyE9_8QhGZkAJhrY2I,1207 +django/core/management/commands/diffsettings.py,sha256=5EnX2aERD8OpKOzvvvBAQWs3mfOwhmdBKbPF6yvImcw,3373 +django/core/management/commands/dumpdata.py,sha256=FsVznOujgasqHIukYlRe5JqIlilMFfOHHOqp92xRpyY,8426 +django/core/management/commands/flush.py,sha256=IYUA8yXZs68f8zNYeSIA_VFsVfuTBB-p-2Fgdpd1lI0,3557 +django/core/management/commands/inspectdb.py,sha256=fnL0k3j51kB4TeVHRcpqwwtZwLGnehjMYQWFlTpppd0,13741 +django/core/management/commands/loaddata.py,sha256=yt_WV_pSfL8-D5_De9Iy6QmmWiHzZtIakY1eP9FQwkI,14505 +django/core/management/commands/makemessages.py,sha256=IvDVpOIAYRVtY1DQEhDom-pPsH4aDALN8X6EOguT5h8,26271 +django/core/management/commands/makemigrations.py,sha256=D2VSvcE4UYQrDjrEHvSXp1UlraZ_9hnqvMsBfkZ0QjM,14533 +django/core/management/commands/migrate.py,sha256=0QdKleUN_PbK8WNFcayxZckQb8CxgfKuRA3Bl94b3ws,16364 +django/core/management/commands/runserver.py,sha256=YwuHq5mIkznih-IsgSCRsQAqod7wMVCzoyXpwB_hO5Q,6278 +django/core/management/commands/sendtestemail.py,sha256=LsiP5Xg4AWLtc0vS0JinaaAAKjBbLUnfCq0pa0r4FFw,1456 +django/core/management/commands/shell.py,sha256=tW6wSIq_TxGreSNBEnB1ZAqKAG_i6xSnOYAymeqIOsk,4029 +django/core/management/commands/showmigrations.py,sha256=EYtkzVgj_utUogsQ_y7qoCpMQvAXY1u4KchtcVdH7hU,5855 +django/core/management/commands/sqlflush.py,sha256=mGOZHbMYSVkQRVJOPAmR5ZW9qZRAvcIC3rpmT4yLl7Y,946 +django/core/management/commands/sqlmigrate.py,sha256=2fOpmvZVGul_Zv3eM2BF2Cy9nw6NfvfcEPg1V5DkB-M,3120 +django/core/management/commands/sqlsequencereset.py,sha256=whux0yEJxQDbZ-6B_PYOnAVkcrwLUZOrca0ZFynh97w,982 +django/core/management/commands/squashmigrations.py,sha256=V5elYLfX2AW156eCupw4c54_QaluV5zv5B3AT41z4hk,9741 +django/core/management/commands/startapp.py,sha256=rvXApmLdP3gBinKaOMJtT1g3YrgVTlHteqNqFioNu8Y,503 +django/core/management/commands/startproject.py,sha256=ygP95ZEldotgEVmxDYBPUyAedNQTTwJulKLinGUxZtg,688 +django/core/management/commands/test.py,sha256=MZ8KXfCDUuq-ynHxURrHk5aJOmGg0Ue7bZw1G0v9nWg,2050 +django/core/management/commands/testserver.py,sha256=Veo-U69NUEyFuM_O9tG7GjRZ3aR2vWzcaVWahAIdS_M,2117 +django/core/serializers/__init__.py,sha256=TEJTEGHsW5vUAJWqQz7FdlD_NEGNaGlBN4zJAe21yeo,8073 +django/core/serializers/base.py,sha256=f3yf43AI_uEUR__cMCG-x9EwnBadwdDXjJetuGvL-Rc,11613 +django/core/serializers/json.py,sha256=sKfzArRjK2zNaRUxYRBbUWmoQfDUKzyKdIKu1gBeKnc,3352 +django/core/serializers/python.py,sha256=KcsSNcCYbOo5qb1sNRMsexIpig_q8f0h4asOLt8qnDY,5966 +django/core/serializers/pyyaml.py,sha256=W-by-ktxresr9FdBup5kYTmQuVUhgRybAHHohhiw_k0,2861 +django/core/serializers/xml_serializer.py,sha256=qZ5oDy_AV16iY7f1UgqcJ7ga8woA1lb9SVc9sr06bFU,16643 +django/core/servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/servers/basehttp.py,sha256=rOURDedcu6Dxj_r6t9r4N6Kr7Sahu710sVXrq97Nyg8,7891 +django/db/__init__.py,sha256=T8s-HTPRYj1ezRtUqzam8wQup01EhaQQXHQYVkAH8jY,1900 +django/db/transaction.py,sha256=3sIxxLIk-wvXuGNFGYeoxutgAmvftcJPRfE1uAAgg0M,11535 +django/db/utils.py,sha256=OYbTZWEAb7tzEkG7IyWZMlVoBLpJg2GIjZ1FlWWoBPs,10214 +django/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/ddl_references.py,sha256=PuqiuORs9U0lCNOxzCesTwueQ8Ij7oeMrIk2aMgLzUo,6506 +django/db/backends/signals.py,sha256=rAFB5bUdnk5jckIT4PwVwEuE6aj4dbtasRHcRnIyH6Y,95 +django/db/backends/utils.py,sha256=-RRRkE6BEM1iKUY4zvjZ8itswfHhxaxHVd07au9cDr0,8562 +django/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/base/base.py,sha256=zc6vaHlBipbfWTyrbCWqrn3MwUVR7no3CfSwIUdQVfM,24549 +django/db/backends/base/client.py,sha256=r6dcRhY5tPx9lzDZhbcDC1z9LDdXxRe_vtkgYQSmuEI,513 +django/db/backends/base/creation.py,sha256=6_8IIKdYuI3wI-zUtBbTHUa6pwOJyYivjV72VEiew28,11919 +django/db/backends/base/features.py,sha256=qYBsET5Zlgx9-6oIso3gUdkhrshv86NMBhhMqZleM8o,11981 +django/db/backends/base/introspection.py,sha256=dV5cqBiYHEVhTvbHPr5m46-qI680ISeJ1XwDPKP8Gc0,7004 +django/db/backends/base/operations.py,sha256=LmYSKeJ16X49bb3J4E9-Yo6lBzLUTfYHeAKRlaC--8s,26357 +django/db/backends/base/schema.py,sha256=UoeUw5g-wi1m5bN7mOHzxRyQooBVh2qIlmYsjikxtP4,55703 +django/db/backends/base/validation.py,sha256=4zIAVsePyETiRtK7CAw78y4ZiCPISs0Pv17mFWy2Tr4,1040 +django/db/backends/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/dummy/base.py,sha256=ZsB_hKOW9tuaNbZt64fGY6tk0_FqMiF72rp8TE3NrDA,2244 +django/db/backends/dummy/features.py,sha256=Pg8_jND-aoJomTaBBXU3hJEjzpB-rLs6VwpoKkOYuQg,181 +django/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/mysql/base.py,sha256=Ics5GxlYSl26VIoS_Ax9kI4KBp4iyh11fHwaUtmDViY,14433 +django/db/backends/mysql/client.py,sha256=ZZ-Uxhb08nIL0g-JZkjzCHbzvM6WAFpLVptL7H65SPc,1839 +django/db/backends/mysql/compiler.py,sha256=J30bWgLviaWfUktegN7YnXmp6CaEZ6u8VeuiN4DUk4E,704 +django/db/backends/mysql/creation.py,sha256=NIB74lmOhIsA23EFgjxLKIsFgWC1JpmBWNtUIEt84-s,3040 +django/db/backends/mysql/features.py,sha256=alcyfKCMUI4QkHUbp2yDuOJYTdnaV0hznSibDOe--G0,5360 +django/db/backends/mysql/introspection.py,sha256=KnohhS-hiaC8917UufX3blmZwSmj7q64ijZfZ4aYmC4,11547 +django/db/backends/mysql/operations.py,sha256=GBr0PmAy8apQayXdvRoz6A3aIg0PEa26Bsdz-sCdz-Q,13325 +django/db/backends/mysql/schema.py,sha256=2Fvo_CllcfFgjijVblEzZ-vqM1RKaba-407Mu7zh7Fw,6242 +django/db/backends/mysql/validation.py,sha256=DodDKUB22T5h24Sxo9o8sg0slb4BGV3iRv4F0jtowi4,2594 +django/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/oracle/base.py,sha256=KeKGrCzoxzf46pxQ4rUIRuxUmgJUV6CTq64mQVhPvgs,22833 +django/db/backends/oracle/client.py,sha256=ZJX5NLeWh4SG1TVh7Nnl6VNS4TC61QY1IOJT9n5zo3I,499 +django/db/backends/oracle/creation.py,sha256=FgNUj3kMaK5m3h_Wjcw7pEAMqxM6tt87H_dt82OgmME,19643 +django/db/backends/oracle/features.py,sha256=6o3L_-dp5z_d7uJ0HybqFaT-cgtEJnSOCqYDxO8mx90,2286 +django/db/backends/oracle/functions.py,sha256=PHMO9cApG1EhZPD4E0Vd6dzPmE_Dzouf9GIWbF1X7kc,768 +django/db/backends/oracle/introspection.py,sha256=nCoxS9qH5kRtmIlghZvvpuk9SNWQYP_Q7Yb_8wzMwYs,12071 +django/db/backends/oracle/operations.py,sha256=7BvuKLoOA65dOy1oaCpyYwTxLxbARhW0sW8VGbNy0Z8,27173 +django/db/backends/oracle/schema.py,sha256=hIYcpWTE5XvFpuR7cj0LOnGjt1FQklcOzyZkw2yJZyU,7809 +django/db/backends/oracle/utils.py,sha256=Bte2c3aLVCCd08UOByBhqjE3boX5VBjQshcroZVmOto,2155 +django/db/backends/oracle/validation.py,sha256=O1Vx5ljfyEVo9W-o4OVsu_OTfZ5V5P9HX3kNMtdE75o,860 +django/db/backends/postgresql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/postgresql/base.py,sha256=ZZfeXW2DRqNbhBrpI35kXy9bTSK98FJToaJS99F6xCc,12734 +django/db/backends/postgresql/client.py,sha256=k5pabFPAsuLrR8-zP17OH_tW9IqH-toCb3FJL-6IccE,1789 +django/db/backends/postgresql/creation.py,sha256=a10p-xMnIVyy1y0vAFk9M6CxLqUihcdsXNTAJGdRevM,3357 +django/db/backends/postgresql/features.py,sha256=1-adVVT4jxT0eQ5AXtnUfqpv1GzHvcHPZHZ8D1msevc,2527 +django/db/backends/postgresql/introspection.py,sha256=xYT4A0U0a7GIQ1H7OLc3HX5h5_Pa-IcRYOxE4Byv3EQ,9872 +django/db/backends/postgresql/operations.py,sha256=ljmAVMXrfqYGYkSVMVQuGNv29d7STJ8L-1Y5ZbPsbi0,12490 +django/db/backends/postgresql/schema.py,sha256=yUPWv-ZPepqnyCIufZASFu5G2A20p3FYiZIHCABpHGE,9039 +django/db/backends/postgresql/utils.py,sha256=3GXuTEoyPNqfUcXOCVnC-gw7xdAV17ZvZYb4Qu6f7Mc,176 +django/db/backends/sqlite3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/sqlite3/base.py,sha256=P4qOuAlQWzTghOFeox7kHlymFecBgEZ-DnLuMqAp5Is,24470 +django/db/backends/sqlite3/client.py,sha256=mt_18NRE7kWH4UEWc8XKF8ctwI7yRLWdHAeQt1L2Jtc,316 +django/db/backends/sqlite3/creation.py,sha256=iepxncH5Ln-OPtigZOcnbTiK9lLVsoASIOC2IWuzhAs,4224 +django/db/backends/sqlite3/features.py,sha256=aQTdrRw4Se0DqXLO9s-mcS9ZVFH6FeOSFlaj8lepvbw,1977 +django/db/backends/sqlite3/introspection.py,sha256=dhVpupKZ-nuki5kflZqExPXKPNPAro7m_bwms3KMrT0,18345 +django/db/backends/sqlite3/operations.py,sha256=tnIem-Rk4eygCuCbwCl74fBZgBearT0S-CxC-casKck,13988 +django/db/backends/sqlite3/schema.py,sha256=_oy_LjbsqimcG32HC_ElRpRMxlYUAl0P_N6RCCDqpgg,19648 +django/db/migrations/__init__.py,sha256=Oa4RvfEa6hITCqdcqwXYC66YknFKyluuy7vtNbSc-L4,97 +django/db/migrations/autodetector.py,sha256=qXcU9TKPUm-N3ebY0Ksm5r1UdwbbG7hQH079MeUN1Gc,64347 +django/db/migrations/exceptions.py,sha256=cfa6q9WVRsTmwIucNjq8W2MbvSA-CNChenY3vFie4xg,1204 +django/db/migrations/executor.py,sha256=fU9ZzFDkiqMVHR_j4fnzFoGW7FawHr_QJA_kZitYWQk,17797 +django/db/migrations/graph.py,sha256=qho3dqkbm8QyaRebGQUBQWFv1TQ-70AS8aWtOmw3Ius,12841 +django/db/migrations/loader.py,sha256=Tz-F6S7ILrf60B8oXKf1L0lUt_2qdznC6lrpkhXMPkk,15174 +django/db/migrations/migration.py,sha256=qK9faUXqRpPrZ8vnQ8t3beBLVHzqX5QgFyobiWNRkqI,8242 +django/db/migrations/optimizer.py,sha256=_SmLipGoJ4naKcFYPfMVbzWDV9dsMKIpU4Rz2IN74Mk,3283 +django/db/migrations/questioner.py,sha256=9wje3vaocR4jMKTLLVRwXECMD7FZSdJbh-o4--SKvA0,9918 +django/db/migrations/recorder.py,sha256=VhlDhstrPa82_lC9nFiyU679tTF5NRz2L8Iz3kcoMLw,3425 +django/db/migrations/serializer.py,sha256=ZrXlnAP1DI-1Shvjb2Pq7LezLfrCDmkhI12kwmK_b-4,12350 +django/db/migrations/state.py,sha256=CgS0uiG0shZ4Ud4WaGMjSdwSvT8Y0QW2azp0hUc4dMQ,25613 +django/db/migrations/utils.py,sha256=ApIIVhNrnnZ79yzrbPeREFsk5kxLCuOd1rwh3dDaNLI,388 +django/db/migrations/writer.py,sha256=6QsSQ6jOSPBjMduPWEsLzibi4_Cr3Rd8wY7TdCWiNRU,11293 +django/db/migrations/operations/__init__.py,sha256=48VoWNmXeVdSqnMql-wdWVGmv8BWpfFLz2pH3I5RDCY,778 +django/db/migrations/operations/base.py,sha256=EwaG6KgnhjlvIrFXlFF-WBUaQn8yXzfpW0VEnJY38AQ,5231 +django/db/migrations/operations/fields.py,sha256=y83OFWuTrFgYLxAy73zNcJY7VEXJjkJBkz5LUHEWym0,16515 +django/db/migrations/operations/models.py,sha256=wu-GRpHz4gvg_6NFMJx4rKgeJmG0qoVMm2uhDCLCd18,33920 +django/db/migrations/operations/special.py,sha256=6vO2RRgaUPnxEjbkTX3QwAN-LaadZFHYpFHouAaMmig,7792 +django/db/migrations/operations/utils.py,sha256=-dpX2eIJYTxeyjWedXQa8HBsNaDw_YGw6jRd5zVEP6o,2258 +django/db/models/__init__.py,sha256=xQ_nMDwza5stPP1DSds4LYMOfbVXJYOZV3Gs92nr65k,2339 +django/db/models/aggregates.py,sha256=c6JnF1FfI1-h90zX0-Ts2lpDwsl5raNoOC9SF_LfvkE,5933 +django/db/models/base.py,sha256=2Koor5POA7TOX_nhBAActiVogA3UEn83ibfqw6DANsg,78448 +django/db/models/constants.py,sha256=BstFLrG_rKBHL-IZ7iqXY9uSKLL6IOKOjheXBetCan0,117 +django/db/models/constraints.py,sha256=JD66ugB1U957CYcrGLxKMq73XlUTC1Yy9NaSZRTZAdY,4739 +django/db/models/deletion.py,sha256=VPf-nHISxku_hbsQqSEM_r877FqLq6RT5SG4uNNaDkE,15262 +django/db/models/enums.py,sha256=ayZ-pCLgkBe8y13Y1-aYW6-EZL2BktTjXdHN9GuYbUw,2693 +django/db/models/expressions.py,sha256=AeiFsFfG6UH9QmJUM6lGgwVZOwy0ycfpQDRF-AshCE4,48700 +django/db/models/indexes.py,sha256=w3FAaGyAz8WycfniSIyN6o2nX1FVABSiun8HTFINHSU,5189 +django/db/models/lookups.py,sha256=k14FrNzE3LlGwTrX1l9KC0k7SkLlpn0V3ooGcw_YjOg,19756 +django/db/models/manager.py,sha256=UCeTO9N4jXuY_BbyDxRdeDROW2y0gxSDSjZ3bb-q1mY,6767 +django/db/models/options.py,sha256=1NgjFE0oJpNlnaig63PpKVr6bj6rbdLbAkG0BLtywfI,35396 +django/db/models/query.py,sha256=RyZ7T3qrkLaaJB8CIIfZ2Vx592PuwptSKunMRq03Dd0,81163 +django/db/models/query_utils.py,sha256=QqJ5YyNecoGAum9OQ8K5GawDxzh_Xcg5NQiJQpKwDeo,12203 +django/db/models/signals.py,sha256=KWJCYuMFWrZPsLDPiM2TfkzC_Hq8gbEYWkvw-qXAA9w,2160 +django/db/models/utils.py,sha256=1mQ_zPVpHleO_BFdEU714a09NMvSmR65-T3P31hhMEk,852 +django/db/models/fields/__init__.py,sha256=fLaB5s0TiZTejPJKwT_IEbnV22wYZdW-wzr66pyzMLo,87458 +django/db/models/fields/files.py,sha256=xjz5_8zzDotkCdv1LD7H94NPFIdafS3H-sNnzkIwr0w,17786 +django/db/models/fields/mixins.py,sha256=5Ckq4d1cZODHfViLGcUyuJwvVPyV-Kfd2aZJzY4ckxc,816 +django/db/models/fields/proxy.py,sha256=fcJ2d1ZiY0sEouSq9SV7W1fm5eE3C_nMGky3Ma347dk,515 +django/db/models/fields/related.py,sha256=kZqgoyCnufsMBYnxD5Q4tqjv9tqxga9xh8qzLtv6pT0,68234 +django/db/models/fields/related_descriptors.py,sha256=X-1J_09q47xF2q-jZgkQOJzy1IXcRLnG-RLlrKKd-9s,53790 +django/db/models/fields/related_lookups.py,sha256=NaImhBkgA6h2mf07hQ422Ze-RcqJZXSYEvzZ6TghzVA,7040 +django/db/models/fields/reverse_related.py,sha256=XZEOAsZmnqhap-q99hZCHftivqVHpHb7l_dfbJ9pGNU,10135 +django/db/models/functions/__init__.py,sha256=wBv81fEdB4SH6mYWBzMxv5L2l12EMswy8j3ts7J4S1Q,2030 +django/db/models/functions/comparison.py,sha256=ouR8XAAGOAsHkcUwIh6RrScNcCry8_6SR_9hO3FCLoM,4831 +django/db/models/functions/datetime.py,sha256=x9PyWWCuY6YV2gcfHPViTdcvh7VmTztV5HZ4jRArCj8,11403 +django/db/models/functions/math.py,sha256=R_rvGZxqR9GEhuAUUXt7oJ2bcglOyCH6tPzlOg-7DNo,4629 +django/db/models/functions/mixins.py,sha256=LsnLHHFrIv5_hZEBN7iTQMFua_gQlG4nDORB8DnVeSw,2078 +django/db/models/functions/text.py,sha256=1MvnEv1j3tWFquD6xuYUb4HAC0r7inOwmYZT8sl3q9s,10911 +django/db/models/functions/window.py,sha256=yL07Blhu1WudxHMbIfRA2bBIXuwZec8wLPbW6N5eOyc,2761 +django/db/models/sql/__init__.py,sha256=zuetuU9AGj1MdjWYMtzErxZH2VlY9dGp-RQGdCXd6uM,297 +django/db/models/sql/compiler.py,sha256=vgNoUjfkS6EiCN5AMlfTAk2zpmsGjY2NyVnmnX9Ytxk,72092 +django/db/models/sql/constants.py,sha256=gMg0n_j0fsfmqV5XFiywZXgSvuPq_WPV50ZSFlWYaCE,591 +django/db/models/sql/datastructures.py,sha256=1IXmOSSaqnu_d3Ab2iyp97nrVw0l_wpFLEosaAfLiHM,6701 +django/db/models/sql/query.py,sha256=4IrUBq9-01qciObtRM9I-sCqedNFT2UdOD91rVU02FE,105255 +django/db/models/sql/subqueries.py,sha256=mGv0szYV_L3MQ62d_sABqpUOsQU3vQZgxCUCkVov4M4,7280 +django/db/models/sql/where.py,sha256=_IaQ8UWjHCNvH1quPawJj8e_goAKrzDX7ZhXSt46tvk,8697 +django/dispatch/__init__.py,sha256=qP203zNwjaolUFnXLNZHnuBn7HNzyw9_JkODECRKZbc,286 +django/dispatch/dispatcher.py,sha256=sos1Caqi0aUeddtC_kQ6vxQ3Sau2j02Yej1OHVxJSOQ,10707 +django/dispatch/license.txt,sha256=VABMS2BpZOvBY68W0EYHwW5Cj4p4oCb-y1P3DAn0qU8,1743 +django/forms/__init__.py,sha256=S6ckOMmvUX-vVST6AC-M8BzsfVQwuEUAdHWabMN-OGI,368 +django/forms/boundfield.py,sha256=j6w9Psskmbj6xYGJg9nRmwaHESD_RQTU7VBYTB-r5Zk,10103 +django/forms/fields.py,sha256=l_rAxmSD5st16sl3xgWA50lWew6y1WVOCaYDP8fK9WU,44718 +django/forms/forms.py,sha256=SdiytxGEdQ3bkTwZxZg6C3wleonX81tVgaIb1Or0Zk8,20103 +django/forms/formsets.py,sha256=vZMfv8qvppE5DDdN9l2-hEroAvucLrQiW5b7DkoaZfM,18577 +django/forms/models.py,sha256=GYvdEd3-XgXlPzjQUJVs5tXy94kCIrRiJOw4Y9eEd5o,56336 +django/forms/renderers.py,sha256=URxnFGbWNa5Mco2LNxQDrWWHmsXh4WY1QPLJ9rlTDpk,1975 +django/forms/utils.py,sha256=CWxwP1lYJzjcTBiooFr6wtBxCdl0Lm1bV9aV7SetBfE,5660 +django/forms/widgets.py,sha256=Ctnm7DFzEDhNICWhLje4XZnBcljX4Y5AH8RoY-hL1zc,36945 +django/forms/jinja2/django/forms/widgets/attrs.html,sha256=_J2P-AOpHFhIwaqCNcrJFxEY4s-KPdy0Wcq0KlarIG0,172 +django/forms/jinja2/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/jinja2/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/jinja2/django/forms/widgets/clearable_file_input.html,sha256=f3TWFr6fXxgVfpKPM2QQgQzPXm9RsPtDs6lQfhnaUVU,461 +django/forms/jinja2/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/input.html,sha256=u12fZde-ugkEAAkPAtAfSxwGQmYBkXkssWohOUs-xoE,172 +django/forms/jinja2/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219 +django/forms/jinja2/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54 +django/forms/jinja2/django/forms/widgets/multiple_input.html,sha256=O9W9tLA_gdxNqN_No2Tesd8_2GhOTyKEkCOnp_rUBn4,431 +django/forms/jinja2/django/forms/widgets/multiwidget.html,sha256=pr-MxRyucRxn_HvBGZvbc3JbFyrAolbroxvA4zmPz2Y,86 +django/forms/jinja2/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/jinja2/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/jinja2/django/forms/widgets/select.html,sha256=ESyDzbLTtM7-OG34EuSUnvxCtyP5IrQsZh0jGFrIdEA,365 +django/forms/jinja2/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/jinja2/django/forms/widgets/select_option.html,sha256=tNa1D3G8iy2ZcWeKyI-mijjDjRmMaqSo-jnAR_VS3Qc,110 +django/forms/jinja2/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/jinja2/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/jinja2/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145 +django/forms/jinja2/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/attrs.html,sha256=9ylIPv5EZg-rx2qPLgobRkw6Zq_WJSM8kt106PpSYa0,172 +django/forms/templates/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/templates/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/templates/django/forms/widgets/clearable_file_input.html,sha256=f3TWFr6fXxgVfpKPM2QQgQzPXm9RsPtDs6lQfhnaUVU,461 +django/forms/templates/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/input.html,sha256=dwzzrLocGLZQIaGe-_X8k7z87jV6AFtn28LilnUnUH0,189 +django/forms/templates/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219 +django/forms/templates/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54 +django/forms/templates/django/forms/widgets/multiple_input.html,sha256=HwEaZLEiZYdPJ6brC9QWRGaIKzcX5UA2Tj5Rsq_NvOk,462 +django/forms/templates/django/forms/widgets/multiwidget.html,sha256=slk4AgCdXnVmFvavhjVcsza0quTOP2LG50D8wna0dw0,117 +django/forms/templates/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/templates/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/templates/django/forms/widgets/select.html,sha256=7U0RzjeESG87ENzQjPRUF71gvKvGjVVvXcpsW2-BTR4,384 +django/forms/templates/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/templates/django/forms/widgets/select_option.html,sha256=N_psd0JYCqNhx2eh2oyvkF2KU2dv7M9mtMw_4BLYq8A,127 +django/forms/templates/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/templates/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/templates/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145 +django/forms/templates/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/http/__init__.py,sha256=5JImoB1BZNuZBOt5qyDX7t51McYbkDLX45eKmNN_Fes,1010 +django/http/cookie.py,sha256=Zpg6OEW9-dGvr5ByQhlHyGjLJzvNNrnGL1WzolnsM6U,818 +django/http/multipartparser.py,sha256=Cq1gOT-dmx3uCSMu7YOYYl16kTYtA4XYm7GDwOsAy9Q,25008 +django/http/request.py,sha256=NcyxReNVSJKZRIGwPmcu1MaDMf1P46lThAjLEmNzCf8,22365 +django/http/response.py,sha256=jxU5azH0Y29VIQVkDhnq6C9GfuCmDxY4MJ_FHzRKQIU,20915 +django/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/middleware/cache.py,sha256=O2o_oy_WqqOdIT8ncgTOFv--WQDZxslVPgKeV0ZGWc8,7721 +django/middleware/clickjacking.py,sha256=0AZde0p2OTy_h67GZkit60BGJ2mJ79XFoxcmWrtHF6U,1721 +django/middleware/common.py,sha256=mdEcByHwNg4F68xvf2OBsejkE2uHNo4AIUO602iX5o4,7362 +django/middleware/csrf.py,sha256=glvNsd6BW0mW0reA_jB0-D6TfUD6OPMIYgulE4YnoT0,13675 +django/middleware/gzip.py,sha256=oq6J0L_1NLZuvV1F1MxuFPzdUS71301py0GWHBAmk2k,2060 +django/middleware/http.py,sha256=JiRGXvtfmXxYTomy7gde5pcG45GX7R0qpXiI5Fk06dE,1624 +django/middleware/locale.py,sha256=MLUCXirb6za_o2T4mKokGvow8Z-jTrUhfGBJ82y0Mz4,3017 +django/middleware/security.py,sha256=a-pgT7qhyWlws9EdIn-W_tPWYHBtH11XHX43Ls6bCNc,2379 +django/template/__init__.py,sha256=t5onT26DOSny4Qi7iz_a82M5WJydvPpkb6hFjE010CE,1871 +django/template/base.py,sha256=5HmvjU4dtMWqRq8DhTjo44F-QmwyWHUJ_cpV8ezO4-E,38133 +django/template/context.py,sha256=FkH-98jR88v26qIKKEJA8ZQxXIFliZZsfX-v7CNQ6AY,8974 +django/template/context_processors.py,sha256=drfyVYugSe1lg9VIbsC3oRLUG64Gw94Oq77FLfk2ZNI,2407 +django/template/defaultfilters.py,sha256=QXtq4poRMejyE3kFHlRyiTw1_9Ve88AgorZAxVVhii4,25956 +django/template/defaulttags.py,sha256=6O2VusUshB-vsqR3zFiHyZ1mSv2MSDc9OjJx3ijx_XY,49592 +django/template/engine.py,sha256=XHOcRxfpcpTvNpU1GWfsNzCz3WfphVa1pPPObFuspyI,6882 +django/template/exceptions.py,sha256=awd7B80xhFB574Lt2IdIyHCpD6KGGyuKGkIoalr9deo,1340 +django/template/library.py,sha256=iwVGNtjlJHlngzhi-w587jGGeSEkLDrOmNDPDd7C7eg,12836 +django/template/loader.py,sha256=-t5cTnWJrxtS2vyg9cguz4rXxlTBni4XoJUuqJNglPI,2054 +django/template/loader_tags.py,sha256=beGFoV5luVMZj6zaUaY1lUFv5gWzQqmDybHsnTOG8Jo,12306 +django/template/response.py,sha256=Q_BrPN7acOZg8bWhDDxKteL17X2FVqPDlk8_J6TNmRk,5399 +django/template/smartif.py,sha256=QBvsTtD4YiyGoU4hXrW8vqR0CBAFOZGuDoRP3aGEgOs,6408 +django/template/utils.py,sha256=Mv0bGd3nF3kxa_ZMnLyZE8BMpJYmCFMRvgGbKRHrDUI,3565 +django/template/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/template/backends/base.py,sha256=P8dvOmQppJ8YMZ5_XyOJGDzspbQMNGV82GxL5IwrMFM,2751 +django/template/backends/django.py,sha256=_w350tmHAMSLOw-b2o9rR0Wn6YX3QMkpHkkpvbo_EwI,4186 +django/template/backends/dummy.py,sha256=Nl313SxX1rxE1F-5AHCljgejrYpYCx-QXJpNUkQWXR4,1767 +django/template/backends/jinja2.py,sha256=bx8DcA2PqqzDmcgegY11pm5EhmD_gWTTLauGo91imL4,3504 +django/template/backends/utils.py,sha256=NORFWk_tz1IsX6WNZjP7Iz5Az6X8pUP0dmBfNC4vodk,418 +django/template/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/template/loaders/app_directories.py,sha256=w3a84EAXWX12w7F1CyxIQ_lFiTwxFS7xf3rCEcnUqyc,313 +django/template/loaders/base.py,sha256=kvjmN-UHxdd6Pwgkexw7IHL0YeJQgXXbuz_tdj5ciKc,1558 +django/template/loaders/cached.py,sha256=VNhREXUV34NeSJXwXvQZwvC7aM0hqkZVLEAST-Nt-cw,3505 +django/template/loaders/filesystem.py,sha256=OWTnIwWbVj-Td5VrOkKw1G_6pIuz1Vnh5CedZN5glyU,1507 +django/template/loaders/locmem.py,sha256=8cBYI8wPOOnIx_3v7fC5jezA_6pJLqgqObeLwHXQJKo,673 +django/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/templatetags/cache.py,sha256=otY3c4Ti9YLxFfOuIX5TZ7w12aGDPkyGfQNsaPVZ_M0,3401 +django/templatetags/i18n.py,sha256=59uC1SiRTPW0R3E5ML_svVdhRLHj8WYxVxYOmwrg1Ro,18830 +django/templatetags/l10n.py,sha256=I6jRSBLvL34H-_rwGuHfU22VBhO2IHNRue78KWb8pTc,1723 +django/templatetags/static.py,sha256=om3cu4NVaH4MVUq-XPLxPVNlLUCxTbbp0qAVVSaClj4,4502 +django/templatetags/tz.py,sha256=HFzJsvh-x9yjoju4kiIpKAI0U_4crtoftqiT8llM_u8,5400 +django/test/__init__.py,sha256=5FrmvgBrxzZo5UVLW9HZ1iHBMMhcnXcNL5Y2xnaqVPA,682 +django/test/client.py,sha256=Ld6Pq4ZZRHE1PXYRKBfvtVUcFF4Ct6XCtaTKEgIH8Hs,28200 +django/test/html.py,sha256=PnOki8OYODP5wSHl4gpt6YD_jYagz2l8iyNmQjmLilc,7623 +django/test/runner.py,sha256=hsGYPIcR8wRAriY3rJzrnWSSieqzYMBK022Kaytf1dM,28317 +django/test/selenium.py,sha256=G14o6JMIZnrESCDZ2ab9BX1h3FOuOPpm164ufOzy7uY,5104 +django/test/signals.py,sha256=eek1lWZpOmHlE6OoMiAApVQoYVWGLAGmFXSdZ3IAvSc,6725 +django/test/testcases.py,sha256=6OIglcO4loIEcZbrXLht43ciW_d28_hTz5ESLM_dlyM,61365 +django/test/utils.py,sha256=TeOxqKPqMy9dwm-UCKTX8eWtOrXSC8GTt1lPtijN7b8,28930 +django/urls/__init__.py,sha256=FdHfNv5NwWEIt1EqEpRY7xJ-i4tD-SCLj0tq3qT6X1E,959 +django/urls/base.py,sha256=YlZAILhjcYGrmpV71tkzBH6WObTJRNT6kOV6Poyj2JA,5596 +django/urls/conf.py,sha256=8Xug9NhJXDEysRXWrY2iHf0snfJMUmQkYZAomPltWMY,2946 +django/urls/converters.py,sha256=_eluhZBczkfMwCZJEQtM7s7KJQYbwoO4lygFQvtWSHA,1216 +django/urls/exceptions.py,sha256=alLNjkORtAxneC00g4qnRpG5wouOHvJvGbymdpKtG_I,115 +django/urls/resolvers.py,sha256=9Fg-ZWj-XTBrbQrDJnZpLWezSrPDN6gvIaDer8riH_I,27311 +django/urls/utils.py,sha256=VHDcmggNRHSbPJAql5KJhe7wX4pSjrKb64Fu-p14D9Q,2152 +django/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/utils/_os.py,sha256=_C_v7KbojT-CD3fn2yJGFbjCbV5HkJr3MBqZrjjxK-s,2295 +django/utils/archive.py,sha256=rkwfW1x3mZC5gbW6h8O0Ye5cDLTNLd_dvVh70RVlyx4,7418 +django/utils/asyncio.py,sha256=sFRUKbrTnXo5uGRNI9RHOZ1bb0dFFOge5UzT7qwGyQ8,1165 +django/utils/autoreload.py,sha256=K1dbObxBgZnoG9lpR7FYREwSSewmvmLBxmL37rBdza4,22440 +django/utils/baseconv.py,sha256=xYReIqcF2FFD85BqDrl48xo4UijII9D6YyC-FHsUPbw,2989 +django/utils/cache.py,sha256=CryxOjFkbHkv2Ao-ajzVxyMrlkQIohrWqKH-pLEajYs,15447 +django/utils/crypto.py,sha256=o14ZzEyAT939TrxrlGE5C8TwBZSYk-PgV5doEGMSPt8,2152 +django/utils/datastructures.py,sha256=loLZmeX0egRU3KKBuQiMRZU1X9i9YHB_i3Zz2JN4Bfg,10113 +django/utils/dateformat.py,sha256=UP9cpTQGR_1d7SOqDnqCyVxFTh36CHKE6ze4P8XPjEM,11509 +django/utils/dateparse.py,sha256=BudPb8nvV2XvRhGD0EUu4GJnVEHiBWhcRGXvQ21Umn8,4722 +django/utils/dates.py,sha256=hl7plurNHC7tj_9Olb7H7-LCtOhOV71oWg-xx5PBFh4,2021 +django/utils/datetime_safe.py,sha256=9svjsJ9NVgOuSmgoecmBj2OlAk6kbZBlPLnPTxjxyfc,2811 +django/utils/deconstruct.py,sha256=hcO_7qassSI5dTfQ5CPttA8s3f9yaF8UnqKKma3bI6M,1975 +django/utils/decorators.py,sha256=EngNKtk2DFB07lwd7VKF9tQy9tISgZYcH7lK3u38nIo,6433 +django/utils/deprecation.py,sha256=aQE-JZMWB-8ybY_jkpkTetIcofdIMTtoDxnzgk1nSuw,3335 +django/utils/duration.py,sha256=VtDUAQKIPFuv6XkwG6gIjLQYtcs8vgGMcS4OQpSFx-E,1234 +django/utils/encoding.py,sha256=iDDyBYvFlokF0IdaAyK3HPKOuMN-0nLTwe7-S5X7qpo,9331 +django/utils/feedgenerator.py,sha256=rI74OiJ8cWgt9AhA0RnYdKTVi7IXUM6FCLpFUQjDRmc,15109 +django/utils/formats.py,sha256=vuB-IV1PlQH3qWQRtwFG6HqTeZinOc-iOXiZbioMpFs,8973 +django/utils/functional.py,sha256=AGv3-CTUCvZAVFSH0Ylsg8tU8I68X8xJUaAN-R13Cck,13608 +django/utils/hashable.py,sha256=oKA7b4KMSFYou8278uoKN8OhIr1v_4HvqpnFuWX6CcY,541 +django/utils/html.py,sha256=D--lWb0ehnyzzF1P_EVVZs4JvS7aKW-VZSVpVQwNEWY,13126 +django/utils/http.py,sha256=yAIGt4o28-S78keIpuPB-TgWgVUb4ptCf0pL0PsZV0w,16838 +django/utils/inspect.py,sha256=6UgUGkYM4O6tgD2xLf4-_SwccNsYyCj-qm-eV-UuQsU,1789 +django/utils/ipv6.py,sha256=WBkmZXdtbIHgcaWDKm4ElRvzyu_wKLCW2aA18g1RCJo,1350 +django/utils/itercompat.py,sha256=lacIDjczhxbwG4ON_KfG1H6VNPOGOpbRhnVhbedo2CY,184 +django/utils/jslex.py,sha256=jOes0kfZoIIPxPMNWkXMJ6D3x3f95B5cZWKXo38Rhcc,7707 +django/utils/log.py,sha256=CvzubO91RezpZD1T8Nj1xQ4M1rGhPcV2mGe3q4OdPqo,7693 +django/utils/lorem_ipsum.py,sha256=P_BSLsITDP2ZW9EJPy6ciFneib0iz9ezBz2LD7CViRE,4775 +django/utils/module_loading.py,sha256=0aH8A5ceSe90pYMpm04JkiUSSivkVqCtyQduDmKlIJM,3592 +django/utils/numberformat.py,sha256=KRV2-flI-ECAAP1VK7mauTtcMlwAGpbuSdkvIuxwxBU,3455 +django/utils/regex_helper.py,sha256=4aWtTpg-WxCBF3VdjE0z1Q9m-0vEjUs4hBf0wQ2seNk,12225 +django/utils/safestring.py,sha256=izujk6fxzXXJStC_VFccCkcFunz7MIPZROrKa5VVcRU,1778 +django/utils/termcolors.py,sha256=JrysYBjC72oq0WBL6EJ44A8ZEij_S7QsivoRQugxPEk,7362 +django/utils/text.py,sha256=bAvpXctuG-2LgS7O-AQAOCJVhRKWbQiAJcdPZxDp6lY,14001 +django/utils/timesince.py,sha256=QlkajdzXVftZlf9VIF-vlOK9M_UpErK2DH-6cCTJmLQ,3177 +django/utils/timezone.py,sha256=_uyDxnZqrJO991mgT4WkSBzcELk3mpq1rCumcTCqAQk,8373 +django/utils/topological_sort.py,sha256=AwF4mvJw4CXhFgLyA7HCgSZY68sh8aQZxDaL9NeyIZA,1198 +django/utils/tree.py,sha256=HKi-DFkh6PCmWxwQhKRvMPDP5AufD_BY3DpZM1ivnNo,4886 +django/utils/version.py,sha256=lf4G3gOmEBh8O8mmWl3u6ZoEgQR5bqqfmmh0IvTJT_0,3219 +django/utils/xmlutils.py,sha256=ABVrtMX1Vbv3z8BM8-oc2Bi1FxmwTgvSqafZM0gxVjM,1142 +django/utils/translation/__init__.py,sha256=FmfhD-6E8zgdGw7NrYLFfY3C7hXcZ4zgapptp893Hl0,10790 +django/utils/translation/reloader.py,sha256=M2HqlMk1QfpCrUBn3lM121OQ4tXZ8-DgWbyo1a9aab4,974 +django/utils/translation/template.py,sha256=YB4F--bYjTZgo7MFYhEFxXQIxLlZHEtGd16xWwDVit0,9958 +django/utils/translation/trans_null.py,sha256=yp82bHt5oqqL95Z5PFoYCZeENOulxzp-IqMmkWz0l9Y,1257 +django/utils/translation/trans_real.py,sha256=aWXSA239WdtRLd1jHsoalRYf4BrrXD6Oty1bUm4vIUs,17714 +django/views/__init__.py,sha256=DGdAuGC0t1bMju9i-B9p_gqPgRIFHtLXTdIxNKWFGsw,63 +django/views/csrf.py,sha256=FyfA6d8rWoeuycXwRttRr_jcfZt7Cijt9VIM0uV45f4,6276 +django/views/debug.py,sha256=0nWnnjx8YzEL-qqcQpJPZfo5bdveC8fq2LbW_gU8d5Q,20502 +django/views/defaults.py,sha256=cFxfvjxuyvV9d0X5FQEB6Pd52lCRcxk5Y1xmC_NsMx8,4923 +django/views/i18n.py,sha256=TTUcP_YcBWrj2Cvb7JiL5_LN6jK8lqVZm14q0frbAgw,11406 +django/views/static.py,sha256=VrcVQPCVQlQysqmAnvt0Z1xl8pE8dC_OPp6SZOOtv4Q,4549 +django/views/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/views/decorators/cache.py,sha256=uSLzb61mCuFKIm8tR3Gs_NP1H7U-BOEU_QOc3IhBC_4,1705 +django/views/decorators/clickjacking.py,sha256=EW-DRe2dR8yg4Rf8HRHl8c4-C8mL3HKGa6PxZRKmFtU,1565 +django/views/decorators/csrf.py,sha256=xPWVVNw_DBidvX_ZVYvN7CePt1HpxpUxsb6wMr0Oe4Y,2073 +django/views/decorators/debug.py,sha256=Q_ul_n8M89WoPL87mDYomZ74mv_djuudZZ-b-uB1I6s,2569 +django/views/decorators/gzip.py,sha256=PtpSGd8BePa1utGqvKMFzpLtZJxpV2_Jej8llw5bCJY,253 +django/views/decorators/http.py,sha256=NgZFNkaX0DwDJWUNNgj-FRbBOQEyW4KwbrWDZOa_9Go,4713 +django/views/decorators/vary.py,sha256=6wEXI5yBFZYDVednNPc0bYbXGG-QzkIUQ-50ErDrA_k,1084 +django/views/generic/__init__.py,sha256=WTnzEXnKyJqzHlLu_VsXInYg-GokDNBCUYNV_U6U-ok,822 +django/views/generic/base.py,sha256=lAS2D3uaDd3KgWsPjenp6OSNG3DLbse_K1v6ijcu5ao,7805 +django/views/generic/dates.py,sha256=gtBty1gMf2wuV0LMvsyh8OvCXf8AceLyURBUe6MjmZw,25431 +django/views/generic/detail.py,sha256=m8otoffJXPW9ml-vAtXeM4asTT5I4pvuoR4BhjpWB6A,6507 +django/views/generic/edit.py,sha256=zPO3D8rFrSDjJG1OnRYn0frGqVq8VMKAEUihZU2NrIk,8332 +django/views/generic/list.py,sha256=QEl-_LGEesTiIPxHBx9yeOH7tO-cEmY32hOragPJqCY,7682 +django/views/templates/default_urlconf.html,sha256=NTJty3wdXrInX6oFEoEf6F8DziofGWABNB60Sa-pLhs,16689 +django/views/templates/technical_404.html,sha256=nZT2gkPAYc7G8VNJXst-dEyim0t83xjX-TtCGtxJZwc,2453 +django/views/templates/technical_500.html,sha256=yM5Gbx8b4--cv8PE-TBuVWxfJnu4gEjk8dmuBwRcCd8,17286 +django/views/templates/technical_500.txt,sha256=7xwuvsK28YuBeITnsrkXGaICspxnWbbXHKYaKdcNBYs,3471 +Django-3.0.1.dist-info/AUTHORS,sha256=9whSeauufPnYrA2niIFhP_RxeD61kPADed8oDsvlxik,36673 +Django-3.0.1.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552 +Django-3.0.1.dist-info/LICENSE.python,sha256=Z-Pr3SuMPxOcaosqZSgr_NAjh2cFRcFyPZjP7nMeQrQ,13231 +Django-3.0.1.dist-info/METADATA,sha256=i0KioEgIm8NYFR_TV0krg91HB7M0p8GWUsnf4gmtF9w,3574 +Django-3.0.1.dist-info/WHEEL,sha256=U88EhGIw8Sj2_phqajeu_EAi3RAo8-C6zV3REsWbWbs,92 +Django-3.0.1.dist-info/entry_points.txt,sha256=daYW_s0r8Z5eiRi_bNU6vodHqVUXQWzm-DHFOQHTV2Q,83 +Django-3.0.1.dist-info/top_level.txt,sha256=V_goijg9tfO20ox_7os6CcnPvmBavbxu46LpJiNLwjA,7 +Django-3.0.1.dist-info/RECORD,, +../../../bin/django-admin,sha256=gyW1h9YItjYDciNVv_BChIgoRNYXJ_kJiNegdzAn9Ec,307 +Django-3.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +django/forms/__pycache__/widgets.cpython-36.pyc,, +django/forms/__pycache__/forms.cpython-36.pyc,, +django/forms/__pycache__/renderers.cpython-36.pyc,, +django/forms/__pycache__/models.cpython-36.pyc,, +django/forms/__pycache__/formsets.cpython-36.pyc,, +django/forms/__pycache__/fields.cpython-36.pyc,, +django/forms/__pycache__/utils.cpython-36.pyc,, +django/forms/__pycache__/boundfield.cpython-36.pyc,, +django/forms/__pycache__/__init__.cpython-36.pyc,, +django/templatetags/__pycache__/cache.cpython-36.pyc,, +django/templatetags/__pycache__/i18n.cpython-36.pyc,, +django/templatetags/__pycache__/tz.cpython-36.pyc,, +django/templatetags/__pycache__/static.cpython-36.pyc,, +django/templatetags/__pycache__/l10n.cpython-36.pyc,, +django/templatetags/__pycache__/__init__.cpython-36.pyc,, +django/contrib/humanize/templatetags/__pycache__/humanize.cpython-36.pyc,, +django/contrib/humanize/templatetags/__pycache__/__init__.cpython-36.pyc,, +django/contrib/humanize/__pycache__/apps.cpython-36.pyc,, +django/contrib/humanize/__pycache__/__init__.cpython-36.pyc,, +django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-36.pyc,, +django/contrib/sessions/__pycache__/exceptions.cpython-36.pyc,, +django/contrib/sessions/__pycache__/models.cpython-36.pyc,, +django/contrib/sessions/__pycache__/serializers.cpython-36.pyc,, +django/contrib/sessions/__pycache__/middleware.cpython-36.pyc,, +django/contrib/sessions/__pycache__/base_session.cpython-36.pyc,, +django/contrib/sessions/__pycache__/apps.cpython-36.pyc,, +django/contrib/sessions/__pycache__/__init__.cpython-36.pyc,, +django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/sessions/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/cache.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/db.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/file.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/cached_db.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/base.cpython-36.pyc,, +django/contrib/sessions/backends/__pycache__/__init__.cpython-36.pyc,, +django/contrib/postgres/forms/__pycache__/array.cpython-36.pyc,, +django/contrib/postgres/forms/__pycache__/ranges.cpython-36.pyc,, +django/contrib/postgres/forms/__pycache__/jsonb.cpython-36.pyc,, +django/contrib/postgres/forms/__pycache__/__init__.cpython-36.pyc,, +django/contrib/postgres/forms/__pycache__/hstore.cpython-36.pyc,, +django/contrib/postgres/aggregates/__pycache__/statistics.cpython-36.pyc,, +django/contrib/postgres/aggregates/__pycache__/general.cpython-36.pyc,, +django/contrib/postgres/aggregates/__pycache__/__init__.cpython-36.pyc,, +django/contrib/postgres/aggregates/__pycache__/mixins.cpython-36.pyc,, +django/contrib/postgres/__pycache__/lookups.cpython-36.pyc,, +django/contrib/postgres/__pycache__/signals.cpython-36.pyc,, +django/contrib/postgres/__pycache__/serializers.cpython-36.pyc,, +django/contrib/postgres/__pycache__/search.cpython-36.pyc,, +django/contrib/postgres/__pycache__/functions.cpython-36.pyc,, +django/contrib/postgres/__pycache__/operations.cpython-36.pyc,, +django/contrib/postgres/__pycache__/constraints.cpython-36.pyc,, +django/contrib/postgres/__pycache__/apps.cpython-36.pyc,, +django/contrib/postgres/__pycache__/utils.cpython-36.pyc,, +django/contrib/postgres/__pycache__/indexes.cpython-36.pyc,, +django/contrib/postgres/__pycache__/__init__.cpython-36.pyc,, +django/contrib/postgres/__pycache__/validators.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/array.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/ranges.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/citext.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/utils.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/jsonb.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/__init__.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/mixins.cpython-36.pyc,, +django/contrib/postgres/fields/__pycache__/hstore.cpython-36.pyc,, +django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-36.pyc,, +django/contrib/sitemaps/__pycache__/apps.cpython-36.pyc,, +django/contrib/sitemaps/__pycache__/__init__.cpython-36.pyc,, +django/contrib/sitemaps/__pycache__/views.cpython-36.pyc,, +django/contrib/redirects/__pycache__/models.cpython-36.pyc,, +django/contrib/redirects/__pycache__/admin.cpython-36.pyc,, +django/contrib/redirects/__pycache__/middleware.cpython-36.pyc,, +django/contrib/redirects/__pycache__/apps.cpython-36.pyc,, +django/contrib/redirects/__pycache__/__init__.cpython-36.pyc,, +django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/redirects/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-36.pyc,, +django/contrib/admin/templatetags/__pycache__/log.cpython-36.pyc,, +django/contrib/admin/templatetags/__pycache__/admin_list.cpython-36.pyc,, +django/contrib/admin/templatetags/__pycache__/base.cpython-36.pyc,, +django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-36.pyc,, +django/contrib/admin/templatetags/__pycache__/__init__.cpython-36.pyc,, +django/contrib/admin/views/__pycache__/main.cpython-36.pyc,, +django/contrib/admin/views/__pycache__/autocomplete.cpython-36.pyc,, +django/contrib/admin/views/__pycache__/decorators.cpython-36.pyc,, +django/contrib/admin/views/__pycache__/__init__.cpython-36.pyc,, +django/contrib/admin/__pycache__/widgets.cpython-36.pyc,, +django/contrib/admin/__pycache__/forms.cpython-36.pyc,, +django/contrib/admin/__pycache__/exceptions.cpython-36.pyc,, +django/contrib/admin/__pycache__/sites.cpython-36.pyc,, +django/contrib/admin/__pycache__/models.cpython-36.pyc,, +django/contrib/admin/__pycache__/decorators.cpython-36.pyc,, +django/contrib/admin/__pycache__/tests.cpython-36.pyc,, +django/contrib/admin/__pycache__/filters.cpython-36.pyc,, +django/contrib/admin/__pycache__/actions.cpython-36.pyc,, +django/contrib/admin/__pycache__/apps.cpython-36.pyc,, +django/contrib/admin/__pycache__/helpers.cpython-36.pyc,, +django/contrib/admin/__pycache__/utils.cpython-36.pyc,, +django/contrib/admin/__pycache__/options.cpython-36.pyc,, +django/contrib/admin/__pycache__/__init__.cpython-36.pyc,, +django/contrib/admin/__pycache__/checks.cpython-36.pyc,, +django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-36.pyc,, +django/contrib/admin/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/admin/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-36.pyc,, +django/contrib/gis/forms/__pycache__/widgets.cpython-36.pyc,, +django/contrib/gis/forms/__pycache__/fields.cpython-36.pyc,, +django/contrib/gis/forms/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-36.pyc,, +django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-36.pyc,, +django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-36.pyc,, +django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/models/__pycache__/lookups.cpython-36.pyc,, +django/contrib/gis/db/models/__pycache__/aggregates.cpython-36.pyc,, +django/contrib/gis/db/models/__pycache__/functions.cpython-36.pyc,, +django/contrib/gis/db/models/__pycache__/proxy.cpython-36.pyc,, +django/contrib/gis/db/models/__pycache__/fields.cpython-36.pyc,, +django/contrib/gis/db/models/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-36.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-36.pyc,, +django/contrib/gis/db/backends/base/__pycache__/models.cpython-36.pyc,, +django/contrib/gis/db/backends/base/__pycache__/operations.cpython-36.pyc,, +django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-36.pyc,, +django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/base/__pycache__/features.cpython-36.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-36.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-36.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-36.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-36.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-36.pyc,, +django/contrib/gis/db/backends/__pycache__/utils.cpython-36.pyc,, +django/contrib/gis/db/backends/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-36.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-36.pyc,, +django/contrib/gis/sitemaps/__pycache__/kml.cpython-36.pyc,, +django/contrib/gis/sitemaps/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/sitemaps/__pycache__/views.cpython-36.pyc,, +django/contrib/gis/geoip2/__pycache__/resources.cpython-36.pyc,, +django/contrib/gis/geoip2/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/geoip2/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/admin/__pycache__/widgets.cpython-36.pyc,, +django/contrib/gis/admin/__pycache__/options.cpython-36.pyc,, +django/contrib/gis/admin/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/gdal/raster/__pycache__/source.cpython-36.pyc,, +django/contrib/gis/gdal/raster/__pycache__/band.cpython-36.pyc,, +django/contrib/gis/gdal/raster/__pycache__/const.cpython-36.pyc,, +django/contrib/gis/gdal/raster/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-36.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/srs.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/envelope.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/driver.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/libgdal.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/datasource.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/feature.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/geomtype.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/field.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/layer.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/geometries.cpython-36.pyc,, +django/contrib/gis/gdal/__pycache__/error.cpython-36.pyc,, +django/contrib/gis/utils/__pycache__/srs.cpython-36.pyc,, +django/contrib/gis/utils/__pycache__/ogrinfo.cpython-36.pyc,, +django/contrib/gis/utils/__pycache__/ogrinspect.cpython-36.pyc,, +django/contrib/gis/utils/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/utils/__pycache__/layermapping.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/io.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/point.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/factory.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/collections.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/mutable_list.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/prepared.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/base.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/polygon.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/coordseq.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/libgeos.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/io.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/geometry.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/linestring.cpython-36.pyc,, +django/contrib/gis/geos/__pycache__/error.cpython-36.pyc,, +django/contrib/gis/__pycache__/feeds.cpython-36.pyc,, +django/contrib/gis/__pycache__/shortcuts.cpython-36.pyc,, +django/contrib/gis/__pycache__/apps.cpython-36.pyc,, +django/contrib/gis/__pycache__/ptr.cpython-36.pyc,, +django/contrib/gis/__pycache__/measure.cpython-36.pyc,, +django/contrib/gis/__pycache__/geometry.cpython-36.pyc,, +django/contrib/gis/__pycache__/__init__.cpython-36.pyc,, +django/contrib/gis/__pycache__/views.cpython-36.pyc,, +django/contrib/gis/serializers/__pycache__/geojson.cpython-36.pyc,, +django/contrib/gis/serializers/__pycache__/__init__.cpython-36.pyc,, +django/contrib/messages/storage/__pycache__/fallback.cpython-36.pyc,, +django/contrib/messages/storage/__pycache__/session.cpython-36.pyc,, +django/contrib/messages/storage/__pycache__/base.cpython-36.pyc,, +django/contrib/messages/storage/__pycache__/cookie.cpython-36.pyc,, +django/contrib/messages/storage/__pycache__/__init__.cpython-36.pyc,, +django/contrib/messages/__pycache__/constants.cpython-36.pyc,, +django/contrib/messages/__pycache__/context_processors.cpython-36.pyc,, +django/contrib/messages/__pycache__/middleware.cpython-36.pyc,, +django/contrib/messages/__pycache__/apps.cpython-36.pyc,, +django/contrib/messages/__pycache__/api.cpython-36.pyc,, +django/contrib/messages/__pycache__/utils.cpython-36.pyc,, +django/contrib/messages/__pycache__/__init__.cpython-36.pyc,, +django/contrib/messages/__pycache__/views.cpython-36.pyc,, +django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-36.pyc,, +django/contrib/contenttypes/management/__pycache__/__init__.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/forms.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/models.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/admin.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/apps.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/fields.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/__init__.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/views.cpython-36.pyc,, +django/contrib/contenttypes/__pycache__/checks.cpython-36.pyc,, +django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-36.pyc,, +django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/__pycache__/__init__.cpython-36.pyc,, +django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-36.pyc,, +django/contrib/auth/management/commands/__pycache__/changepassword.cpython-36.pyc,, +django/contrib/auth/management/__pycache__/__init__.cpython-36.pyc,, +django/contrib/auth/__pycache__/tokens.cpython-36.pyc,, +django/contrib/auth/__pycache__/forms.cpython-36.pyc,, +django/contrib/auth/__pycache__/hashers.cpython-36.pyc,, +django/contrib/auth/__pycache__/signals.cpython-36.pyc,, +django/contrib/auth/__pycache__/context_processors.cpython-36.pyc,, +django/contrib/auth/__pycache__/models.cpython-36.pyc,, +django/contrib/auth/__pycache__/admin.cpython-36.pyc,, +django/contrib/auth/__pycache__/decorators.cpython-36.pyc,, +django/contrib/auth/__pycache__/middleware.cpython-36.pyc,, +django/contrib/auth/__pycache__/base_user.cpython-36.pyc,, +django/contrib/auth/__pycache__/urls.cpython-36.pyc,, +django/contrib/auth/__pycache__/apps.cpython-36.pyc,, +django/contrib/auth/__pycache__/backends.cpython-36.pyc,, +django/contrib/auth/__pycache__/__init__.cpython-36.pyc,, +django/contrib/auth/__pycache__/views.cpython-36.pyc,, +django/contrib/auth/__pycache__/mixins.cpython-36.pyc,, +django/contrib/auth/__pycache__/validators.cpython-36.pyc,, +django/contrib/auth/__pycache__/checks.cpython-36.pyc,, +django/contrib/auth/__pycache__/password_validation.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-36.pyc,, +django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-36.pyc,, +django/contrib/auth/handlers/__pycache__/modwsgi.cpython-36.pyc,, +django/contrib/auth/handlers/__pycache__/__init__.cpython-36.pyc,, +django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-36.pyc,, +django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/forms.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/models.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/admin.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/sitemaps.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/middleware.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/urls.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/apps.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/__init__.cpython-36.pyc,, +django/contrib/flatpages/__pycache__/views.cpython-36.pyc,, +django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/flatpages/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/sites/__pycache__/requests.cpython-36.pyc,, +django/contrib/sites/__pycache__/models.cpython-36.pyc,, +django/contrib/sites/__pycache__/admin.cpython-36.pyc,, +django/contrib/sites/__pycache__/middleware.cpython-36.pyc,, +django/contrib/sites/__pycache__/shortcuts.cpython-36.pyc,, +django/contrib/sites/__pycache__/apps.cpython-36.pyc,, +django/contrib/sites/__pycache__/management.cpython-36.pyc,, +django/contrib/sites/__pycache__/__init__.cpython-36.pyc,, +django/contrib/sites/__pycache__/managers.cpython-36.pyc,, +django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-36.pyc,, +django/contrib/sites/migrations/__pycache__/0001_initial.cpython-36.pyc,, +django/contrib/sites/migrations/__pycache__/__init__.cpython-36.pyc,, +django/contrib/syndication/__pycache__/apps.cpython-36.pyc,, +django/contrib/syndication/__pycache__/__init__.cpython-36.pyc,, +django/contrib/syndication/__pycache__/views.cpython-36.pyc,, +django/contrib/admindocs/__pycache__/middleware.cpython-36.pyc,, +django/contrib/admindocs/__pycache__/urls.cpython-36.pyc,, +django/contrib/admindocs/__pycache__/apps.cpython-36.pyc,, +django/contrib/admindocs/__pycache__/utils.cpython-36.pyc,, +django/contrib/admindocs/__pycache__/__init__.cpython-36.pyc,, +django/contrib/admindocs/__pycache__/views.cpython-36.pyc,, +django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-36.pyc,, +django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-36.pyc,, +django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/storage.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/finders.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/testing.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/urls.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/apps.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/utils.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/__init__.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/views.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/handlers.cpython-36.pyc,, +django/contrib/staticfiles/__pycache__/checks.cpython-36.pyc,, +django/template/loaders/__pycache__/locmem.cpython-36.pyc,, +django/template/loaders/__pycache__/cached.cpython-36.pyc,, +django/template/loaders/__pycache__/app_directories.cpython-36.pyc,, +django/template/loaders/__pycache__/base.cpython-36.pyc,, +django/template/loaders/__pycache__/__init__.cpython-36.pyc,, +django/template/loaders/__pycache__/filesystem.cpython-36.pyc,, +django/template/__pycache__/context.cpython-36.pyc,, +django/template/__pycache__/exceptions.cpython-36.pyc,, +django/template/__pycache__/smartif.cpython-36.pyc,, +django/template/__pycache__/context_processors.cpython-36.pyc,, +django/template/__pycache__/engine.cpython-36.pyc,, +django/template/__pycache__/defaultfilters.cpython-36.pyc,, +django/template/__pycache__/loader.cpython-36.pyc,, +django/template/__pycache__/loader_tags.cpython-36.pyc,, +django/template/__pycache__/base.cpython-36.pyc,, +django/template/__pycache__/utils.cpython-36.pyc,, +django/template/__pycache__/library.cpython-36.pyc,, +django/template/__pycache__/__init__.cpython-36.pyc,, +django/template/__pycache__/response.cpython-36.pyc,, +django/template/__pycache__/defaulttags.cpython-36.pyc,, +django/template/backends/__pycache__/jinja2.cpython-36.pyc,, +django/template/backends/__pycache__/dummy.cpython-36.pyc,, +django/template/backends/__pycache__/django.cpython-36.pyc,, +django/template/backends/__pycache__/base.cpython-36.pyc,, +django/template/backends/__pycache__/utils.cpython-36.pyc,, +django/template/backends/__pycache__/__init__.cpython-36.pyc,, +django/apps/__pycache__/config.cpython-36.pyc,, +django/apps/__pycache__/registry.cpython-36.pyc,, +django/apps/__pycache__/__init__.cpython-36.pyc,, +django/db/models/sql/__pycache__/constants.cpython-36.pyc,, +django/db/models/sql/__pycache__/subqueries.cpython-36.pyc,, +django/db/models/sql/__pycache__/compiler.cpython-36.pyc,, +django/db/models/sql/__pycache__/query.cpython-36.pyc,, +django/db/models/sql/__pycache__/datastructures.cpython-36.pyc,, +django/db/models/sql/__pycache__/where.cpython-36.pyc,, +django/db/models/sql/__pycache__/__init__.cpython-36.pyc,, +django/db/models/__pycache__/query_utils.cpython-36.pyc,, +django/db/models/__pycache__/constants.cpython-36.pyc,, +django/db/models/__pycache__/lookups.cpython-36.pyc,, +django/db/models/__pycache__/signals.cpython-36.pyc,, +django/db/models/__pycache__/expressions.cpython-36.pyc,, +django/db/models/__pycache__/manager.cpython-36.pyc,, +django/db/models/__pycache__/enums.cpython-36.pyc,, +django/db/models/__pycache__/deletion.cpython-36.pyc,, +django/db/models/__pycache__/aggregates.cpython-36.pyc,, +django/db/models/__pycache__/query.cpython-36.pyc,, +django/db/models/__pycache__/constraints.cpython-36.pyc,, +django/db/models/__pycache__/base.cpython-36.pyc,, +django/db/models/__pycache__/utils.cpython-36.pyc,, +django/db/models/__pycache__/options.cpython-36.pyc,, +django/db/models/__pycache__/indexes.cpython-36.pyc,, +django/db/models/__pycache__/__init__.cpython-36.pyc,, +django/db/models/functions/__pycache__/datetime.cpython-36.pyc,, +django/db/models/functions/__pycache__/math.cpython-36.pyc,, +django/db/models/functions/__pycache__/window.cpython-36.pyc,, +django/db/models/functions/__pycache__/text.cpython-36.pyc,, +django/db/models/functions/__pycache__/__init__.cpython-36.pyc,, +django/db/models/functions/__pycache__/mixins.cpython-36.pyc,, +django/db/models/functions/__pycache__/comparison.cpython-36.pyc,, +django/db/models/fields/__pycache__/related_lookups.cpython-36.pyc,, +django/db/models/fields/__pycache__/reverse_related.cpython-36.pyc,, +django/db/models/fields/__pycache__/proxy.cpython-36.pyc,, +django/db/models/fields/__pycache__/files.cpython-36.pyc,, +django/db/models/fields/__pycache__/related_descriptors.cpython-36.pyc,, +django/db/models/fields/__pycache__/__init__.cpython-36.pyc,, +django/db/models/fields/__pycache__/mixins.cpython-36.pyc,, +django/db/models/fields/__pycache__/related.cpython-36.pyc,, +django/db/__pycache__/utils.cpython-36.pyc,, +django/db/__pycache__/__init__.cpython-36.pyc,, +django/db/__pycache__/transaction.cpython-36.pyc,, +django/db/migrations/__pycache__/questioner.cpython-36.pyc,, +django/db/migrations/__pycache__/migration.cpython-36.pyc,, +django/db/migrations/__pycache__/exceptions.cpython-36.pyc,, +django/db/migrations/__pycache__/graph.cpython-36.pyc,, +django/db/migrations/__pycache__/recorder.cpython-36.pyc,, +django/db/migrations/__pycache__/loader.cpython-36.pyc,, +django/db/migrations/__pycache__/executor.cpython-36.pyc,, +django/db/migrations/__pycache__/state.cpython-36.pyc,, +django/db/migrations/__pycache__/serializer.cpython-36.pyc,, +django/db/migrations/__pycache__/utils.cpython-36.pyc,, +django/db/migrations/__pycache__/writer.cpython-36.pyc,, +django/db/migrations/__pycache__/optimizer.cpython-36.pyc,, +django/db/migrations/__pycache__/__init__.cpython-36.pyc,, +django/db/migrations/__pycache__/autodetector.cpython-36.pyc,, +django/db/migrations/operations/__pycache__/special.cpython-36.pyc,, +django/db/migrations/operations/__pycache__/models.cpython-36.pyc,, +django/db/migrations/operations/__pycache__/base.cpython-36.pyc,, +django/db/migrations/operations/__pycache__/fields.cpython-36.pyc,, +django/db/migrations/operations/__pycache__/utils.cpython-36.pyc,, +django/db/migrations/operations/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/dummy/__pycache__/base.cpython-36.pyc,, +django/db/backends/dummy/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/dummy/__pycache__/features.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/validation.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/functions.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/creation.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/introspection.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/operations.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/base.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/utils.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/features.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/client.cpython-36.pyc,, +django/db/backends/oracle/__pycache__/schema.cpython-36.pyc,, +django/db/backends/base/__pycache__/validation.cpython-36.pyc,, +django/db/backends/base/__pycache__/creation.cpython-36.pyc,, +django/db/backends/base/__pycache__/introspection.cpython-36.pyc,, +django/db/backends/base/__pycache__/operations.cpython-36.pyc,, +django/db/backends/base/__pycache__/base.cpython-36.pyc,, +django/db/backends/base/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/base/__pycache__/features.cpython-36.pyc,, +django/db/backends/base/__pycache__/client.cpython-36.pyc,, +django/db/backends/base/__pycache__/schema.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/compiler.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/validation.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/creation.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/introspection.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/operations.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/base.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/features.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/client.cpython-36.pyc,, +django/db/backends/mysql/__pycache__/schema.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/creation.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/introspection.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/operations.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/base.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/utils.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/features.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/client.cpython-36.pyc,, +django/db/backends/postgresql/__pycache__/schema.cpython-36.pyc,, +django/db/backends/__pycache__/ddl_references.cpython-36.pyc,, +django/db/backends/__pycache__/signals.cpython-36.pyc,, +django/db/backends/__pycache__/utils.cpython-36.pyc,, +django/db/backends/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/creation.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/introspection.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/operations.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/base.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/__init__.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/features.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/client.cpython-36.pyc,, +django/db/backends/sqlite3/__pycache__/schema.cpython-36.pyc,, +django/middleware/__pycache__/cache.cpython-36.pyc,, +django/middleware/__pycache__/locale.cpython-36.pyc,, +django/middleware/__pycache__/common.cpython-36.pyc,, +django/middleware/__pycache__/gzip.cpython-36.pyc,, +django/middleware/__pycache__/http.cpython-36.pyc,, +django/middleware/__pycache__/csrf.cpython-36.pyc,, +django/middleware/__pycache__/clickjacking.cpython-36.pyc,, +django/middleware/__pycache__/__init__.cpython-36.pyc,, +django/middleware/__pycache__/security.cpython-36.pyc,, +django/core/cache/__pycache__/utils.cpython-36.pyc,, +django/core/cache/__pycache__/__init__.cpython-36.pyc,, +django/core/cache/backends/__pycache__/locmem.cpython-36.pyc,, +django/core/cache/backends/__pycache__/db.cpython-36.pyc,, +django/core/cache/backends/__pycache__/memcached.cpython-36.pyc,, +django/core/cache/backends/__pycache__/filebased.cpython-36.pyc,, +django/core/cache/backends/__pycache__/dummy.cpython-36.pyc,, +django/core/cache/backends/__pycache__/base.cpython-36.pyc,, +django/core/cache/backends/__pycache__/__init__.cpython-36.pyc,, +django/core/mail/__pycache__/message.cpython-36.pyc,, +django/core/mail/__pycache__/utils.cpython-36.pyc,, +django/core/mail/__pycache__/__init__.cpython-36.pyc,, +django/core/mail/backends/__pycache__/locmem.cpython-36.pyc,, +django/core/mail/backends/__pycache__/console.cpython-36.pyc,, +django/core/mail/backends/__pycache__/smtp.cpython-36.pyc,, +django/core/mail/backends/__pycache__/filebased.cpython-36.pyc,, +django/core/mail/backends/__pycache__/dummy.cpython-36.pyc,, +django/core/mail/backends/__pycache__/base.cpython-36.pyc,, +django/core/mail/backends/__pycache__/__init__.cpython-36.pyc,, +django/core/management/commands/__pycache__/sqlmigrate.cpython-36.pyc,, +django/core/management/commands/__pycache__/test.cpython-36.pyc,, +django/core/management/commands/__pycache__/startproject.cpython-36.pyc,, +django/core/management/commands/__pycache__/sendtestemail.cpython-36.pyc,, +django/core/management/commands/__pycache__/showmigrations.cpython-36.pyc,, +django/core/management/commands/__pycache__/diffsettings.cpython-36.pyc,, +django/core/management/commands/__pycache__/makemessages.cpython-36.pyc,, +django/core/management/commands/__pycache__/makemigrations.cpython-36.pyc,, +django/core/management/commands/__pycache__/startapp.cpython-36.pyc,, +django/core/management/commands/__pycache__/createcachetable.cpython-36.pyc,, +django/core/management/commands/__pycache__/check.cpython-36.pyc,, +django/core/management/commands/__pycache__/dbshell.cpython-36.pyc,, +django/core/management/commands/__pycache__/loaddata.cpython-36.pyc,, +django/core/management/commands/__pycache__/dumpdata.cpython-36.pyc,, +django/core/management/commands/__pycache__/sqlsequencereset.cpython-36.pyc,, +django/core/management/commands/__pycache__/testserver.cpython-36.pyc,, +django/core/management/commands/__pycache__/squashmigrations.cpython-36.pyc,, +django/core/management/commands/__pycache__/shell.cpython-36.pyc,, +django/core/management/commands/__pycache__/inspectdb.cpython-36.pyc,, +django/core/management/commands/__pycache__/sqlflush.cpython-36.pyc,, +django/core/management/commands/__pycache__/compilemessages.cpython-36.pyc,, +django/core/management/commands/__pycache__/flush.cpython-36.pyc,, +django/core/management/commands/__pycache__/runserver.cpython-36.pyc,, +django/core/management/commands/__pycache__/migrate.cpython-36.pyc,, +django/core/management/__pycache__/color.cpython-36.pyc,, +django/core/management/__pycache__/templates.cpython-36.pyc,, +django/core/management/__pycache__/base.cpython-36.pyc,, +django/core/management/__pycache__/utils.cpython-36.pyc,, +django/core/management/__pycache__/sql.cpython-36.pyc,, +django/core/management/__pycache__/__init__.cpython-36.pyc,, +django/core/checks/compatibility/__pycache__/__init__.cpython-36.pyc,, +django/core/checks/__pycache__/messages.cpython-36.pyc,, +django/core/checks/__pycache__/caches.cpython-36.pyc,, +django/core/checks/__pycache__/registry.cpython-36.pyc,, +django/core/checks/__pycache__/database.cpython-36.pyc,, +django/core/checks/__pycache__/translation.cpython-36.pyc,, +django/core/checks/__pycache__/model_checks.cpython-36.pyc,, +django/core/checks/__pycache__/urls.cpython-36.pyc,, +django/core/checks/__pycache__/templates.cpython-36.pyc,, +django/core/checks/__pycache__/__init__.cpython-36.pyc,, +django/core/checks/security/__pycache__/sessions.cpython-36.pyc,, +django/core/checks/security/__pycache__/base.cpython-36.pyc,, +django/core/checks/security/__pycache__/csrf.cpython-36.pyc,, +django/core/checks/security/__pycache__/__init__.cpython-36.pyc,, +django/core/files/__pycache__/storage.cpython-36.pyc,, +django/core/files/__pycache__/locks.cpython-36.pyc,, +django/core/files/__pycache__/move.cpython-36.pyc,, +django/core/files/__pycache__/base.cpython-36.pyc,, +django/core/files/__pycache__/uploadedfile.cpython-36.pyc,, +django/core/files/__pycache__/utils.cpython-36.pyc,, +django/core/files/__pycache__/temp.cpython-36.pyc,, +django/core/files/__pycache__/uploadhandler.cpython-36.pyc,, +django/core/files/__pycache__/__init__.cpython-36.pyc,, +django/core/files/__pycache__/images.cpython-36.pyc,, +django/core/__pycache__/asgi.cpython-36.pyc,, +django/core/__pycache__/signals.cpython-36.pyc,, +django/core/__pycache__/exceptions.cpython-36.pyc,, +django/core/__pycache__/paginator.cpython-36.pyc,, +django/core/__pycache__/signing.cpython-36.pyc,, +django/core/__pycache__/__init__.cpython-36.pyc,, +django/core/__pycache__/wsgi.cpython-36.pyc,, +django/core/__pycache__/validators.cpython-36.pyc,, +django/core/servers/__pycache__/basehttp.cpython-36.pyc,, +django/core/servers/__pycache__/__init__.cpython-36.pyc,, +django/core/handlers/__pycache__/asgi.cpython-36.pyc,, +django/core/handlers/__pycache__/exception.cpython-36.pyc,, +django/core/handlers/__pycache__/base.cpython-36.pyc,, +django/core/handlers/__pycache__/__init__.cpython-36.pyc,, +django/core/handlers/__pycache__/wsgi.cpython-36.pyc,, +django/core/serializers/__pycache__/python.cpython-36.pyc,, +django/core/serializers/__pycache__/xml_serializer.cpython-36.pyc,, +django/core/serializers/__pycache__/pyyaml.cpython-36.pyc,, +django/core/serializers/__pycache__/base.cpython-36.pyc,, +django/core/serializers/__pycache__/__init__.cpython-36.pyc,, +django/core/serializers/__pycache__/json.cpython-36.pyc,, +django/test/__pycache__/signals.cpython-36.pyc,, +django/test/__pycache__/html.cpython-36.pyc,, +django/test/__pycache__/selenium.cpython-36.pyc,, +django/test/__pycache__/testcases.cpython-36.pyc,, +django/test/__pycache__/runner.cpython-36.pyc,, +django/test/__pycache__/utils.cpython-36.pyc,, +django/test/__pycache__/__init__.cpython-36.pyc,, +django/test/__pycache__/client.cpython-36.pyc,, +django/views/decorators/__pycache__/cache.cpython-36.pyc,, +django/views/decorators/__pycache__/vary.cpython-36.pyc,, +django/views/decorators/__pycache__/gzip.cpython-36.pyc,, +django/views/decorators/__pycache__/http.cpython-36.pyc,, +django/views/decorators/__pycache__/csrf.cpython-36.pyc,, +django/views/decorators/__pycache__/debug.cpython-36.pyc,, +django/views/decorators/__pycache__/clickjacking.cpython-36.pyc,, +django/views/decorators/__pycache__/__init__.cpython-36.pyc,, +django/views/__pycache__/i18n.cpython-36.pyc,, +django/views/__pycache__/static.cpython-36.pyc,, +django/views/__pycache__/csrf.cpython-36.pyc,, +django/views/__pycache__/debug.cpython-36.pyc,, +django/views/__pycache__/defaults.cpython-36.pyc,, +django/views/__pycache__/__init__.cpython-36.pyc,, +django/views/generic/__pycache__/dates.cpython-36.pyc,, +django/views/generic/__pycache__/edit.cpython-36.pyc,, +django/views/generic/__pycache__/list.cpython-36.pyc,, +django/views/generic/__pycache__/detail.cpython-36.pyc,, +django/views/generic/__pycache__/base.cpython-36.pyc,, +django/views/generic/__pycache__/__init__.cpython-36.pyc,, +django/bin/__pycache__/django-admin.cpython-36.pyc,, +django/utils/__pycache__/termcolors.cpython-36.pyc,, +django/utils/__pycache__/jslex.cpython-36.pyc,, +django/utils/__pycache__/cache.cpython-36.pyc,, +django/utils/__pycache__/ipv6.cpython-36.pyc,, +django/utils/__pycache__/asyncio.cpython-36.pyc,, +django/utils/__pycache__/datetime_safe.cpython-36.pyc,, +django/utils/__pycache__/autoreload.cpython-36.pyc,, +django/utils/__pycache__/functional.cpython-36.pyc,, +django/utils/__pycache__/deconstruct.cpython-36.pyc,, +django/utils/__pycache__/safestring.cpython-36.pyc,, +django/utils/__pycache__/deprecation.cpython-36.pyc,, +django/utils/__pycache__/timezone.cpython-36.pyc,, +django/utils/__pycache__/dates.cpython-36.pyc,, +django/utils/__pycache__/html.cpython-36.pyc,, +django/utils/__pycache__/log.cpython-36.pyc,, +django/utils/__pycache__/decorators.cpython-36.pyc,, +django/utils/__pycache__/timesince.cpython-36.pyc,, +django/utils/__pycache__/encoding.cpython-36.pyc,, +django/utils/__pycache__/itercompat.cpython-36.pyc,, +django/utils/__pycache__/numberformat.cpython-36.pyc,, +django/utils/__pycache__/module_loading.cpython-36.pyc,, +django/utils/__pycache__/archive.cpython-36.pyc,, +django/utils/__pycache__/inspect.cpython-36.pyc,, +django/utils/__pycache__/xmlutils.cpython-36.pyc,, +django/utils/__pycache__/dateformat.cpython-36.pyc,, +django/utils/__pycache__/baseconv.cpython-36.pyc,, +django/utils/__pycache__/_os.cpython-36.pyc,, +django/utils/__pycache__/feedgenerator.cpython-36.pyc,, +django/utils/__pycache__/regex_helper.cpython-36.pyc,, +django/utils/__pycache__/lorem_ipsum.cpython-36.pyc,, +django/utils/__pycache__/http.cpython-36.pyc,, +django/utils/__pycache__/hashable.cpython-36.pyc,, +django/utils/__pycache__/text.cpython-36.pyc,, +django/utils/__pycache__/tree.cpython-36.pyc,, +django/utils/__pycache__/topological_sort.cpython-36.pyc,, +django/utils/__pycache__/datastructures.cpython-36.pyc,, +django/utils/__pycache__/dateparse.cpython-36.pyc,, +django/utils/__pycache__/__init__.cpython-36.pyc,, +django/utils/__pycache__/crypto.cpython-36.pyc,, +django/utils/__pycache__/formats.cpython-36.pyc,, +django/utils/__pycache__/duration.cpython-36.pyc,, +django/utils/__pycache__/version.cpython-36.pyc,, +django/utils/translation/__pycache__/template.cpython-36.pyc,, +django/utils/translation/__pycache__/trans_real.cpython-36.pyc,, +django/utils/translation/__pycache__/__init__.cpython-36.pyc,, +django/utils/translation/__pycache__/trans_null.cpython-36.pyc,, +django/utils/translation/__pycache__/reloader.cpython-36.pyc,, +django/conf/__pycache__/global_settings.cpython-36.pyc,, +django/conf/__pycache__/__init__.cpython-36.pyc,, +django/conf/urls/__pycache__/i18n.cpython-36.pyc,, +django/conf/urls/__pycache__/static.cpython-36.pyc,, +django/conf/urls/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/da/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/da/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/es_AR/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/es_AR/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/bg/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/bg/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/mk/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/mk/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/sr_Latn/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/sr_Latn/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/zh_Hans/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/zh_Hans/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/eu/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/eu/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ru/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ru/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/fr/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/fr/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/es/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/es/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/pt_BR/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/pt_BR/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/es_MX/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/es_MX/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/cs/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/cs/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/km/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/km/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/et/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/et/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/cy/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/cy/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/de_CH/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/de_CH/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/de/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/de/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/fi/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/fi/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/mn/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/mn/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/eo/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/eo/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/uz/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/uz/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/en/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/en/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/fy/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/fy/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/te/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/te/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/th/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/th/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/is/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/is/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/it/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/it/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ml/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ml/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ga/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ga/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/id/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/id/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/vi/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/vi/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/nn/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/nn/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/tr/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/tr/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/en_AU/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/en_AU/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ka/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ka/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/fa/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/fa/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/hu/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/hu/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ro/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ro/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/sl/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/sl/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/bn/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/bn/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ar/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ar/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/el/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/el/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/uk/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/uk/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ko/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ko/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/gd/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/gd/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/lt/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/lt/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/az/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/az/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/kn/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/kn/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/nl/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/nl/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/es_CO/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/es_CO/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/pt/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/pt/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/zh_Hant/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/zh_Hant/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ta/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ta/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/sk/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/sk/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/sq/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/sq/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ja/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ja/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/gl/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/gl/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/nb/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/nb/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/ca/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/ca/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/lv/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/lv/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/pl/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/pl/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/hr/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/hr/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/hi/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/hi/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/es_NI/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/es_NI/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/he/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/he/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/sv/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/sv/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/sr/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/sr/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/es_PR/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/es_PR/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/bs/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/bs/__pycache__/formats.cpython-36.pyc,, +django/conf/locale/en_GB/__pycache__/__init__.cpython-36.pyc,, +django/conf/locale/en_GB/__pycache__/formats.cpython-36.pyc,, +django/__pycache__/__main__.cpython-36.pyc,, +django/__pycache__/shortcuts.cpython-36.pyc,, +django/__pycache__/__init__.cpython-36.pyc,, +django/urls/__pycache__/resolvers.cpython-36.pyc,, +django/urls/__pycache__/exceptions.cpython-36.pyc,, +django/urls/__pycache__/conf.cpython-36.pyc,, +django/urls/__pycache__/converters.cpython-36.pyc,, +django/urls/__pycache__/base.cpython-36.pyc,, +django/urls/__pycache__/utils.cpython-36.pyc,, +django/urls/__pycache__/__init__.cpython-36.pyc,, +django/dispatch/__pycache__/dispatcher.cpython-36.pyc,, +django/dispatch/__pycache__/__init__.cpython-36.pyc,, +django/http/__pycache__/multipartparser.cpython-36.pyc,, +django/http/__pycache__/cookie.cpython-36.pyc,, +django/http/__pycache__/__init__.cpython-36.pyc,, +django/http/__pycache__/response.cpython-36.pyc,, +django/http/__pycache__/request.cpython-36.pyc,, +../../../bin/__pycache__/django-admin.cpython-36.pyc,, diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/WHEEL b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/WHEEL new file mode 100644 index 0000000..e499438 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.33.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/entry_points.txt b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/entry_points.txt new file mode 100644 index 0000000..22df67e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +django-admin = django.core.management:execute_from_command_line + diff --git a/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/top_level.txt b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/top_level.txt new file mode 100644 index 0000000..d3e4ba5 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/Django-3.0.1.dist-info/top_level.txt @@ -0,0 +1 @@ +django diff --git a/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/INSTALLER b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/METADATA b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/METADATA new file mode 100644 index 0000000..74251b6 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/METADATA @@ -0,0 +1,89 @@ +Metadata-Version: 2.1 +Name: XlsxWriter +Version: 1.2.6 +Summary: A Python module for creating Excel XLSX files. +Home-page: https://github.com/jmcnamara/XlsxWriter +Author: John McNamara +Author-email: jmcnamara@cpan.org +License: BSD +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: BSD License +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 + +XlsxWriter +========== + +**XlsxWriter** is a Python module for writing files in the Excel 2007+ XLSX +file format. + +XlsxWriter can be used to write text, numbers, formulas and hyperlinks to +multiple worksheets and it supports features such as formatting and many more, +including: + +* 100% compatible Excel XLSX files. +* Full formatting. +* Merged cells. +* Defined names. +* Charts. +* Autofilters. +* Data validation and drop down lists. +* Conditional formatting. +* Worksheet PNG/JPEG/BMP/WMF/EMF images. +* Rich multi-format strings. +* Cell comments. +* Integration with Pandas. +* Textboxes. +* Support for adding Macros. +* Memory optimization mode for writing large files. + +It supports Python 2.7, 3.4+ and PyPy and uses standard libraries only. + +Here is a simple example: + +.. code-block:: python + + import xlsxwriter + + + # Create an new Excel file and add a worksheet. + workbook = xlsxwriter.Workbook('demo.xlsx') + worksheet = workbook.add_worksheet() + + # Widen the first column to make the text clearer. + worksheet.set_column('A:A', 20) + + # Add a bold format to use to highlight cells. + bold = workbook.add_format({'bold': True}) + + # Write some simple text. + worksheet.write('A1', 'Hello') + + # Text with formatting. + worksheet.write('A2', 'World', bold) + + # Write some numbers, with row/column notation. + worksheet.write(2, 0, 123) + worksheet.write(3, 0, 123.456) + + # Insert an image. + worksheet.insert_image('B5', 'logo.png') + + workbook.close() + +.. image:: https://raw.github.com/jmcnamara/XlsxWriter/master/dev/docs/source/_images/demo.png + +See the full documentation at: https://xlsxwriter.readthedocs.io + +Release notes: https://xlsxwriter.readthedocs.io/changes.html + + + diff --git a/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/RECORD b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/RECORD new file mode 100644 index 0000000..38c743d --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/RECORD @@ -0,0 +1,73 @@ +../../../bin/vba_extract.py,sha256=UQuFL71KrlrBQVHcKtXIuTSamvdaJLKoFyjN7UsNp8g,1803 +XlsxWriter-1.2.6.dist-info/METADATA,sha256=QlMHasB88-U0Robxa7gN5OfVlzo3V4fUHdP2fI9qhBQ,2495 +XlsxWriter-1.2.6.dist-info/RECORD,, +XlsxWriter-1.2.6.dist-info/WHEEL,sha256=gduuPyBvFJQSQ0zdyxF7k0zynDXbIbvg5ZBHoXum5uk,110 +XlsxWriter-1.2.6.dist-info/top_level.txt,sha256=xFEUcpcY7QzAr_-ztkXebEt1FZCxpuCbmyCsBaevhRk,11 +xlsxwriter/__init__.py,sha256=RC_O9UczcfOPnWDHj0qVz8xi7Xk4yogwPRhSr-H-f3s,79 +xlsxwriter/app.py,sha256=094OV0bz6q4_W827h0BcQh2BhS65wMbKBvXBOX9JqoA,5739 +xlsxwriter/chart.py,sha256=Lzktnb73y6cX2h4wY58fuugmOareql60mg30-_HPTXQ,119915 +xlsxwriter/chart_area.py,sha256=YPyYHh-wXY8GU2x8mJZO1rx32-gNRT-CkAtXIZ3Xl3o,2636 +xlsxwriter/chart_bar.py,sha256=WDNbFFvv4535fwSYU2bcvSHbF78jvyxOZfybtQ6t4eM,4794 +xlsxwriter/chart_column.py,sha256=GVThLPty3Ox1aEXLvhHcWSunfjHY3QAd6nx2_422KIo,3545 +xlsxwriter/chart_doughnut.py,sha256=IJuEjpJAyjVP2AiSqjTUpdI9C-DL4xHImF8kbfrN3zE,2667 +xlsxwriter/chart_line.py,sha256=ZseoSG5nPN2Gs6FQTU3JZp7pQqSm3aWSEROVvVjF7vM,3241 +xlsxwriter/chart_pie.py,sha256=uJJqWCxsqiDemKj6WFpwEN_DpPcRy_tyVA42l-wlK3o,7015 +xlsxwriter/chart_radar.py,sha256=TwRZb4b0npsg2SAwSnLPF7Gux-xQ20Hh317n-B7u28Q,2699 +xlsxwriter/chart_scatter.py,sha256=80Ax5U5t2Vo5QpIx9UYbGqjJpA84P67Xa5UJIaKbP10,9614 +xlsxwriter/chart_stock.py,sha256=b08N_WO-x1PIO1NVgWcJHayDQJ6lQh58Dkp89sHvIF4,3550 +xlsxwriter/chartsheet.py,sha256=4DOEQBlpDfELchwv-2Mmpq_GucI6GZ9No56DZoqkVIs,5562 +xlsxwriter/comments.py,sha256=e5QxHt90qa_eBUed1XPcYiy4rgNhmJbYtGmT5ItufWg,5553 +xlsxwriter/compatibility.py,sha256=XO02he6SpCBhgnWqwAoeoK6ZvXCTCAtO6qbhe-oqn9A,880 +xlsxwriter/contenttypes.py,sha256=JozyVvXEoBrCoJ5F1Wff8whfPrdC1d9kbswt5DoExII,7095 +xlsxwriter/core.py,sha256=hbvUYzTl9JI3SXcvuiPa05Ui_SBczVBUyZExn4frldU,5466 +xlsxwriter/custom.py,sha256=sfK3VTNWAhLoSa3Zb0kcpXsgAPY8hNiV52MOG-7jmB0,3789 +xlsxwriter/drawing.py,sha256=oclylq48vaZBfvAoXBMHZIe2A4frnvnV9mN9ju_ZAWw,33042 +xlsxwriter/exceptions.py,sha256=8TTT8vjGDopSNPLgF2fylVpBBAbTvW0xt1_Z34m53tQ,1350 +xlsxwriter/format.py,sha256=e-amy-tpGqcTOC94Fct-CVObuZopo8jlKpAzcSWnWbA,26229 +xlsxwriter/packager.py,sha256=LP3hMNXO_amcY9IYtgpGL0i7wIjM1YJy1-CHrhHsorw,23312 +xlsxwriter/relationships.py,sha256=h9gFxvDf97VgH_kpnuicJ6d6f0gDbQ1wSyfRVM4C1gs,3422 +xlsxwriter/shape.py,sha256=OCdCggDWPPTP91cuToUmC5HiOHCGVhAzshREuyxHwnM,12855 +xlsxwriter/sharedstrings.py,sha256=b9LTC6aApgVzH4W3r7oBFIhwH5tZtpFQHcdCUGMZ-3M,4926 +xlsxwriter/styles.py,sha256=5TAmNFGJmdKdEI5FA_fQTh8iHvXuZAXm2mreHvPigLA,22347 +xlsxwriter/table.py,sha256=ut7PuKWlV18HUjxJZbIBJn_I-LEg3ucjeATXiFGZ_lA,5350 +xlsxwriter/theme.py,sha256=i7j-Afusr71sHDGwckz1n6Cmw5yjKvPaGe7mNc6vs9A,9011 +xlsxwriter/utility.py,sha256=QHb_KV6D7TCR1XXSbpoDudV3yq6TTMjJA0S9TLR1gx0,25893 +xlsxwriter/vml.py,sha256=mjRpehDMr0WyjT79OM44r7ywOEy5osPuIAaz7NHBYmI,19365 +xlsxwriter/workbook.py,sha256=QxpwQATcqWJ_WJ1vlpGJFRSrIfbYMdJgaKm5QUJnmTk,60643 +xlsxwriter/worksheet.py,sha256=qSIACjBBDiPQxSHfbBpzrq0Tzsxx33kH6a3X0BAZyyQ,248573 +xlsxwriter/xmlwriter.py,sha256=YlrOTDUB7mDJ1YBN-DI-xpuuMx_inY1v4Gg6mAk2S6w,6912 +XlsxWriter-1.2.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +xlsxwriter/__pycache__/chart_stock.cpython-36.pyc,, +xlsxwriter/__pycache__/core.cpython-36.pyc,, +xlsxwriter/__pycache__/chart.cpython-36.pyc,, +xlsxwriter/__pycache__/exceptions.cpython-36.pyc,, +xlsxwriter/__pycache__/packager.cpython-36.pyc,, +xlsxwriter/__pycache__/styles.cpython-36.pyc,, +xlsxwriter/__pycache__/shape.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_column.cpython-36.pyc,, +xlsxwriter/__pycache__/contenttypes.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_line.cpython-36.pyc,, +xlsxwriter/__pycache__/relationships.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_radar.cpython-36.pyc,, +xlsxwriter/__pycache__/vml.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_area.cpython-36.pyc,, +xlsxwriter/__pycache__/app.cpython-36.pyc,, +xlsxwriter/__pycache__/utility.cpython-36.pyc,, +xlsxwriter/__pycache__/custom.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_doughnut.cpython-36.pyc,, +xlsxwriter/__pycache__/worksheet.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_scatter.cpython-36.pyc,, +xlsxwriter/__pycache__/compatibility.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_pie.cpython-36.pyc,, +xlsxwriter/__pycache__/drawing.cpython-36.pyc,, +xlsxwriter/__pycache__/chartsheet.cpython-36.pyc,, +xlsxwriter/__pycache__/chart_bar.cpython-36.pyc,, +xlsxwriter/__pycache__/comments.cpython-36.pyc,, +xlsxwriter/__pycache__/__init__.cpython-36.pyc,, +xlsxwriter/__pycache__/xmlwriter.cpython-36.pyc,, +xlsxwriter/__pycache__/workbook.cpython-36.pyc,, +xlsxwriter/__pycache__/table.cpython-36.pyc,, +xlsxwriter/__pycache__/sharedstrings.cpython-36.pyc,, +xlsxwriter/__pycache__/theme.cpython-36.pyc,, +xlsxwriter/__pycache__/format.cpython-36.pyc,, +../../../bin/__pycache__/vba_extract.cpython-36.pyc,, diff --git a/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/WHEEL b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/WHEEL new file mode 100644 index 0000000..1316c41 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.31.1) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/top_level.txt b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/top_level.txt new file mode 100644 index 0000000..450cd81 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/XlsxWriter-1.2.6.dist-info/top_level.txt @@ -0,0 +1 @@ +xlsxwriter diff --git a/dbportal/lib/python3.6/site-packages/__pycache__/dj_database_url.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/__pycache__/dj_database_url.cpython-36.pyc new file mode 100644 index 0000000..52eea6c Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/__pycache__/dj_database_url.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.pyc new file mode 100644 index 0000000..bf7a8fa Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/INSTALLER b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/LICENSE b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/LICENSE new file mode 100644 index 0000000..5f4f225 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) Django Software Foundation and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of Django nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/METADATA b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/METADATA new file mode 100644 index 0000000..1a039bc --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/METADATA @@ -0,0 +1,225 @@ +Metadata-Version: 2.1 +Name: asgiref +Version: 3.2.3 +Summary: ASGI specs, helper code, and adapters +Home-page: http://github.com/django/asgiref/ +Author: Django Software Foundation +Author-email: foundation@djangoproject.com +License: BSD +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Topic :: Internet :: WWW/HTTP +Description-Content-Type: text/x-rst +Provides-Extra: tests +Requires-Dist: pytest (~=4.3.0) ; extra == 'tests' +Requires-Dist: pytest-asyncio (~=0.10.0) ; extra == 'tests' + +asgiref +======= + +.. image:: https://api.travis-ci.org/django/asgiref.svg + :target: https://travis-ci.org/django/asgiref + +.. image:: https://img.shields.io/pypi/v/asgiref.svg + :target: https://pypi.python.org/pypi/asgiref + +ASGI is a standard for Python asynchronous web apps and servers to communicate +with each other, and positioned as an asynchronous successor to WSGI. You can +read more at https://asgi.readthedocs.io/en/latest/ + +This package includes ASGI base libraries, such as: + +* Sync-to-async and async-to-sync function wrappers, ``asgiref.sync`` +* Server base classes, ``asgiref.server`` +* A WSGI-to-ASGI adapter, in ``asgiref.wsgi`` + + +Function wrappers +----------------- + +These allow you to wrap or decorate async or sync functions to call them from +the other style (so you can call async functions from a synchronous thread, +or vice-versa). + +In particular: + +* AsyncToSync lets a synchronous subthread stop and wait while the async + function is called on the main thread's event loop, and then control is + returned to the thread when the async function is finished. + +* SyncToAsync lets async code call a synchronous function, which is run in + a threadpool and control returned to the async coroutine when the synchronous + function completes. + +The idea is to make it easier to call synchronous APIs from async code and +asynchronous APIs from synchronous code so it's easier to transition code from +one style to the other. In the case of Channels, we wrap the (synchronous) +Django view system with SyncToAsync to allow it to run inside the (asynchronous) +ASGI server. + +Note that exactly what threads things run in is very specific, and aimed to +keep maximum compatibility with old synchronous code. See +"Synchronous code & Threads" below for a full explanation. + + +Threadlocal replacement +----------------------- + +This is a drop-in replacement for ``threading.local`` that works with both +threads and asyncio Tasks. Even better, it will proxy values through from a +task-local context to a thread-local context when you use ``sync_to_async`` +to run things in a threadpool, and vice-versa for ``async_to_sync``. + +If you instead want true thread- and task-safety, you can set +``thread_critical`` on the Local object to ensure this instead. + + +Server base classes +------------------- + +Includes a ``StatelessServer`` class which provides all the hard work of +writing a stateless server (as in, does not handle direct incoming sockets +but instead consumes external streams or sockets to work out what is happening). + +An example of such a server would be a chatbot server that connects out to +a central chat server and provides a "connection scope" per user chatting to +it. There's only one actual connection, but the server has to separate things +into several scopes for easier writing of the code. + +You can see an example of this being used in `frequensgi `_. + + +WSGI-to-ASGI adapter +-------------------- + +Allows you to wrap a WSGI application so it appears as a valid ASGI application. + +Simply wrap it around your WSGI application like so:: + + asgi_application = WsgiToAsgi(wsgi_application) + +The WSGI application will be run in a synchronous threadpool, and the wrapped +ASGI application will be one that accepts ``http`` class messages. + +Please note that not all extended features of WSGI may be supported (such as +file handles for incoming POST bodies). + + +Dependencies +------------ + +``asgiref`` requires Python 3.5 or higher. + + +Contributing +------------ + +Please refer to the +`main Channels contributing docs `_. + + +Testing +''''''' + +To run tests, make sure you have installed the ``tests`` extra with the package:: + + cd asgiref/ + pip install -e .[tests] + pytest + + +Building the documentation +'''''''''''''''''''''''''' + +The documentation uses `Sphinx `_:: + + cd asgiref/docs/ + pip install sphinx + +To build the docs, you can use the default tools:: + + sphinx-build -b html . _build/html # or `make html`, if you've got make set up + cd _build/html + python -m http.server + +...or you can use ``sphinx-autobuild`` to run a server and rebuild/reload +your documentation changes automatically:: + + pip install sphinx-autobuild + sphinx-autobuild . _build/html + + +Implementation Details +---------------------- + +Synchronous code & threads +'''''''''''''''''''''''''' + +The ``asgiref.sync`` module provides two wrappers that let you go between +asynchronous and synchronous code at will, while taking care of the rough edges +for you. + +Unfortunately, the rough edges are numerous, and the code has to work especially +hard to keep things in the same thread as much as possible. Notably, the +restrictions we are working with are: + +* All synchronous code called through ``SyncToAsync`` and marked with + ``thread_sensitive`` should run in the same thread as each other (and if the + outer layer of the program is synchronous, the main thread) + +* If a thread already has a running async loop, ``AsyncToSync`` can't run things + on that loop if it's blocked on synchronous code that is above you in the + call stack. + +The first compromise you get to might be that ``thread_sensitive`` code should +just run in the same thread and not spawn in a sub-thread, fulfilling the first +restriction, but that immediately runs you into the second restriction. + +The only real solution is to essentially have a variant of ThreadPoolExecutor +that executes any ``thread_sensitive`` code on the outermost synchronous +thread - either the main thread, or a single spawned subthread. + +This means you now have two basic states: + +* If the outermost layer of your program is synchronous, then all async code + run through ``AsyncToSync`` will run in a per-call event loop in arbitary + sub-threads, while all ``thread_sensitive`` code will run in the main thread. + +* If the outermost layer of your program is asynchronous, then all async code + runs on the main thread's event loop, and all ``thread_sensitive`` synchronous + code will run in a single shared sub-thread. + +Cruicially, this means that in both cases there is a thread which is a shared +resource that all ``thread_sensitive`` code must run on, and there is a chance +that this thread is currently blocked on its own ``AsyncToSync`` call. Thus, +``AsyncToSync`` needs to act as an executor for thread code while it's blocking. + +The ``CurrentThreadExecutor`` class provides this functionality; rather than +simply waiting on a Future, you can call its ``run_until_future`` method and +it will run submitted code until that Future is done. This means that code +inside the call can then run code on your thread. + + +Maintenance and Security +------------------------ + +To report security issues, please contact security@djangoproject.com. For GPG +signatures and more security process information, see +https://docs.djangoproject.com/en/dev/internals/security/. + +To report bugs or request new features, please open a new GitHub issue. + +This repository is part of the Channels project. For the shepherd and maintenance team, please see the +`main Channels readme `_. + + diff --git a/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/RECORD b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/RECORD new file mode 100644 index 0000000..63bbc84 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/RECORD @@ -0,0 +1,24 @@ +asgiref/__init__.py,sha256=mXL9_BE7rH9kYvnpTkBL-8cf36JOLKsKyqYTcb1wVkw,22 +asgiref/compatibility.py,sha256=MVH2bEdiCMMVTLbE-1V6KiU7q4LwqzP7PIufeXa-njM,1598 +asgiref/current_thread_executor.py,sha256=3dRFt3jAl_x1wr9prZZMut071pmdHdIwbTnUAYVejj4,2974 +asgiref/local.py,sha256=HQwOou8duBbyzqjPpKeTEgTLPIMzjAdasRI1y10f9L0,4420 +asgiref/server.py,sha256=iFJn_uD-poeHWgLOuSnKCVMS1HqqV-IOTOOC85fKr00,5915 +asgiref/sync.py,sha256=paTFi6m7u_RmZnag2eASmuGGNsPuYI8GmIcV7cNkn2I,11485 +asgiref/testing.py,sha256=3byNRV7Oto_Fg8Z-fErQJ3yGf7OQlcUexbN_cDQugzQ,3119 +asgiref/timeout.py,sha256=Emw-Oop1pRfSc5YSMEYHgEz1802mP6JdA6bxH37bby8,3914 +asgiref/wsgi.py,sha256=rxGUxQG4FsSJYXJekClLuAGM_rovnxfH1qrNt95CNaI,5606 +asgiref-3.2.3.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552 +asgiref-3.2.3.dist-info/METADATA,sha256=IVR7f6fGCRskC5rdQpyLEj3TU98OiwNN6e48kFNtzQo,8204 +asgiref-3.2.3.dist-info/WHEEL,sha256=8zNYZbwQSXoB9IfXOjPfeNwvAsALAjffgk27FqvCWbo,110 +asgiref-3.2.3.dist-info/top_level.txt,sha256=bokQjCzwwERhdBiPdvYEZa4cHxT4NCeAffQNUqJ8ssg,8 +asgiref-3.2.3.dist-info/RECORD,, +asgiref-3.2.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +asgiref/__pycache__/sync.cpython-36.pyc,, +asgiref/__pycache__/local.cpython-36.pyc,, +asgiref/__pycache__/current_thread_executor.cpython-36.pyc,, +asgiref/__pycache__/testing.cpython-36.pyc,, +asgiref/__pycache__/compatibility.cpython-36.pyc,, +asgiref/__pycache__/timeout.cpython-36.pyc,, +asgiref/__pycache__/server.cpython-36.pyc,, +asgiref/__pycache__/__init__.cpython-36.pyc,, +asgiref/__pycache__/wsgi.cpython-36.pyc,, diff --git a/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/WHEEL b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/WHEEL new file mode 100644 index 0000000..8b701e9 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.33.6) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/top_level.txt b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/top_level.txt new file mode 100644 index 0000000..ddf99d3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref-3.2.3.dist-info/top_level.txt @@ -0,0 +1 @@ +asgiref diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__init__.py b/dbportal/lib/python3.6/site-packages/asgiref/__init__.py new file mode 100644 index 0000000..3348d7f --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/__init__.py @@ -0,0 +1 @@ +__version__ = "3.2.3" diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/__init__.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..7cf1b2d Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/__init__.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/compatibility.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/compatibility.cpython-36.pyc new file mode 100644 index 0000000..ff72fca Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/compatibility.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/current_thread_executor.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/current_thread_executor.cpython-36.pyc new file mode 100644 index 0000000..dc93016 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/current_thread_executor.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/local.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/local.cpython-36.pyc new file mode 100644 index 0000000..0196aba Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/local.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/server.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/server.cpython-36.pyc new file mode 100644 index 0000000..a4c54da Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/server.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/sync.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/sync.cpython-36.pyc new file mode 100644 index 0000000..a9e66e3 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/sync.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/testing.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/testing.cpython-36.pyc new file mode 100644 index 0000000..782e848 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/testing.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/timeout.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/timeout.cpython-36.pyc new file mode 100644 index 0000000..c9a570a Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/timeout.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/wsgi.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/wsgi.cpython-36.pyc new file mode 100644 index 0000000..dc12c57 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/asgiref/__pycache__/wsgi.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/asgiref/compatibility.py b/dbportal/lib/python3.6/site-packages/asgiref/compatibility.py new file mode 100644 index 0000000..eccaee0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/compatibility.py @@ -0,0 +1,47 @@ +import asyncio +import inspect + + +def is_double_callable(application): + """ + Tests to see if an application is a legacy-style (double-callable) application. + """ + # Look for a hint on the object first + if getattr(application, "_asgi_single_callable", False): + return False + if getattr(application, "_asgi_double_callable", False): + return True + # Uninstanted classes are double-callable + if inspect.isclass(application): + return True + # Instanted classes depend on their __call__ + if hasattr(application, "__call__"): + # We only check to see if its __call__ is a coroutine function - + # if it's not, it still might be a coroutine function itself. + if asyncio.iscoroutinefunction(application.__call__): + return False + # Non-classes we just check directly + return not asyncio.iscoroutinefunction(application) + + +def double_to_single_callable(application): + """ + Transforms a double-callable ASGI application into a single-callable one. + """ + + async def new_application(scope, receive, send): + instance = application(scope) + return await instance(receive, send) + + return new_application + + +def guarantee_single_callable(application): + """ + Takes either a single- or double-callable application and always returns it + in single-callable style. Use this to add backwards compatibility for ASGI + 2.0 applications to your server/test harness/etc. + """ + if is_double_callable(application): + application = double_to_single_callable(application) + return application diff --git a/dbportal/lib/python3.6/site-packages/asgiref/current_thread_executor.py b/dbportal/lib/python3.6/site-packages/asgiref/current_thread_executor.py new file mode 100644 index 0000000..2955ff0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/current_thread_executor.py @@ -0,0 +1,86 @@ +import queue +import threading +import time +from concurrent.futures import Executor, Future + + +class _WorkItem(object): + """ + Represents an item needing to be run in the executor. + Copied from ThreadPoolExecutor (but it's private, so we're not going to rely on importing it) + """ + + def __init__(self, future, fn, args, kwargs): + self.future = future + self.fn = fn + self.args = args + self.kwargs = kwargs + + def run(self): + if not self.future.set_running_or_notify_cancel(): + return + try: + result = self.fn(*self.args, **self.kwargs) + except BaseException as exc: + self.future.set_exception(exc) + # Break a reference cycle with the exception 'exc' + self = None + else: + self.future.set_result(result) + + +class CurrentThreadExecutor(Executor): + """ + An Executor that actually runs code in the thread it is instantiated in. + Passed to other threads running async code, so they can run sync code in + the thread they came from. + """ + + def __init__(self): + self._work_thread = threading.current_thread() + self._work_queue = queue.Queue() + self._broken = False + + def run_until_future(self, future): + """ + Runs the code in the work queue until a result is available from the future. + Should be run from the thread the executor is initialised in. + """ + # Check we're in the right thread + if threading.current_thread() != self._work_thread: + raise RuntimeError( + "You cannot run CurrentThreadExecutor from a different thread" + ) + # Keep getting work items and checking the future + try: + while True: + # Get a work item and run it + try: + work_item = self._work_queue.get(block=False) + except queue.Empty: + # See if the future is done (we only exit if the work queue is empty) + if future.done(): + return + # Prevent hot-looping on nothing + time.sleep(0.001) + else: + work_item.run() + del work_item + finally: + self._broken = True + + def submit(self, fn, *args, **kwargs): + # Check they're not submitting from the same thread + if threading.current_thread() == self._work_thread: + raise RuntimeError( + "You cannot submit onto CurrentThreadExecutor from its own thread" + ) + # Check they're not too late or the executor errored + if self._broken: + raise RuntimeError("CurrentThreadExecutor already quit or is broken") + # Add to work queue + f = Future() + work_item = _WorkItem(f, fn, args, kwargs) + self._work_queue.put(work_item) + # Return the future + return f diff --git a/dbportal/lib/python3.6/site-packages/asgiref/local.py b/dbportal/lib/python3.6/site-packages/asgiref/local.py new file mode 100644 index 0000000..a3f7cef --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/local.py @@ -0,0 +1,111 @@ +import asyncio +import sys +import threading +import time + + +class Local: + """ + A drop-in replacement for threading.locals that also works with asyncio + Tasks (via the current_task asyncio method), and passes locals through + sync_to_async and async_to_sync. + + Specifically: + - Locals work per-coroutine on any thread not spawned using asgiref + - Locals work per-thread on any thread not spawned using asgiref + - Locals are shared with the parent coroutine when using sync_to_async + - Locals are shared with the parent thread when using async_to_sync + (and if that thread was launched using sync_to_async, with its parent + coroutine as well, with this working for indefinite levels of nesting) + + Set thread_critical to True to not allow locals to pass from an async Task + to a thread it spawns. This is needed for code that truly needs + thread-safety, as opposed to things used for helpful context (e.g. sqlite + does not like being called from a different thread to the one it is from). + Thread-critical code will still be differentiated per-Task within a thread + as it is expected it does not like concurrent access. + + This doesn't use contextvars as it needs to support 3.6. Once it can support + 3.7 only, we can then reimplement the storage more nicely. + """ + + CLEANUP_INTERVAL = 60 # seconds + + def __init__(self, thread_critical=False): + self._storage = {} + self._last_cleanup = time.time() + self._clean_lock = threading.Lock() + self._thread_critical = thread_critical + + def _get_context_id(self): + """ + Get the ID we should use for looking up variables + """ + # Prevent a circular reference + from .sync import AsyncToSync, SyncToAsync + + # First, pull the current task if we can + context_id = SyncToAsync.get_current_task() + # OK, let's try for a thread ID + if context_id is None: + context_id = threading.current_thread() + # If we're thread-critical, we stop here, as we can't share contexts. + if self._thread_critical: + return context_id + # Now, take those and see if we can resolve them through the launch maps + for i in range(sys.getrecursionlimit()): + try: + if isinstance(context_id, threading.Thread): + # Threads have a source task in SyncToAsync + context_id = SyncToAsync.launch_map[context_id] + else: + # Tasks have a source thread in AsyncToSync + context_id = AsyncToSync.launch_map[context_id] + except KeyError: + break + else: + # Catch infinite loops (they happen if you are screwing around + # with AsyncToSync implementations) + raise RuntimeError("Infinite launch_map loops") + return context_id + + def _cleanup(self): + """ + Cleans up any references to dead threads or tasks + """ + for key in list(self._storage.keys()): + if isinstance(key, threading.Thread): + if not key.is_alive(): + del self._storage[key] + elif isinstance(key, asyncio.Task): + if key.done(): + del self._storage[key] + self._last_cleanup = time.time() + + def _maybe_cleanup(self): + """ + Cleans up if enough time has passed + """ + if time.time() - self._last_cleanup > self.CLEANUP_INTERVAL: + with self._clean_lock: + self._cleanup() + + def __getattr__(self, key): + context_id = self._get_context_id() + if key in self._storage.get(context_id, {}): + return self._storage[context_id][key] + else: + raise AttributeError("%r object has no attribute %r" % (self, key)) + + def __setattr__(self, key, value): + if key in ("_storage", "_last_cleanup", "_clean_lock", "_thread_critical"): + return super().__setattr__(key, value) + self._maybe_cleanup() + self._storage.setdefault(self._get_context_id(), {})[key] = value + + def __delattr__(self, key): + context_id = self._get_context_id() + if key in self._storage.get(context_id, {}): + del self._storage[context_id][key] + else: + raise AttributeError("%r object has no attribute %r" % (self, key)) diff --git a/dbportal/lib/python3.6/site-packages/asgiref/server.py b/dbportal/lib/python3.6/site-packages/asgiref/server.py new file mode 100644 index 0000000..9fd2e0c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/server.py @@ -0,0 +1,154 @@ +import asyncio +import logging +import time +import traceback + +logger = logging.getLogger(__name__) + + +class StatelessServer: + """ + Base server class that handles basic concepts like application instance + creation/pooling, exception handling, and similar, for stateless protocols + (i.e. ones without actual incoming connections to the process) + + Your code should override the handle() method, doing whatever it needs to, + and calling get_or_create_application_instance with a unique `scope_id` + and `scope` for the scope it wants to get. + + If an application instance is found with the same `scope_id`, you are + given its input queue, otherwise one is made for you with the scope provided + and you are given that fresh new input queue. Either way, you should do + something like: + + input_queue = self.get_or_create_application_instance( + "user-123456", + {"type": "testprotocol", "user_id": "123456", "username": "andrew"}, + ) + input_queue.put_nowait(message) + + If you try and create an application instance and there are already + `max_application` instances, the oldest/least recently used one will be + reclaimed and shut down to make space. + + Application coroutines that error will be found periodically (every 100ms + by default) and have their exceptions printed to the console. Override + application_exception() if you want to do more when this happens. + + If you override run(), make sure you handle things like launching the + application checker. + """ + + application_checker_interval = 0.1 + + def __init__(self, application, max_applications=1000): + # Parameters + self.application = application + self.max_applications = max_applications + # Initialisation + self.application_instances = {} + + ### Mainloop and handling + + def run(self): + """ + Runs the asyncio event loop with our handler loop. + """ + event_loop = asyncio.get_event_loop() + asyncio.ensure_future(self.application_checker()) + try: + event_loop.run_until_complete(self.handle()) + except KeyboardInterrupt: + logger.info("Exiting due to Ctrl-C/interrupt") + + async def handle(self): + raise NotImplementedError("You must implement handle()") + + async def application_send(self, scope, message): + """ + Receives outbound sends from applications and handles them. + """ + raise NotImplementedError("You must implement application_send()") + + ### Application instance management + + def get_or_create_application_instance(self, scope_id, scope): + """ + Creates an application instance and returns its queue. + """ + if scope_id in self.application_instances: + self.application_instances[scope_id]["last_used"] = time.time() + return self.application_instances[scope_id]["input_queue"] + # See if we need to delete an old one + while len(self.application_instances) > self.max_applications: + self.delete_oldest_application_instance() + # Make an instance of the application + input_queue = asyncio.Queue() + application_instance = self.application(scope=scope) + # Run it, and stash the future for later checking + future = asyncio.ensure_future( + application_instance( + receive=input_queue.get, + send=lambda message: self.application_send(scope, message), + ) + ) + self.application_instances[scope_id] = { + "input_queue": input_queue, + "future": future, + "scope": scope, + "last_used": time.time(), + } + return input_queue + + def delete_oldest_application_instance(self): + """ + Finds and deletes the oldest application instance + """ + oldest_time = min( + details["last_used"] for details in self.application_instances.values() + ) + for scope_id, details in self.application_instances.items(): + if details["last_used"] == oldest_time: + self.delete_application_instance(scope_id) + # Return to make sure we only delete one in case two have + # the same oldest time + return + + def delete_application_instance(self, scope_id): + """ + Removes an application instance (makes sure its task is stopped, + then removes it from the current set) + """ + details = self.application_instances[scope_id] + del self.application_instances[scope_id] + if not details["future"].done(): + details["future"].cancel() + + async def application_checker(self): + """ + Goes through the set of current application instance Futures and cleans up + any that are done/prints exceptions for any that errored. + """ + while True: + await asyncio.sleep(self.application_checker_interval) + for scope_id, details in list(self.application_instances.items()): + if details["future"].done(): + exception = details["future"].exception() + if exception: + await self.application_exception(exception, details) + try: + del self.application_instances[scope_id] + except KeyError: + # Exception handling might have already got here before us. That's fine. + pass + + async def application_exception(self, exception, application_details): + """ + Called whenever an application coroutine has an exception. + """ + logging.error( + "Exception inside application: %s\n%s%s", + exception, + "".join(traceback.format_tb(exception.__traceback__)), + " {}".format(exception), + ) diff --git a/dbportal/lib/python3.6/site-packages/asgiref/sync.py b/dbportal/lib/python3.6/site-packages/asgiref/sync.py new file mode 100644 index 0000000..53f1900 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/sync.py @@ -0,0 +1,304 @@ +import asyncio +import asyncio.coroutines +import functools +import os +import sys +import threading +from concurrent.futures import Future, ThreadPoolExecutor + +from .current_thread_executor import CurrentThreadExecutor +from .local import Local + +try: + import contextvars # Python 3.7+ only. +except ImportError: + contextvars = None + + +class AsyncToSync: + """ + Utility class which turns an awaitable that only works on the thread with + the event loop into a synchronous callable that works in a subthread. + + If the call stack contains an async loop, the code runs there. + Otherwise, the code runs in a new loop in a new thread. + + Either way, this thread then pauses and waits to run any thread_sensitive + code called from further down the call stack using SyncToAsync, before + finally exiting once the async task returns. + """ + + # Maps launched Tasks to the threads that launched them (for locals impl) + launch_map = {} + + # Keeps track of which CurrentThreadExecutor to use. This uses an asgiref + # Local, not a threadlocal, so that tasks can work out what their parent used. + executors = Local() + + def __init__(self, awaitable, force_new_loop=False): + self.awaitable = awaitable + if force_new_loop: + # They have asked that we always run in a new sub-loop. + self.main_event_loop = None + else: + try: + self.main_event_loop = asyncio.get_event_loop() + except RuntimeError: + # There's no event loop in this thread. Look for the threadlocal if + # we're inside SyncToAsync + self.main_event_loop = getattr( + SyncToAsync.threadlocal, "main_event_loop", None + ) + + def __call__(self, *args, **kwargs): + # You can't call AsyncToSync from a thread with a running event loop + try: + event_loop = asyncio.get_event_loop() + except RuntimeError: + pass + else: + if event_loop.is_running(): + raise RuntimeError( + "You cannot use AsyncToSync in the same thread as an async event loop - " + "just await the async function directly." + ) + # Make a future for the return information + call_result = Future() + # Get the source thread + source_thread = threading.current_thread() + # Make a CurrentThreadExecutor we'll use to idle in this thread - we + # need one for every sync frame, even if there's one above us in the + # same thread. + if hasattr(self.executors, "current"): + old_current_executor = self.executors.current + else: + old_current_executor = None + current_executor = CurrentThreadExecutor() + self.executors.current = current_executor + # Use call_soon_threadsafe to schedule a synchronous callback on the + # main event loop's thread if it's there, otherwise make a new loop + # in this thread. + try: + if not (self.main_event_loop and self.main_event_loop.is_running()): + # Make our own event loop - in a new thread - and run inside that. + loop = asyncio.new_event_loop() + loop_executor = ThreadPoolExecutor(max_workers=1) + loop_future = loop_executor.submit( + self._run_event_loop, + loop, + self.main_wrap( + args, kwargs, call_result, source_thread, sys.exc_info() + ), + ) + if current_executor: + # Run the CurrentThreadExecutor until the future is done + current_executor.run_until_future(loop_future) + # Wait for future and/or allow for exception propagation + loop_future.result() + else: + # Call it inside the existing loop + self.main_event_loop.call_soon_threadsafe( + self.main_event_loop.create_task, + self.main_wrap( + args, kwargs, call_result, source_thread, sys.exc_info() + ), + ) + if current_executor: + # Run the CurrentThreadExecutor until the future is done + current_executor.run_until_future(call_result) + finally: + # Clean up any executor we were running + if hasattr(self.executors, "current"): + del self.executors.current + if old_current_executor: + self.executors.current = old_current_executor + # Wait for results from the future. + return call_result.result() + + def _run_event_loop(self, loop, coro): + """ + Runs the given event loop (designed to be called in a thread). + """ + asyncio.set_event_loop(loop) + try: + loop.run_until_complete(coro) + finally: + try: + if hasattr(loop, "shutdown_asyncgens"): + loop.run_until_complete(loop.shutdown_asyncgens()) + finally: + loop.close() + asyncio.set_event_loop(self.main_event_loop) + + def __get__(self, parent, objtype): + """ + Include self for methods + """ + func = functools.partial(self.__call__, parent) + return functools.update_wrapper(func, self.awaitable) + + async def main_wrap(self, args, kwargs, call_result, source_thread, exc_info): + """ + Wraps the awaitable with something that puts the result into the + result/exception future. + """ + current_task = SyncToAsync.get_current_task() + self.launch_map[current_task] = source_thread + try: + # If we have an exception, run the function inside the except block + # after raising it so exc_info is correctly populated. + if exc_info[1]: + try: + raise exc_info[1] + except: + result = await self.awaitable(*args, **kwargs) + else: + result = await self.awaitable(*args, **kwargs) + except Exception as e: + call_result.set_exception(e) + else: + call_result.set_result(result) + finally: + del self.launch_map[current_task] + + +class SyncToAsync: + """ + Utility class which turns a synchronous callable into an awaitable that + runs in a threadpool. It also sets a threadlocal inside the thread so + calls to AsyncToSync can escape it. + + If thread_sensitive is passed, the code will run in the same thread as any + outer code. This is needed for underlying Python code that is not + threadsafe (for example, code which handles SQLite database connections). + + If the outermost program is async (i.e. SyncToAsync is outermost), then + this will be a dedicated single sub-thread that all sync code runs in, + one after the other. If the outermost program is sync (i.e. AsyncToSync is + outermost), this will just be the main thread. This is achieved by idling + with a CurrentThreadExecutor while AsyncToSync is blocking its sync parent, + rather than just blocking. + """ + + # If they've set ASGI_THREADS, update the default asyncio executor for now + if "ASGI_THREADS" in os.environ: + loop = asyncio.get_event_loop() + loop.set_default_executor( + ThreadPoolExecutor(max_workers=int(os.environ["ASGI_THREADS"])) + ) + + # Maps launched threads to the coroutines that spawned them + launch_map = {} + + # Storage for main event loop references + threadlocal = threading.local() + + # Single-thread executor for thread-sensitive code + single_thread_executor = ThreadPoolExecutor(max_workers=1) + + def __init__(self, func, thread_sensitive=False): + self.func = func + self._thread_sensitive = thread_sensitive + self._is_coroutine = asyncio.coroutines._is_coroutine + try: + self.__self__ = func.__self__ + except AttributeError: + pass + + async def __call__(self, *args, **kwargs): + loop = asyncio.get_event_loop() + + # Work out what thread to run the code in + if self._thread_sensitive: + if hasattr(AsyncToSync.executors, "current"): + # If we have a parent sync thread above somewhere, use that + executor = AsyncToSync.executors.current + else: + # Otherwise, we run it in a fixed single thread + executor = self.single_thread_executor + else: + executor = None # Use default + + if contextvars is not None: + context = contextvars.copy_context() + child = functools.partial(self.func, *args, **kwargs) + func = context.run + args = (child,) + kwargs = {} + else: + func = self.func + + # Run the code in the right thread + future = loop.run_in_executor( + executor, + functools.partial( + self.thread_handler, + loop, + self.get_current_task(), + sys.exc_info(), + func, + *args, + **kwargs + ), + ) + return await asyncio.wait_for(future, timeout=None) + + def __get__(self, parent, objtype): + """ + Include self for methods + """ + return functools.partial(self.__call__, parent) + + def thread_handler(self, loop, source_task, exc_info, func, *args, **kwargs): + """ + Wraps the sync application with exception handling. + """ + # Set the threadlocal for AsyncToSync + self.threadlocal.main_event_loop = loop + # Set the task mapping (used for the locals module) + current_thread = threading.current_thread() + if AsyncToSync.launch_map.get(source_task) == current_thread: + # Our parent task was launched from this same thread, so don't make + # a launch map entry - let it shortcut over us! (and stop infinite loops) + parent_set = False + else: + self.launch_map[current_thread] = source_task + parent_set = True + # Run the function + try: + # If we have an exception, run the function inside the except block + # after raising it so exc_info is correctly populated. + if exc_info[1]: + try: + raise exc_info[1] + except: + return func(*args, **kwargs) + else: + return func(*args, **kwargs) + finally: + # Only delete the launch_map parent if we set it, otherwise it is + # from someone else. + if parent_set: + del self.launch_map[current_thread] + + @staticmethod + def get_current_task(): + """ + Cross-version implementation of asyncio.current_task() + + Returns None if there is no task. + """ + try: + if hasattr(asyncio, "current_task"): + # Python 3.7 and up + return asyncio.current_task() + else: + # Python 3.6 + return asyncio.Task.current_task() + except RuntimeError: + return None + + +# Lowercase is more sensible for most things +sync_to_async = SyncToAsync +async_to_sync = AsyncToSync diff --git a/dbportal/lib/python3.6/site-packages/asgiref/testing.py b/dbportal/lib/python3.6/site-packages/asgiref/testing.py new file mode 100644 index 0000000..6624317 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/testing.py @@ -0,0 +1,97 @@ +import asyncio +import time + +from .compatibility import guarantee_single_callable +from .timeout import timeout as async_timeout + + +class ApplicationCommunicator: + """ + Runs an ASGI application in a test mode, allowing sending of + messages to it and retrieval of messages it sends. + """ + + def __init__(self, application, scope): + self.application = guarantee_single_callable(application) + self.scope = scope + self.input_queue = asyncio.Queue() + self.output_queue = asyncio.Queue() + self.future = asyncio.ensure_future( + self.application(scope, self.input_queue.get, self.output_queue.put) + ) + + async def wait(self, timeout=1): + """ + Waits for the application to stop itself and returns any exceptions. + """ + try: + async with async_timeout(timeout): + try: + await self.future + self.future.result() + except asyncio.CancelledError: + pass + finally: + if not self.future.done(): + self.future.cancel() + try: + await self.future + except asyncio.CancelledError: + pass + + def stop(self, exceptions=True): + if not self.future.done(): + self.future.cancel() + elif exceptions: + # Give a chance to raise any exceptions + self.future.result() + + def __del__(self): + # Clean up on deletion + try: + self.stop(exceptions=False) + except RuntimeError: + # Event loop already stopped + pass + + async def send_input(self, message): + """ + Sends a single message to the application + """ + # Give it the message + await self.input_queue.put(message) + + async def receive_output(self, timeout=1): + """ + Receives a single message from the application, with optional timeout. + """ + # Make sure there's not an exception to raise from the task + if self.future.done(): + self.future.result() + # Wait and receive the message + try: + async with async_timeout(timeout): + return await self.output_queue.get() + except asyncio.TimeoutError as e: + # See if we have another error to raise inside + if self.future.done(): + self.future.result() + else: + self.future.cancel() + try: + await self.future + except asyncio.CancelledError: + pass + raise e + + async def receive_nothing(self, timeout=0.1, interval=0.01): + """ + Checks that there is no message to receive in the given time. + """ + # `interval` has precedence over `timeout` + start = time.monotonic() + while time.monotonic() - start < timeout: + if not self.output_queue.empty(): + return False + await asyncio.sleep(interval) + return self.output_queue.empty() diff --git a/dbportal/lib/python3.6/site-packages/asgiref/timeout.py b/dbportal/lib/python3.6/site-packages/asgiref/timeout.py new file mode 100644 index 0000000..0ff5892 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/timeout.py @@ -0,0 +1,128 @@ +# This code is originally sourced from the aio-libs project "async_timeout", +# under the Apache 2.0 license. You may see the original project at +# https://github.com/aio-libs/async-timeout + +# It is vendored here to reduce chain-dependencies on this library, and +# modified slightly to remove some features we don't use. + + +import asyncio +import sys +from types import TracebackType +from typing import Any, Optional, Type # noqa + +PY_37 = sys.version_info >= (3, 7) + + +class timeout: + """timeout context manager. + + Useful in cases when you want to apply timeout logic around block + of code or in cases when asyncio.wait_for is not suitable. For example: + + >>> with timeout(0.001): + ... async with aiohttp.get('https://github.com') as r: + ... await r.text() + + + timeout - value in seconds or None to disable timeout logic + loop - asyncio compatible event loop + """ + + def __init__( + self, + timeout: Optional[float], + *, + loop: Optional[asyncio.AbstractEventLoop] = None + ) -> None: + self._timeout = timeout + if loop is None: + loop = asyncio.get_event_loop() + self._loop = loop + self._task = None # type: Optional[asyncio.Task[Any]] + self._cancelled = False + self._cancel_handler = None # type: Optional[asyncio.Handle] + self._cancel_at = None # type: Optional[float] + + def __enter__(self) -> "timeout": + return self._do_enter() + + def __exit__( + self, + exc_type: Type[BaseException], + exc_val: BaseException, + exc_tb: TracebackType, + ) -> Optional[bool]: + self._do_exit(exc_type) + return None + + async def __aenter__(self) -> "timeout": + return self._do_enter() + + async def __aexit__( + self, + exc_type: Type[BaseException], + exc_val: BaseException, + exc_tb: TracebackType, + ) -> None: + self._do_exit(exc_type) + + @property + def expired(self) -> bool: + return self._cancelled + + @property + def remaining(self) -> Optional[float]: + if self._cancel_at is not None: + return max(self._cancel_at - self._loop.time(), 0.0) + else: + return None + + def _do_enter(self) -> "timeout": + # Support Tornado 5- without timeout + # Details: https://github.com/python/asyncio/issues/392 + if self._timeout is None: + return self + + self._task = current_task(self._loop) + if self._task is None: + raise RuntimeError( + "Timeout context manager should be used " "inside a task" + ) + + if self._timeout <= 0: + self._loop.call_soon(self._cancel_task) + return self + + self._cancel_at = self._loop.time() + self._timeout + self._cancel_handler = self._loop.call_at(self._cancel_at, self._cancel_task) + return self + + def _do_exit(self, exc_type: Type[BaseException]) -> None: + if exc_type is asyncio.CancelledError and self._cancelled: + self._cancel_handler = None + self._task = None + raise asyncio.TimeoutError + if self._timeout is not None and self._cancel_handler is not None: + self._cancel_handler.cancel() + self._cancel_handler = None + self._task = None + return None + + def _cancel_task(self) -> None: + if self._task is not None: + self._task.cancel() + self._cancelled = True + + +def current_task(loop: asyncio.AbstractEventLoop) -> "asyncio.Task[Any]": + if PY_37: + task = asyncio.current_task(loop=loop) # type: ignore + else: + task = asyncio.Task.current_task(loop=loop) + if task is None: + # this should be removed, tokio must use register_task and family API + if hasattr(loop, "current_task"): + task = loop.current_task() # type: ignore + + return task diff --git a/dbportal/lib/python3.6/site-packages/asgiref/wsgi.py b/dbportal/lib/python3.6/site-packages/asgiref/wsgi.py new file mode 100644 index 0000000..7155ab2 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/asgiref/wsgi.py @@ -0,0 +1,145 @@ +from io import BytesIO +from tempfile import SpooledTemporaryFile + +from asgiref.sync import AsyncToSync, sync_to_async + + +class WsgiToAsgi: + """ + Wraps a WSGI application to make it into an ASGI application. + """ + + def __init__(self, wsgi_application): + self.wsgi_application = wsgi_application + + async def __call__(self, scope, receive, send): + """ + ASGI application instantiation point. + We return a new WsgiToAsgiInstance here with the WSGI app + and the scope, ready to respond when it is __call__ed. + """ + await WsgiToAsgiInstance(self.wsgi_application)(scope, receive, send) + + +class WsgiToAsgiInstance: + """ + Per-socket instance of a wrapped WSGI application + """ + + def __init__(self, wsgi_application): + self.wsgi_application = wsgi_application + self.response_started = False + + async def __call__(self, scope, receive, send): + if scope["type"] != "http": + raise ValueError("WSGI wrapper received a non-HTTP scope") + self.scope = scope + with SpooledTemporaryFile(max_size=65536) as body: + # Alright, wait for the http.request messages + while True: + message = await receive() + if message["type"] != "http.request": + raise ValueError("WSGI wrapper received a non-HTTP-request message") + body.write(message.get("body", b"")) + if not message.get("more_body"): + break + body.seek(0) + # Wrap send so it can be called from the subthread + self.sync_send = AsyncToSync(send) + # Call the WSGI app + await self.run_wsgi_app(body) + + def build_environ(self, scope, body): + """ + Builds a scope and request body into a WSGI environ object. + """ + environ = { + "REQUEST_METHOD": scope["method"], + "SCRIPT_NAME": scope.get("root_path", ""), + "PATH_INFO": scope["path"], + "QUERY_STRING": scope["query_string"].decode("ascii"), + "SERVER_PROTOCOL": "HTTP/%s" % scope["http_version"], + "wsgi.version": (1, 0), + "wsgi.url_scheme": scope.get("scheme", "http"), + "wsgi.input": body, + "wsgi.errors": BytesIO(), + "wsgi.multithread": True, + "wsgi.multiprocess": True, + "wsgi.run_once": False, + } + # Get server name and port - required in WSGI, not in ASGI + if "server" in scope: + environ["SERVER_NAME"] = scope["server"][0] + environ["SERVER_PORT"] = str(scope["server"][1]) + else: + environ["SERVER_NAME"] = "localhost" + environ["SERVER_PORT"] = "80" + + if "client" in scope: + environ["REMOTE_ADDR"] = scope["client"][0] + + # Go through headers and make them into environ entries + for name, value in self.scope.get("headers", []): + name = name.decode("latin1") + if name == "content-length": + corrected_name = "CONTENT_LENGTH" + elif name == "content-type": + corrected_name = "CONTENT_TYPE" + else: + corrected_name = "HTTP_%s" % name.upper().replace("-", "_") + # HTTPbis say only ASCII chars are allowed in headers, but we latin1 just in case + value = value.decode("latin1") + if corrected_name in environ: + value = environ[corrected_name] + "," + value + environ[corrected_name] = value + return environ + + def start_response(self, status, response_headers, exc_info=None): + """ + WSGI start_response callable. + """ + # Don't allow re-calling once response has begun + if self.response_started: + raise exc_info[1].with_traceback(exc_info[2]) + # Don't allow re-calling without exc_info + if hasattr(self, "response_start") and exc_info is None: + raise ValueError( + "You cannot call start_response a second time without exc_info" + ) + # Extract status code + status_code, _ = status.split(" ", 1) + status_code = int(status_code) + # Extract headers + headers = [ + (name.lower().encode("ascii"), value.encode("ascii")) + for name, value in response_headers + ] + # Build and send response start message. + self.response_start = { + "type": "http.response.start", + "status": status_code, + "headers": headers, + } + + @sync_to_async + def run_wsgi_app(self, body): + """ + Called in a subthread to run the WSGI app. We encapsulate like + this so that the start_response callable is called in the same thread. + """ + # Translate the scope and incoming request body into a WSGI environ + environ = self.build_environ(self.scope, body) + # Run the WSGI app + for output in self.wsgi_application(environ, self.start_response): + # If this is the first response, include the response headers + if not self.response_started: + self.response_started = True + self.sync_send(self.response_start) + self.sync_send( + {"type": "http.response.body", "body": output, "more_body": True} + ) + # Close connection + if not self.response_started: + self.response_started = True + self.sync_send(self.response_start) + self.sync_send({"type": "http.response.body"}) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__init__.py b/dbportal/lib/python3.6/site-packages/crispy_forms/__init__.py new file mode 100644 index 0000000..030a66a --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +__version__ = '1.8.1' diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/__init__.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..7e44a3a Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/__init__.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/base.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/base.cpython-36.pyc new file mode 100644 index 0000000..8fad583 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/base.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/bootstrap.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/bootstrap.cpython-36.pyc new file mode 100644 index 0000000..a51b664 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/bootstrap.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/compatibility.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/compatibility.cpython-36.pyc new file mode 100644 index 0000000..4d57a12 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/compatibility.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/exceptions.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/exceptions.cpython-36.pyc new file mode 100644 index 0000000..75fcd33 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/exceptions.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/helper.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/helper.cpython-36.pyc new file mode 100644 index 0000000..7cff02d Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/helper.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/layout.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/layout.cpython-36.pyc new file mode 100644 index 0000000..6962bb4 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/layout.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/layout_slice.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/layout_slice.cpython-36.pyc new file mode 100644 index 0000000..5aa24e6 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/layout_slice.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/utils.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/utils.cpython-36.pyc new file mode 100644 index 0000000..bc5d036 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/__pycache__/utils.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/base.py b/dbportal/lib/python3.6/site-packages/crispy_forms/base.py new file mode 100644 index 0000000..9d46f94 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/base.py @@ -0,0 +1,23 @@ + + +class KeepContext(object): + """ + Context manager that receives a `django.template.Context` instance and a list of keys + + Once the context manager is exited, it removes `keys` from the context, to avoid + side effects in later layout objects that may use the same context variables. + + Layout objects should use `extra_context` to introduce context variables, never + touch context object themselves, that could introduce side effects. + """ + def __init__(self, context, keys): + self.context = context + self.keys = keys + + def __enter__(self): + pass + + def __exit__(self, type, value, traceback): + for key in list(self.keys): + if key in self.context: + del self.context[key] diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/bootstrap.py b/dbportal/lib/python3.6/site-packages/crispy_forms/bootstrap.py new file mode 100644 index 0000000..55bd1fd --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/bootstrap.py @@ -0,0 +1,392 @@ +from __future__ import unicode_literals + +from random import randint + +from django.template import Template +from django.template.defaultfilters import slugify +from django.template.loader import render_to_string + +from .compatibility import text_type +from .layout import Div, Field, LayoutObject, TemplateNameMixin +from .utils import TEMPLATE_PACK, flatatt, render_field + + +class PrependedAppendedText(Field): + template = "%s/layout/prepended_appended_text.html" + + def __init__(self, field, prepended_text=None, appended_text=None, *args, **kwargs): + self.field = field + self.appended_text = appended_text + self.prepended_text = prepended_text + if 'active' in kwargs: + self.active = kwargs.pop('active') + + self.input_size = None + css_class = kwargs.get('css_class', '') + if 'input-lg' in css_class: + self.input_size = 'input-lg' + if 'input-sm' in css_class: + self.input_size = 'input-sm' + + super(PrependedAppendedText, self).__init__(field, *args, **kwargs) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, extra_context=None, **kwargs): + extra_context = extra_context.copy() if extra_context is not None else {} + extra_context.update({ + 'crispy_appended_text': self.appended_text, + 'crispy_prepended_text': self.prepended_text, + 'input_size': self.input_size, + 'active': getattr(self, "active", False) + }) + if hasattr(self, 'wrapper_class'): + extra_context['wrapper_class'] = self.wrapper_class + template = self.get_template_name(template_pack) + return render_field( + self.field, form, form_style, context, + template=template, attrs=self.attrs, + template_pack=template_pack, extra_context=extra_context, **kwargs + ) + + +class AppendedText(PrependedAppendedText): + def __init__(self, field, text, *args, **kwargs): + kwargs.pop('appended_text', None) + kwargs.pop('prepended_text', None) + self.text = text + super(AppendedText, self).__init__(field, appended_text=text, **kwargs) + + +class PrependedText(PrependedAppendedText): + def __init__(self, field, text, *args, **kwargs): + kwargs.pop('appended_text', None) + kwargs.pop('prepended_text', None) + self.text = text + super(PrependedText, self).__init__(field, prepended_text=text, **kwargs) + + +class FormActions(LayoutObject): + """ + Bootstrap layout object. It wraps fields in a
+ + Example:: + + FormActions( + HTML(Information Saved), + Submit('Save', 'Save', css_class='btn-primary') + ) + """ + template = "%s/layout/formactions.html" + + def __init__(self, *fields, **kwargs): + self.fields = list(fields) + self.template = kwargs.pop('template', self.template) + self.attrs = kwargs + if 'css_class' in self.attrs: + self.attrs['class'] = self.attrs.pop('css_class') + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + html = self.get_rendered_fields(form, form_style, context, template_pack, **kwargs) + template = self.get_template_name(template_pack) + context.update({ + 'formactions': self, + 'fields_output': html + }) + + return render_to_string(template, context.flatten()) + + def flat_attrs(self): + return flatatt(self.attrs) + + +class InlineCheckboxes(Field): + """ + Layout object for rendering checkboxes inline:: + + InlineCheckboxes('field_name') + """ + template = "%s/layout/checkboxselectmultiple_inline.html" + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + return super(InlineCheckboxes, self).render( + form, form_style, context, template_pack=template_pack, + extra_context={'inline_class': 'inline'} + ) + + +class InlineRadios(Field): + """ + Layout object for rendering radiobuttons inline:: + + InlineRadios('field_name') + """ + template = "%s/layout/radioselect_inline.html" + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + return super(InlineRadios, self).render( + form, form_style, context, template_pack=template_pack, + extra_context={'inline_class': 'inline'} + ) + + +class FieldWithButtons(Div): + template = '%s/layout/field_with_buttons.html' + field_template = '%s/field.html' + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, extra_context=None, **kwargs): + # We first render the buttons + field_template = self.field_template % template_pack + buttons = ''.join( + render_field( + field, form, form_style, context, + field_template, layout_object=self, + template_pack=template_pack, **kwargs + ) for field in self.fields[1:] + ) + + extra_context = {'div': self, 'buttons': buttons} + template = self.get_template_name(template_pack) + + if isinstance(self.fields[0], Field): + # FieldWithButtons(Field('field_name'), StrictButton("go")) + # We render the field passing its name and attributes + return render_field( + self.fields[0][0], form, form_style, context, + template, attrs=self.fields[0].attrs, + template_pack=template_pack, extra_context=extra_context, **kwargs + ) + else: + return render_field( + self.fields[0], form, form_style, context, template, + extra_context=extra_context, **kwargs + ) + + +class StrictButton(TemplateNameMixin): + """ + Layout object for rendering an HTML button:: + + Button("button content", css_class="extra") + """ + template = '%s/layout/button.html' + field_classes = 'btn' + + def __init__(self, content, **kwargs): + self.content = content + self.template = kwargs.pop('template', self.template) + + kwargs.setdefault('type', 'button') + + # We turn css_id and css_class into id and class + if 'css_id' in kwargs: + kwargs['id'] = kwargs.pop('css_id') + kwargs['class'] = self.field_classes + if 'css_class' in kwargs: + kwargs['class'] += " %s" % kwargs.pop('css_class') + + self.flat_attrs = flatatt(kwargs) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + self.content = Template(text_type(self.content)).render(context) + template = self.get_template_name(template_pack) + context.update({'button': self}) + + return render_to_string(template, context.flatten()) + + +class Container(Div): + """ + Base class used for `Tab` and `AccordionGroup`, represents a basic container concept + """ + css_class = "" + + def __init__(self, name, *fields, **kwargs): + super(Container, self).__init__(*fields, **kwargs) + self.template = kwargs.pop('template', self.template) + self.name = name + self._active_originally_included = "active" in kwargs + self.active = kwargs.pop("active", False) + if not self.css_id: + self.css_id = slugify(self.name) + + def __contains__(self, field_name): + """ + check if field_name is contained within tab. + """ + return field_name in map(lambda pointer: pointer[1], self.get_field_names()) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + if self.active: + if not 'active' in self.css_class: + self.css_class += ' active' + else: + self.css_class = self.css_class.replace('active', '') + return super(Container, self).render(form, form_style, context, template_pack) + + +class ContainerHolder(Div): + """ + Base class used for `TabHolder` and `Accordion`, groups containers + """ + def first_container_with_errors(self, errors): + """ + Returns the first container with errors, otherwise returns None. + """ + for tab in self.fields: + errors_here = any(error in tab for error in errors) + if errors_here: + return tab + return None + + def open_target_group_for_form(self, form): + """ + Makes sure that the first group that should be open is open. + This is either the first group with errors or the first group + in the container, unless that first group was originally set to + active=False. + """ + target = self.first_container_with_errors(form.errors.keys()) + if target is None: + target = self.fields[0] + if not getattr(target, '_active_originally_included', None): + target.active = True + return target + + target.active = True + return target + + +class Tab(Container): + """ + Tab object. It wraps fields in a div whose default class is "tab-pane" and + takes a name as first argument. Example:: + + Tab('tab_name', 'form_field_1', 'form_field_2', 'form_field_3') + """ + css_class = 'tab-pane' + link_template = '%s/layout/tab-link.html' + + def render_link(self, template_pack=TEMPLATE_PACK, **kwargs): + """ + Render the link for the tab-pane. It must be called after render so css_class is updated + with active if needed. + """ + link_template = self.link_template % template_pack + return render_to_string(link_template, {'link': self}) + + +class TabHolder(ContainerHolder): + """ + TabHolder object. It wraps Tab objects in a container. Requires bootstrap-tab.js:: + + TabHolder( + Tab('form_field_1', 'form_field_2'), + Tab('form_field_3') + ) + """ + template = '%s/layout/tab.html' + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + for tab in self.fields: + tab.active = False + + # Open the group that should be open. + self.open_target_group_for_form(form) + content = self.get_rendered_fields(form, form_style, context, template_pack) + links = ''.join(tab.render_link(template_pack) for tab in self.fields) + + context.update({ + 'tabs': self, + 'links': links, + 'content': content + }) + template = self.get_template_name(template_pack) + return render_to_string(template, context.flatten()) + + +class AccordionGroup(Container): + """ + Accordion Group (pane) object. It wraps given fields inside an accordion + tab. It takes accordion tab name as first argument:: + + AccordionGroup("group name", "form_field_1", "form_field_2") + """ + template = "%s/accordion-group.html" + data_parent = "" # accordion parent div id. + + +class Accordion(ContainerHolder): + """ + Accordion menu object. It wraps `AccordionGroup` objects in a container:: + + Accordion( + AccordionGroup("group name", "form_field_1", "form_field_2"), + AccordionGroup("another group name", "form_field") + ) + """ + template = "%s/accordion.html" + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + content = '' + + # accordion group needs the parent div id to set `data-parent` (I don't + # know why). This needs to be a unique id + if not self.css_id: + self.css_id = "-".join(["accordion", text_type(randint(1000, 9999))]) + + # Open the group that should be open. + self.open_target_group_for_form(form) + + for group in self.fields: + group.data_parent = self.css_id + content += render_field( + group, form, form_style, context, template_pack=template_pack, **kwargs + ) + + template = self.get_template_name(template_pack) + context.update({'accordion': self, 'content': content}) + + return render_to_string(template, context.flatten()) + + +class Alert(Div): + """ + `Alert` generates markup in the form of an alert dialog + + Alert(content='Warning! Best check yo self, you're not looking too good.') + """ + template = "%s/layout/alert.html" + css_class = "alert" + + def __init__(self, content, dismiss=True, block=False, **kwargs): + fields = [] + if block: + self.css_class += ' alert-block' + Div.__init__(self, *fields, **kwargs) + self.template = kwargs.pop('template', self.template) + self.content = content + self.dismiss = dismiss + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + template = self.get_template_name(template_pack) + context.update({'alert': self, 'content': self.content, 'dismiss': self.dismiss}) + + return render_to_string(template, context.flatten()) + + +class UneditableField(Field): + """ + Layout object for rendering fields as uneditable in bootstrap + + Example:: + + UneditableField('field_name', css_class="input-xlarge") + """ + template = "%s/layout/uneditable_input.html" + + def __init__(self, field, *args, **kwargs): + self.attrs = {'class': 'uneditable-input'} + super(UneditableField, self).__init__(field, *args, **kwargs) + + +class InlineField(Field): + template = "%s/layout/inline_field.html" diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/compatibility.py b/dbportal/lib/python3.6/site-packages/crispy_forms/compatibility.py new file mode 100644 index 0000000..b44f7e7 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/compatibility.py @@ -0,0 +1,24 @@ +import sys +import django + +try: + basestring +except: + basestring = str # Python3 + +PY2 = sys.version_info[0] == 2 +if not PY2: + text_type = str + binary_type = bytes + string_types = (str,) + integer_types = (int,) +else: + text_type = unicode + binary_type = str + string_types = basestring + integer_types = (int, long) + +if django.VERSION < (3, 0): + from django.utils.lru_cache import lru_cache +else: + from functools import lru_cache diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/exceptions.py b/dbportal/lib/python3.6/site-packages/crispy_forms/exceptions.py new file mode 100644 index 0000000..61b2382 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/exceptions.py @@ -0,0 +1,15 @@ +class CrispyError(Exception): + pass + + +class FormHelpersException(CrispyError): + """ + This is raised when building a form via helpers throws an error. + We want to catch form helper errors as soon as possible because + debugging templatetags is never fun. + """ + pass + + +class DynamicError(CrispyError): + pass diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/helper.py b/dbportal/lib/python3.6/site-packages/crispy_forms/helper.py new file mode 100644 index 0000000..9154788 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/helper.py @@ -0,0 +1,420 @@ +# -*- coding: utf-8 -*- +import re + +from django.utils.safestring import mark_safe + +from crispy_forms.compatibility import string_types +from crispy_forms.exceptions import FormHelpersException +from crispy_forms.layout import Layout +from crispy_forms.layout_slice import LayoutSlice +from crispy_forms.utils import ( + TEMPLATE_PACK, flatatt, list_difference, list_intersection, render_field, +) + +try: + from django.urls import reverse, NoReverseMatch +except ImportError: + # Django < 1.10 + from django.core.urlresolvers import reverse, NoReverseMatch + + +class DynamicLayoutHandler(object): + def _check_layout(self): + if self.layout is None: + raise FormHelpersException("You need to set a layout in your FormHelper") + + def _check_layout_and_form(self): + self._check_layout() + if self.form is None: + raise FormHelpersException("You need to pass a form instance to your FormHelper") + + def all(self): + """ + Returns all layout objects of first level of depth + """ + self._check_layout() + return LayoutSlice(self.layout, slice(0, len(self.layout.fields), 1)) + + def filter(self, *LayoutClasses, **kwargs): + """ + Returns a LayoutSlice pointing to layout objects of type `LayoutClass` + """ + self._check_layout() + max_level = kwargs.pop('max_level', 0) + greedy = kwargs.pop('greedy', False) + filtered_layout_objects = self.layout.get_layout_objects(LayoutClasses, max_level=max_level, greedy=greedy) + + return LayoutSlice(self.layout, filtered_layout_objects) + + def filter_by_widget(self, widget_type): + """ + Returns a LayoutSlice pointing to fields with widgets of `widget_type` + """ + self._check_layout_and_form() + layout_field_names = self.layout.get_field_names() + + # Let's filter all fields with widgets like widget_type + filtered_fields = [] + for pointer in layout_field_names: + if isinstance(self.form.fields[pointer[1]].widget, widget_type): + filtered_fields.append(pointer) + + return LayoutSlice(self.layout, filtered_fields) + + def exclude_by_widget(self, widget_type): + """ + Returns a LayoutSlice pointing to fields with widgets NOT matching `widget_type` + """ + self._check_layout_and_form() + layout_field_names = self.layout.get_field_names() + + # Let's exclude all fields with widgets like widget_type + filtered_fields = [] + for pointer in layout_field_names: + if not isinstance(self.form.fields[pointer[1]].widget, widget_type): + filtered_fields.append(pointer) + + return LayoutSlice(self.layout, filtered_fields) + + def __getitem__(self, key): + """ + Return a LayoutSlice that makes changes affect the current instance of the layout + and not a copy. + """ + # when key is a string containing the field name + if isinstance(key, string_types): + # Django templates access FormHelper attributes using dictionary [] operator + # This could be a helper['form_id'] access, not looking for a field + if hasattr(self, key): + return getattr(self, key) + + self._check_layout() + layout_field_names = self.layout.get_field_names() + + filtered_field = [] + for pointer in layout_field_names: + # There can be an empty pointer + if len(pointer) == 2 and pointer[1] == key: + filtered_field.append(pointer) + + return LayoutSlice(self.layout, filtered_field) + + return LayoutSlice(self.layout, key) + + def __setitem__(self, key, value): + self.layout[key] = value + + def __delitem__(self, key): + del self.layout.fields[key] + + def __len__(self): + if self.layout is not None: + return len(self.layout.fields) + else: + return 0 + + +class FormHelper(DynamicLayoutHandler): + """ + This class controls the form rendering behavior of the form passed to + the `{% crispy %}` tag. For doing so you will need to set its attributes + and pass the corresponding helper object to the tag:: + + {% crispy form form.helper %} + + Let's see what attributes you can set and what form behaviors they apply to: + + **form_method**: Specifies form method attribute. + You can set it to 'POST' or 'GET'. Defaults to 'POST' + + **form_action**: Applied to the form action attribute: + - Can be a named url in your URLconf that can be executed via the `{% url %}` template tag. \ + Example: 'show_my_profile'. In your URLconf you could have something like:: + + url(r'^show/profile/$', 'show_my_profile_view', name = 'show_my_profile') + + - It can simply point to a URL '/whatever/blabla/'. + + **form_id**: Generates a form id for dom identification. + If no id provided then no id attribute is created on the form. + + **form_class**: String containing separated CSS classes to be applied + to form class attribute. The form will always have by default + 'uniForm' class. + + **form_group_wrapper_class**: String containing separated CSS classes to be applied + to each row of inputs. + + **form_tag**: It specifies if
tags should be rendered when using a Layout. + If set to False it renders the form without the
tags. Defaults to True. + + **form_error_title**: If a form has `non_field_errors` to display, they + are rendered in a div. You can set title's div with this attribute. + Example: "Oooops!" or "Form Errors" + + **formset_error_title**: If a formset has `non_form_errors` to display, they + are rendered in a div. You can set title's div with this attribute. + + **form_style**: Uni-form has two built in different form styles. You can choose + your favorite. This can be set to "default" or "inline". Defaults to "default". + + **include_media**: Whether to automatically include form media. Set to False if + you want to manually include form media outside the form. Defaults to True. + + Public Methods: + + **add_input(input)**: You can add input buttons using this method. Inputs + added using this method will be rendered at the end of the form/formset. + + **add_layout(layout)**: You can add a `Layout` object to `FormHelper`. The Layout + specifies in a simple, clean and DRY way how the form fields should be rendered. + You can wrap fields, order them, customize pretty much anything in the form. + + Best way to add a helper to a form is adding a property named helper to the form + that returns customized `FormHelper` object:: + + from crispy_forms.helper import FormHelper + from crispy_forms.layout import Submit + + class MyForm(forms.Form): + title = forms.CharField(_("Title")) + + @property + def helper(self): + helper = FormHelper() + helper.form_id = 'this-form-rocks' + helper.form_class = 'search' + helper.add_input(Submit('save', 'save')) + [...] + return helper + + You can use it in a template doing:: + + {% load crispy_forms_tags %} + {% crispy form %} + """ + _form_method = 'post' + _form_action = '' + _form_style = 'default' + form = None + form_id = '' + form_class = '' + form_group_wrapper_class = '' + layout = None + form_tag = True + form_error_title = None + formset_error_title = None + form_show_errors = True + render_unmentioned_fields = False + render_hidden_fields = False + render_required_fields = False + _help_text_inline = False + _error_text_inline = True + html5_required = False + form_show_labels = True + template = None + field_template = None + disable_csrf = False + use_custom_control = True + label_class = '' + field_class = '' + include_media = True + + def __init__(self, form=None): + self.attrs = {} + self.inputs = [] + + if form is not None: + self.form = form + self.layout = self.build_default_layout(form) + + def build_default_layout(self, form): + return Layout(*form.fields.keys()) + + @property + def form_method(self): + return self._form_method + + @form_method.setter + def form_method(self, method): + if method.lower() not in ('get', 'post'): + raise FormHelpersException('Only GET and POST are valid in the \ + form_method helper attribute') + + self._form_method = method.lower() + + @property + def form_action(self): + try: + return reverse(self._form_action) + except NoReverseMatch: + return self._form_action + + @form_action.setter + def form_action(self, action): + self._form_action = action + + @property + def form_style(self): + if self._form_style == "default": + return '' + + if self._form_style == "inline": + return 'inlineLabels' + + @form_style.setter + def form_style(self, style): + if style.lower() not in ('default', 'inline'): + raise FormHelpersException('Only default and inline are valid in the \ + form_style helper attribute') + + self._form_style = style.lower() + + @property + def help_text_inline(self): + return self._help_text_inline + + @help_text_inline.setter + def help_text_inline(self, flag): + self._help_text_inline = flag + self._error_text_inline = not flag + + @property + def error_text_inline(self): + return self._error_text_inline + + @error_text_inline.setter + def error_text_inline(self, flag): + self._error_text_inline = flag + self._help_text_inline = not flag + + def add_input(self, input_object): + self.inputs.append(input_object) + + def add_layout(self, layout): + self.layout = layout + + def render_layout(self, form, context, template_pack=TEMPLATE_PACK): + """ + Returns safe html of the rendering of the layout + """ + form.rendered_fields = set() + form.crispy_field_template = self.field_template + + # This renders the specified Layout strictly + html = self.layout.render( + form, + self.form_style, + context, + template_pack=template_pack + ) + + # Rendering some extra fields if specified + if self.render_unmentioned_fields or self.render_hidden_fields or self.render_required_fields: + fields = set(form.fields.keys()) + left_fields_to_render = fields - form.rendered_fields + for field in left_fields_to_render: + if ( + self.render_unmentioned_fields or + self.render_hidden_fields and form.fields[field].widget.is_hidden or + self.render_required_fields and form.fields[field].widget.is_required + ): + html += render_field( + field, + form, + self.form_style, + context, + template_pack=template_pack + ) + + # If the user has Meta.fields defined, not included in the layout, + # we suppose they need to be rendered + if hasattr(form, 'Meta'): + if hasattr(form.Meta, 'fields'): + current_fields = tuple(getattr(form, 'fields', {}).keys()) + meta_fields = getattr(form.Meta, 'fields') + + fields_to_render = list_intersection(current_fields, meta_fields) + left_fields_to_render = list_difference(fields_to_render, form.rendered_fields) + + for field in left_fields_to_render: + # We still respect the configuration of the helper + # regarding which fields to render + if ( + self.render_unmentioned_fields or + (self.render_hidden_fields and + form.fields[field].widget.is_hidden) or + (self.render_required_fields and + form.fields[field].widget.is_required) + ): + html += render_field(field, form, self.form_style, context) + + return mark_safe(html) + + def get_attributes(self, template_pack=TEMPLATE_PACK): + """ + Used by crispy_forms_tags to get helper attributes + """ + items = { + 'disable_csrf': self.disable_csrf, + 'error_text_inline': self.error_text_inline, + 'field_class': self.field_class, + 'field_template': + self.field_template or '%s/field.html' % template_pack, + 'form_method': self.form_method.strip(), + 'form_show_errors': self.form_show_errors, + 'form_show_labels': self.form_show_labels, + 'form_style': self.form_style.strip(), + 'form_tag': self.form_tag, + 'help_text_inline': self.help_text_inline, + 'html5_required': self.html5_required, + 'include_media': self.include_media, + 'label_class': self.label_class, + 'use_custom_control': self.use_custom_control, + } + + if template_pack == 'bootstrap4': + if 'form-horizontal' in self.form_class.split(): + bootstrap_size_match = re.findall(r'col-(xl|lg|md|sm)-(\d+)', self.label_class) + if bootstrap_size_match: + offset_pattern = 'offset-%s-%s' + items['bootstrap_checkbox_offsets'] = [offset_pattern % m for m in bootstrap_size_match] + else: + bootstrap_size_match = re.findall(r'col-(lg|md|sm|xs)-(\d+)', self.label_class) + if bootstrap_size_match: + offset_pattern = 'col-%s-offset-%s' + items['bootstrap_checkbox_offsets'] = [offset_pattern % m for m in bootstrap_size_match] + + items['attrs'] = {} + if self.attrs: + items['attrs'] = self.attrs.copy() + if self.form_action: + items['attrs']['action'] = self.form_action.strip() + if self.form_id: + items['attrs']['id'] = self.form_id.strip() + if self.form_class: + # uni_form TEMPLATE PACK has a uniForm class by default + if template_pack == 'uni_form': + items['attrs']['class'] = "uniForm %s" % self.form_class.strip() + else: + items['attrs']['class'] = self.form_class.strip() + else: + if template_pack == 'uni_form': + items['attrs']['class'] = self.attrs.get('class', '') + " uniForm" + if self.form_group_wrapper_class: + items['attrs']['form_group_wrapper_class'] = self.form_group_wrapper_class + + items['flat_attrs'] = flatatt(items['attrs']) + + if self.inputs: + items['inputs'] = self.inputs + if self.form_error_title: + items['form_error_title'] = self.form_error_title.strip() + if self.formset_error_title: + items['formset_error_title'] = self.formset_error_title.strip() + + for attribute_name, value in self.__dict__.items(): + if attribute_name not in items and attribute_name not in ['layout', 'inputs'] and not attribute_name.startswith('_'): + items[attribute_name] = value + + return items diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/layout.py b/dbportal/lib/python3.6/site-packages/crispy_forms/layout.py new file mode 100644 index 0000000..cabb5ac --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/layout.py @@ -0,0 +1,476 @@ +from __future__ import unicode_literals + +from django.template import Template +from django.template.loader import render_to_string +from django.utils.html import conditional_escape + +from crispy_forms.compatibility import string_types, text_type +from crispy_forms.utils import ( + TEMPLATE_PACK, flatatt, get_template_pack, render_field, +) + + +class TemplateNameMixin(object): + + def get_template_name(self, template_pack): + if '%s' in self.template: + template = self.template % template_pack + else: + template = self.template + + return template + + +class LayoutObject(TemplateNameMixin): + def __getitem__(self, slice): + return self.fields[slice] + + def __setitem__(self, slice, value): + self.fields[slice] = value + + def __delitem__(self, slice): + del self.fields[slice] + + def __len__(self): + return len(self.fields) + + def __getattr__(self, name): + """ + This allows us to access self.fields list methods like append or insert, without + having to declare them one by one + """ + # Check necessary for unpickling, see #107 + if 'fields' in self.__dict__ and hasattr(self.fields, name): + return getattr(self.fields, name) + else: + return object.__getattribute__(self, name) + + def get_field_names(self, index=None): + """ + Returns a list of lists, those lists are named pointers. First parameter + is the location of the field, second one the name of the field. Example:: + + [ + [[0,1,2], 'field_name1'], + [[0,3], 'field_name2'] + ] + """ + return self.get_layout_objects(string_types, index=None, greedy=True) + + def get_layout_objects(self, *LayoutClasses, **kwargs): + """ + Returns a list of lists pointing to layout objects of any type matching + `LayoutClasses`:: + + [ + [[0,1,2], 'div'], + [[0,3], 'field_name'] + ] + + :param max_level: An integer that indicates max level depth to reach when + traversing a layout. + :param greedy: Boolean that indicates whether to be greedy. If set, max_level + is skipped. + """ + index = kwargs.pop('index', None) + max_level = kwargs.pop('max_level', 0) + greedy = kwargs.pop('greedy', False) + + pointers = [] + + if index is not None and not isinstance(index, list): + index = [index] + elif index is None: + index = [] + + for i, layout_object in enumerate(self.fields): + if isinstance(layout_object, LayoutClasses): + if len(LayoutClasses) == 1 and LayoutClasses[0] == string_types: + pointers.append([index + [i], layout_object]) + else: + pointers.append([index + [i], layout_object.__class__.__name__.lower()]) + + # If it's a layout object and we haven't reached the max depth limit or greedy + # we recursive call + if hasattr(layout_object, 'get_field_names') and (len(index) < max_level or greedy): + new_kwargs = {'index': index + [i], 'max_level': max_level, 'greedy': greedy} + pointers = pointers + layout_object.get_layout_objects(*LayoutClasses, **new_kwargs) + + return pointers + + def get_rendered_fields(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + return ''.join( + render_field(field, form, form_style, context, template_pack=template_pack, **kwargs) + for field in self.fields + ) + + +class Layout(LayoutObject): + """ + Form Layout. It is conformed by Layout objects: `Fieldset`, `Row`, `Column`, `MultiField`, + `HTML`, `ButtonHolder`, `Button`, `Hidden`, `Reset`, `Submit` and fields. Form fields + have to be strings. + Layout objects `Fieldset`, `Row`, `Column`, `MultiField` and `ButtonHolder` can hold other + Layout objects within. Though `ButtonHolder` should only hold `HTML` and BaseInput + inherited classes: `Button`, `Hidden`, `Reset` and `Submit`. + + Example:: + + helper.layout = Layout( + Fieldset('Company data', + 'is_company' + ), + Fieldset(_('Contact details'), + 'email', + Row('password1', 'password2'), + 'first_name', + 'last_name', + HTML(''), + 'company' + ), + ButtonHolder( + Submit('Save', 'Save', css_class='button white'), + ), + ) + """ + def __init__(self, *fields): + self.fields = list(fields) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + return self.get_rendered_fields(form, form_style, context, template_pack, **kwargs) + + +class ButtonHolder(LayoutObject): + """ + Layout object. It wraps fields in a
+ + This is where you should put Layout objects that render to form buttons like Submit. + It should only hold `HTML` and `BaseInput` inherited objects. + + Example:: + + ButtonHolder( + HTML(Information Saved), + Submit('Save', 'Save') + ) + """ + template = "%s/layout/buttonholder.html" + + def __init__(self, *fields, **kwargs): + self.fields = list(fields) + self.css_class = kwargs.get('css_class', None) + self.css_id = kwargs.get('css_id', None) + self.template = kwargs.get('template', self.template) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + html = self.get_rendered_fields(form, form_style, context, template_pack, **kwargs) + + template = self.get_template_name(template_pack) + context.update({'buttonholder': self, 'fields_output': html}) + + return render_to_string(template, context.flatten()) + + +class BaseInput(TemplateNameMixin): + """ + A base class to reduce the amount of code in the Input classes. + """ + template = "%s/layout/baseinput.html" + + def __init__(self, name, value, **kwargs): + self.name = name + self.value = value + self.id = kwargs.pop('css_id', '') + self.attrs = {} + + if 'css_class' in kwargs: + self.field_classes += ' %s' % kwargs.pop('css_class') + + self.template = kwargs.pop('template', self.template) + self.flat_attrs = flatatt(kwargs) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + """ + Renders an `` if container is used as a Layout object. + Input button value can be a variable in context. + """ + self.value = Template(text_type(self.value)).render(context) + template = self.get_template_name(template_pack) + context.update({'input': self}) + + return render_to_string(template, context.flatten()) + + +class Submit(BaseInput): + """ + Used to create a Submit button descriptor for the {% crispy %} template tag:: + + submit = Submit('Search the Site', 'search this site') + + .. note:: The first argument is also slugified and turned into the id for the submit button. + """ + input_type = 'submit' + + def __init__(self, *args, **kwargs): + self.field_classes = 'submit submitButton' if get_template_pack() == 'uni_form' else 'btn btn-primary' + super(Submit, self).__init__(*args, **kwargs) + + +class Button(BaseInput): + """ + Used to create a Submit input descriptor for the {% crispy %} template tag:: + + button = Button('Button 1', 'Press Me!') + + .. note:: The first argument is also slugified and turned into the id for the button. + """ + input_type = 'button' + + def __init__(self, *args, **kwargs): + self.field_classes = 'button' if get_template_pack() == 'uni_form' else 'btn' + super(Button, self).__init__(*args, **kwargs) + + +class Hidden(BaseInput): + """ + Used to create a Hidden input descriptor for the {% crispy %} template tag. + """ + input_type = 'hidden' + field_classes = 'hidden' + + +class Reset(BaseInput): + """ + Used to create a Reset button input descriptor for the {% crispy %} template tag:: + + reset = Reset('Reset This Form', 'Revert Me!') + + .. note:: The first argument is also slugified and turned into the id for the reset. + """ + input_type = 'reset' + + def __init__(self, *args, **kwargs): + self.field_classes = 'reset resetButton' if get_template_pack() == 'uni_form' else 'btn btn-inverse' + super(Reset, self).__init__(*args, **kwargs) + + +class Fieldset(LayoutObject): + """ + Layout object. It wraps fields in a
+ + Example:: + + Fieldset("Text for the legend", + 'form_field_1', + 'form_field_2' + ) + + The first parameter is the text for the fieldset legend. This text is context aware, + so you can do things like:: + + Fieldset("Data for {{ user.username }}", + 'form_field_1', + 'form_field_2' + ) + """ + template = "%s/layout/fieldset.html" + + def __init__(self, legend, *fields, **kwargs): + self.fields = list(fields) + self.legend = legend + self.css_class = kwargs.pop('css_class', '') + self.css_id = kwargs.pop('css_id', None) + self.template = kwargs.pop('template', self.template) + self.flat_attrs = flatatt(kwargs) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + fields = self.get_rendered_fields(form, form_style, context, template_pack, **kwargs) + + legend = '' + if self.legend: + legend = '%s' % Template(text_type(self.legend)).render(context) + + template = self.get_template_name(template_pack) + return render_to_string( + template, + {'fieldset': self, 'legend': legend, 'fields': fields, 'form_style': form_style} + ) + + +class MultiField(LayoutObject): + """ MultiField container. Renders to a MultiField
""" + template = "%s/layout/multifield.html" + field_template = "%s/multifield.html" + + def __init__(self, label, *fields, **kwargs): + self.fields = list(fields) + self.label_html = label + self.label_class = kwargs.pop('label_class', 'blockLabel') + self.css_class = kwargs.pop('css_class', 'ctrlHolder') + self.css_id = kwargs.pop('css_id', None) + self.help_text = kwargs.pop('help_text', None) + self.template = kwargs.pop('template', self.template) + self.field_template = kwargs.pop('field_template', self.field_template) + self.flat_attrs = flatatt(kwargs) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + # If a field within MultiField contains errors + if context['form_show_errors']: + for field in map(lambda pointer: pointer[1], self.get_field_names()): + if field in form.errors: + self.css_class += " error" + + field_template = self.field_template % template_pack + fields_output = self.get_rendered_fields( + form, form_style, context, template_pack, template=field_template, + labelclass=self.label_class, layout_object=self, **kwargs + ) + + template = self.get_template_name(template_pack) + context.update({ + 'multifield': self, + 'fields_output': fields_output + }) + + return render_to_string(template, context.flatten()) + + +class Div(LayoutObject): + """ + Layout object. It wraps fields in a
+ + You can set `css_id` for a DOM id and `css_class` for a DOM class. Example:: + + Div('form_field_1', 'form_field_2', css_id='div-example', css_class='divs') + """ + template = "%s/layout/div.html" + + def __init__(self, *fields, **kwargs): + self.fields = list(fields) + + if hasattr(self, 'css_class') and 'css_class' in kwargs: + self.css_class += ' %s' % kwargs.pop('css_class') + if not hasattr(self, 'css_class'): + self.css_class = kwargs.pop('css_class', None) + + self.css_id = kwargs.pop('css_id', '') + self.template = kwargs.pop('template', self.template) + self.flat_attrs = flatatt(kwargs) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + fields = self.get_rendered_fields(form, form_style, context, template_pack, **kwargs) + + template = self.get_template_name(template_pack) + return render_to_string(template, {'div': self, 'fields': fields}) + + +class Row(Div): + """ + Layout object. It wraps fields in a div whose default class is "formRow". Example:: + + Row('form_field_1', 'form_field_2', 'form_field_3') + """ + template = "%s/layout/row.html" + + +class Column(Div): + """ + Layout object. It wraps fields in a div so the wrapper can be used as a column. Example:: + + Column('form_field_1', 'form_field_2') + + Depending on the template, css class associated to the div is formColumn, row, or nothing. For this last case, you + must provide css classes. Example:: + + Column('form_field_1', 'form_field_2', css_class='col-xs-6',) + """ + template = "%s/layout/column.html" + + +class HTML(object): + """ + Layout object. It can contain pure HTML and it has access to the whole + context of the page where the form is being rendered. + + Examples:: + + HTML("{% if saved %}Data saved{% endif %}") + HTML('') + """ + + def __init__(self, html): + self.html = html + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs): + return Template(text_type(self.html)).render(context) + + +class Field(LayoutObject): + """ + Layout object, It contains one field name, and you can add attributes to it easily. + For setting class attributes, you need to use `css_class`, as `class` is a Python keyword. + + Example:: + + Field('field_name', style="color: #333;", css_class="whatever", id="field_name") + """ + template = "%s/field.html" + + def __init__(self, *args, **kwargs): + self.fields = list(args) + + if not hasattr(self, 'attrs'): + self.attrs = {} + else: + # Make sure shared state is not edited. + self.attrs = self.attrs.copy() + + if 'css_class' in kwargs: + if 'class' in self.attrs: + self.attrs['class'] += " %s" % kwargs.pop('css_class') + else: + self.attrs['class'] = kwargs.pop('css_class') + + self.wrapper_class = kwargs.pop('wrapper_class', None) + self.template = kwargs.pop('template', self.template) + + # We use kwargs as HTML attributes, turning data_id='test' into data-id='test' + self.attrs.update(dict([(k.replace('_', '-'), conditional_escape(v)) for k, v in kwargs.items()])) + + def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, extra_context=None, **kwargs): + if extra_context is None: + extra_context = {} + if hasattr(self, 'wrapper_class'): + extra_context['wrapper_class'] = self.wrapper_class + + template = self.get_template_name(template_pack) + + return self.get_rendered_fields( + form, form_style, context, template_pack, + template=template, attrs=self.attrs, extra_context=extra_context, + **kwargs + ) + + +class MultiWidgetField(Field): + """ + Layout object. For fields with :class:`~django.forms.MultiWidget` as `widget`, you can pass + additional attributes to each widget. + + Example:: + + MultiWidgetField( + 'multiwidget_field_name', + attrs=( + {'style': 'width: 30px;'}, + {'class': 'second_widget_class'} + ), + ) + + .. note:: To override widget's css class use ``class`` not ``css_class``. + """ + def __init__(self, *args, **kwargs): + self.fields = list(args) + self.attrs = kwargs.pop('attrs', {}) + self.template = kwargs.pop('template', self.template) + self.wrapper_class = kwargs.pop('wrapper_class', None) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/layout_slice.py b/dbportal/lib/python3.6/site-packages/crispy_forms/layout_slice.py new file mode 100644 index 0000000..0e20396 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/layout_slice.py @@ -0,0 +1,160 @@ +# -*- coding: utf-8 -*- +from crispy_forms.bootstrap import Container +from crispy_forms.compatibility import integer_types, string_types +from crispy_forms.exceptions import DynamicError +from crispy_forms.layout import Fieldset, MultiField + + +class LayoutSlice(object): + # List of layout objects that need args passed first before fields + args_first = (Fieldset, MultiField, Container) + + def __init__(self, layout, key): + self.layout = layout + if isinstance(key, integer_types): + self.slice = slice(key, key + 1, 1) + else: + self.slice = key + + def wrapped_object(self, LayoutClass, fields, *args, **kwargs): + """ + Returns a layout object of type `LayoutClass` with `args` and `kwargs` that + wraps `fields` inside. + """ + if args: + if isinstance(fields, list): + fields = tuple(fields) + else: + fields = (fields,) + + if LayoutClass in self.args_first: + arguments = args + fields + else: + arguments = fields + args + + return LayoutClass(*arguments, **kwargs) + else: + if isinstance(fields, list): + return LayoutClass(*fields, **kwargs) + else: + return LayoutClass(fields, **kwargs) + + def pre_map(self, function): + """ + Iterates over layout objects pointed in `self.slice` executing `function` on them. + It passes `function` penultimate layout object and the position where to find last one + """ + if isinstance(self.slice, slice): + for i in range(*self.slice.indices(len(self.layout.fields))): + function(self.layout, i) + + elif isinstance(self.slice, list): + # A list of pointers Ex: [[[0, 0], 'div'], [[0, 2, 3], 'field_name']] + for pointer in self.slice: + position = pointer[0] + + # If it's pointing first level + if len(position) == 1: + function(self.layout, position[-1]) + else: + layout_object = self.layout.fields[position[0]] + for i in position[1:-1]: + layout_object = layout_object.fields[i] + + try: + function(layout_object, position[-1]) + except IndexError: + # We could avoid this exception, recalculating pointers. + # However this case is most of the time an undesired behavior + raise DynamicError("Trying to wrap a field within an already wrapped field, \ + recheck your filter or layout") + + def wrap(self, LayoutClass, *args, **kwargs): + """ + Wraps every layout object pointed in `self.slice` under a `LayoutClass` instance with + `args` and `kwargs` passed. + """ + def wrap_object(layout_object, j): + layout_object.fields[j] = self.wrapped_object( + LayoutClass, layout_object.fields[j], *args, **kwargs + ) + + self.pre_map(wrap_object) + + def wrap_once(self, LayoutClass, *args, **kwargs): + """ + Wraps every layout object pointed in `self.slice` under a `LayoutClass` instance with + `args` and `kwargs` passed, unless layout object's parent is already a subclass of + `LayoutClass`. + """ + def wrap_object_once(layout_object, j): + if not isinstance(layout_object, LayoutClass): + layout_object.fields[j] = self.wrapped_object( + LayoutClass, layout_object.fields[j], *args, **kwargs + ) + + self.pre_map(wrap_object_once) + + def wrap_together(self, LayoutClass, *args, **kwargs): + """ + Wraps all layout objects pointed in `self.slice` together under a `LayoutClass` + instance with `args` and `kwargs` passed. + """ + if isinstance(self.slice, slice): + # The start of the slice is replaced + start = self.slice.start if self.slice.start is not None else 0 + self.layout.fields[start] = self.wrapped_object( + LayoutClass, self.layout.fields[self.slice], *args, **kwargs + ) + + # The rest of places of the slice are removed, as they are included in the previous + for i in reversed(range(*self.slice.indices(len(self.layout.fields)))): + if i != start: + del self.layout.fields[i] + + elif isinstance(self.slice, list): + raise DynamicError("wrap_together doesn't work with filter, only with [] operator") + + def map(self, function): + """ + Iterates over layout objects pointed in `self.slice` executing `function` on them + It passes `function` last layout object + """ + if isinstance(self.slice, slice): + for i in range(*self.slice.indices(len(self.layout.fields))): + function(self.layout.fields[i]) + + elif isinstance(self.slice, list): + # A list of pointers Ex: [[[0, 0], 'div'], [[0, 2, 3], 'field_name']] + for pointer in self.slice: + position = pointer[0] + + layout_object = self.layout.fields[position[0]] + for i in position[1:]: + previous_layout_object = layout_object + layout_object = layout_object.fields[i] + + # If update_attrs is applied to a string, we call to its wrapping layout object + if ( + function.__name__ == 'update_attrs' + and isinstance(layout_object, string_types) + ): + function(previous_layout_object) + else: + function(layout_object) + + def update_attributes(self, **original_kwargs): + """ + Updates attributes of every layout object pointed in `self.slice` using kwargs + """ + def update_attrs(layout_object): + kwargs = original_kwargs.copy() + if hasattr(layout_object, 'attrs'): + if 'css_class' in kwargs: + if 'class' in layout_object.attrs: + layout_object.attrs['class'] += " %s" % kwargs.pop('css_class') + else: + layout_object.attrs['class'] = kwargs.pop('css_class') + layout_object.attrs.update(kwargs) + + self.map(update_attrs) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/accordion-group.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/accordion-group.html new file mode 100644 index 0000000..2a42618 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/accordion-group.html @@ -0,0 +1,10 @@ +
+ +
+
+ {{ fields|safe }} +
+
+
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/accordion.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/accordion.html new file mode 100644 index 0000000..9a589e5 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/accordion.html @@ -0,0 +1,3 @@ +
+ {{ content|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/betterform.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/betterform.html new file mode 100644 index 0000000..387d5f9 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/betterform.html @@ -0,0 +1,22 @@ +{% for fieldset in form.fieldsets %} +
+ {% if fieldset.legend %} + {{ fieldset.legend }} + {% endif %} + + {% if fieldset.description %} +

{{ fieldset.description }}

+ {% endif %} + + {% for field in fieldset %} + {% if field.is_hidden %} + {{ field }} + {% else %} + {% include "bootstrap/field.html" %} + {% endif %} + {% endfor %} + {% if not forloop.last or not fieldset_open %} +
+ {% endif %} +{% endfor %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/display_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/display_form.html new file mode 100644 index 0000000..62aa466 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/display_form.html @@ -0,0 +1,9 @@ +{% if form.form_html %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "bootstrap/errors.html" %} + {% endif %} + {{ form.form_html }} +{% else %} + {% include "bootstrap/uni_form.html" %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/errors.html new file mode 100644 index 0000000..f49dfb4 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/errors.html @@ -0,0 +1,8 @@ +{% if form.non_field_errors %} +
+ {% if form_error_title %}

{{ form_error_title }}

{% endif %} +
    + {{ form.non_field_errors|unordered_list }} +
+
+{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/errors_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/errors_formset.html new file mode 100644 index 0000000..3ddf9c6 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/errors_formset.html @@ -0,0 +1,9 @@ +{% if formset.non_form_errors %} +
+ {% if formset_error_title %}

{{ formset_error_title }}

{% endif %} +
    + {{ formset.non_form_errors|unordered_list }} +
+
+{% endif %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/field.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/field.html new file mode 100644 index 0000000..3c6e2b3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/field.html @@ -0,0 +1,36 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + <{% if tag %}{{ tag }}{% else %}div{% endif %} id="div_{{ field.auto_id }}" class="control-group{% if wrapper_class %} {{ wrapper_class }}{% endif %}{% if form_show_errors%}{% if field.errors %} error{% endif %}{% endif %}{% if field.css_classes %} {{ field.css_classes }}{% endif %}"> + {% if field.label and not field|is_checkbox and form_show_labels %} + + {% endif %} + + {% if field|is_checkboxselectmultiple %} + {% include 'bootstrap/layout/checkboxselectmultiple.html' %} + {% endif %} + + {% if field|is_radioselect %} + {% include 'bootstrap/layout/radioselect.html' %} + {% endif %} + + {% if not field|is_checkboxselectmultiple and not field|is_radioselect %} +
+ {% if field|is_checkbox and form_show_labels %} + + {% include 'bootstrap/layout/help_text_and_errors.html' %} + {% else %} + {% crispy_field field %} + {% include 'bootstrap/layout/help_text_and_errors.html' %} + {% endif %} +
+ {% endif %} + +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/alert.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/alert.html new file mode 100644 index 0000000..904c111 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/alert.html @@ -0,0 +1,4 @@ + + {% if dismiss %}{% endif %} + {{ content|safe }} +
\ No newline at end of file diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/baseinput.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/baseinput.html new file mode 100644 index 0000000..aa3f2fe --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/baseinput.html @@ -0,0 +1,9 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/button.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/button.html new file mode 100644 index 0000000..013492e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/button.html @@ -0,0 +1 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/buttonholder.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/buttonholder.html new file mode 100644 index 0000000..23a3945 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/buttonholder.html @@ -0,0 +1,4 @@ +
+ {{ fields_output|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/checkboxselectmultiple.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/checkboxselectmultiple.html new file mode 100644 index 0000000..5a02aa0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/checkboxselectmultiple.html @@ -0,0 +1,14 @@ +{% load crispy_forms_filters %} +{% load l10n %} + +
+ {% include 'bootstrap/layout/field_errors_block.html' %} + + {% for choice in field.field.choices %} + + {% endfor %} + + {% include 'bootstrap/layout/help_text.html' %} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/checkboxselectmultiple_inline.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/checkboxselectmultiple_inline.html new file mode 100644 index 0000000..bbc702b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/checkboxselectmultiple_inline.html @@ -0,0 +1,14 @@ +{% if field.is_hidden %} + {{ field }} +{% else %} +
+ + {% if field.label %} + + {% endif %} + + {% include 'bootstrap/layout/checkboxselectmultiple.html' %} +
+{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/column.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/column.html new file mode 100644 index 0000000..44923ce --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/column.html @@ -0,0 +1,3 @@ +
+ {{ fields|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/div.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/div.html new file mode 100644 index 0000000..1e72f16 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/div.html @@ -0,0 +1,4 @@ +
+ {{ fields|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_errors.html new file mode 100644 index 0000000..d38f735 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_errors.html @@ -0,0 +1,5 @@ +{% if form_show_errors and field.errors %} + {% for error in field.errors %} + {{ error }} + {% endfor %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_errors_block.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_errors_block.html new file mode 100644 index 0000000..fb02dee --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_errors_block.html @@ -0,0 +1,5 @@ +{% if form_show_errors and field.errors %} + {% for error in field.errors %} +

{{ error }}

+ {% endfor %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_with_buttons.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_with_buttons.html new file mode 100644 index 0000000..1ea3fdc --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/field_with_buttons.html @@ -0,0 +1,17 @@ +{% load crispy_forms_field %} + + + {% if field.label and form_show_labels %} + + {% endif %} + +
+
+ {% crispy_field field %} + {{ buttons|safe }} +
+ {% include 'bootstrap/layout/help_text_and_errors.html' %} +
+
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/fieldset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/fieldset.html new file mode 100644 index 0000000..81ed29b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/fieldset.html @@ -0,0 +1,6 @@ +
+ {% if legend %}{{ legend|safe }}{% endif %} + {{ fields|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/formactions.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/formactions.html new file mode 100644 index 0000000..a774317 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/formactions.html @@ -0,0 +1,3 @@ + + {{ fields_output|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/help_text.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/help_text.html new file mode 100644 index 0000000..e53750e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/help_text.html @@ -0,0 +1,7 @@ +{% if field.help_text %} + {% if help_text_inline %} + {{ field.help_text|safe }} + {% else %} +

{{ field.help_text|safe }}

+ {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/help_text_and_errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/help_text_and_errors.html new file mode 100644 index 0000000..b70b565 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/help_text_and_errors.html @@ -0,0 +1,13 @@ +{% if help_text_inline and not error_text_inline %} + {% include 'bootstrap/layout/help_text.html' %} +{% endif %} + +{% if error_text_inline %} + {% include 'bootstrap/layout/field_errors.html' %} +{% else %} + {% include 'bootstrap/layout/field_errors_block.html' %} +{% endif %} + +{% if not help_text_inline %} + {% include 'bootstrap/layout/help_text.html' %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/multifield.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/multifield.html new file mode 100644 index 0000000..0a2c050 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/multifield.html @@ -0,0 +1,27 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + + {% if field.label %} + + {% endif %} + +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/prepended_appended_text.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/prepended_appended_text.html new file mode 100644 index 0000000..311d67f --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/prepended_appended_text.html @@ -0,0 +1,24 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} +
+ + {% if field.label and form_show_labels %} + + {% endif %} + +
+
+ {% if crispy_prepended_text %}{{ crispy_prepended_text|safe }}{% endif %} + {% crispy_field field %} + {% if crispy_appended_text %}{{ crispy_appended_text|safe }}{% endif %} +
+ + {% include 'bootstrap/layout/help_text_and_errors.html' %} +
+
+{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/radioselect.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/radioselect.html new file mode 100644 index 0000000..521d17c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/radioselect.html @@ -0,0 +1,14 @@ +{% load crispy_forms_filters %} +{% load l10n %} + +
+ {% include 'bootstrap/layout/field_errors_block.html' %} + + {% for choice in field.field.choices %} + + {% endfor %} + + {% include 'bootstrap/layout/help_text.html' %} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/radioselect_inline.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/radioselect_inline.html new file mode 100644 index 0000000..5f26de3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/radioselect_inline.html @@ -0,0 +1,14 @@ +{% if field.is_hidden %} + {{ field }} +{% else %} +
+ + {% if field.label %} + + {% endif %} + + {% include 'bootstrap/layout/radioselect.html' %} +
+{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/row.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/row.html new file mode 100644 index 0000000..e2f0170 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/row.html @@ -0,0 +1,3 @@ +
+ {{ fields|safe }} +
diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/tab-link.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/tab-link.html new file mode 100644 index 0000000..60a69e0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/tab-link.html @@ -0,0 +1 @@ +
  • {{ link.name|capfirst }}{% if tab.errors %}!{% endif %}
  • diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/tab.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/tab.html new file mode 100644 index 0000000..80dc797 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/tab.html @@ -0,0 +1,6 @@ + + {{ links|safe }} + +
    + {{ content|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/uneditable_input.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/uneditable_input.html new file mode 100644 index 0000000..de0597c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/layout/uneditable_input.html @@ -0,0 +1,7 @@ +
    +
    {{ field.label|safe }}{% if field.field.required %}*{% endif %}
    +
    + {% if field.value %}{{ field.value }}{% endif %} + {% include 'bootstrap/layout/help_text.html' %} +
    +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/table_inline_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/table_inline_formset.html new file mode 100644 index 0000000..4b3e778 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/table_inline_formset.html @@ -0,0 +1,62 @@ +{% load crispy_forms_tags %} +{% load crispy_forms_utils %} +{% load crispy_forms_field %} + +{% specialspaceless %} +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + + + {% if formset.readonly and not formset.queryset.exists %} + {% else %} + + {% for field in formset.forms.0 %} + {% if field.label and not field.is_hidden %} + + {{ field.label|safe }}{% if field.field.required and not field|is_checkbox %}*{% endif %} + + {% endif %} + {% endfor %} + + {% endif %} + + + + + {% for field in formset.empty_form %} + {% include 'bootstrap/field.html' with tag="td" form_show_labels=False %} + {% endfor %} + + + {% for form in formset %} + {% if form_show_errors and not form.is_extra %} + {% include "bootstrap/errors.html" %} + {% endif %} + + + {% for field in form %} + {% include 'bootstrap/field.html' with tag="td" form_show_labels=False %} + {% endfor %} + + {% endfor %} + + + + {% if inputs %} +
    + {% for input in inputs %} + {% include "bootstrap/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if formset_tag %}{% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/uni_form.html new file mode 100644 index 0000000..da67226 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/uni_form.html @@ -0,0 +1,11 @@ +{% load crispy_forms_utils %} + +{% specialspaceless %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "bootstrap/errors.html" %} + {% endif %} + {% for field in form %} + {% include field_template %} + {% endfor %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/uni_formset.html new file mode 100644 index 0000000..7aac176 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/uni_formset.html @@ -0,0 +1,8 @@ +{% with formset.management_form as form %} + {% include 'bootstrap/uni_form.html' %} +{% endwith %} +{% for form in formset %} +
    + {% include 'bootstrap/uni_form.html' %} +
    +{% endfor %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/whole_uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/whole_uni_form.html new file mode 100644 index 0000000..e8cd684 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/whole_uni_form.html @@ -0,0 +1,19 @@ +{% load crispy_forms_utils %} + +{% specialspaceless %} +{% if form_tag %}
    {% endif %} + {% if form_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + + {% include "bootstrap/display_form.html" %} + + {% if inputs %} +
    + {% for input in inputs %} + {% include "bootstrap/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if form_tag %}
    {% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/whole_uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/whole_uni_formset.html new file mode 100644 index 0000000..458c8f2 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap/whole_uni_formset.html @@ -0,0 +1,30 @@ +{% load crispy_forms_tags %} +{% load crispy_forms_utils %} + +{% specialspaceless %} +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + {% include "bootstrap/errors_formset.html" %} + + {% for form in formset %} + {% include "bootstrap/display_form.html" %} + {% endfor %} + + {% if inputs %} +
    + {% for input in inputs %} + {% include "bootstrap/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if formset_tag %}
    {% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/accordion-group.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/accordion-group.html new file mode 100644 index 0000000..5d39b8e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/accordion-group.html @@ -0,0 +1,12 @@ +
    +
    +

    + {{ div.name }} +

    +
    +
    +
    + {{ fields|safe }} +
    +
    +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/accordion.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/accordion.html new file mode 100644 index 0000000..295bf41 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/accordion.html @@ -0,0 +1,3 @@ +
    + {{ content|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/betterform.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/betterform.html new file mode 100644 index 0000000..657b5e9 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/betterform.html @@ -0,0 +1,22 @@ +{% for fieldset in form.fieldsets %} +
    + {% if fieldset.legend %} + {{ fieldset.legend }} + {% endif %} + + {% if fieldset.description %} +

    {{ fieldset.description }}

    + {% endif %} + + {% for field in fieldset %} + {% if field.is_hidden %} + {{ field }} + {% else %} + {% include "bootstrap3/field.html" %} + {% endif %} + {% endfor %} + {% if not forloop.last or not fieldset_open %} +
    + {% endif %} +{% endfor %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/display_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/display_form.html new file mode 100644 index 0000000..1bbfaff --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/display_form.html @@ -0,0 +1,9 @@ +{% if form.form_html %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "bootstrap3/errors.html" %} + {% endif %} + {{ form.form_html }} +{% else %} + {% include "bootstrap3/uni_form.html" %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/errors.html new file mode 100644 index 0000000..14fd41b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/errors.html @@ -0,0 +1,8 @@ +{% if form.non_field_errors %} +
    + {% if form_error_title %}

    {{ form_error_title }}

    {% endif %} +
      + {{ form.non_field_errors|unordered_list }} +
    +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/errors_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/errors_formset.html new file mode 100644 index 0000000..900a871 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/errors_formset.html @@ -0,0 +1,9 @@ +{% if formset.non_form_errors %} +
    + {% if formset_error_title %}

    {{ formset_error_title }}

    {% endif %} +
      + {{ formset.non_form_errors|unordered_list }} +
    +
    +{% endif %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/field.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/field.html new file mode 100644 index 0000000..0d569a5 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/field.html @@ -0,0 +1,48 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + {% if field|is_checkbox %} +
    + {% if label_class %} +
    + {% endif %} + {% endif %} + <{% if tag %}{{ tag }}{% else %}div{% endif %} id="div_{{ field.auto_id }}" {% if not field|is_checkbox %}class="form-group{% else %}class="checkbox{% endif %}{% if wrapper_class %} {{ wrapper_class }}{% endif %}{% if form_show_errors%}{% if field.errors %} has-error{% endif %}{% endif %}{% if field.css_classes %} {{ field.css_classes }}{% endif %}"> + {% if field.label and not field|is_checkbox and form_show_labels %} + + {% endif %} + + {% if field|is_checkboxselectmultiple %} + {% include 'bootstrap3/layout/checkboxselectmultiple.html' %} + {% endif %} + + {% if field|is_radioselect %} + {% include 'bootstrap3/layout/radioselect.html' %} + {% endif %} + + {% if not field|is_checkboxselectmultiple and not field|is_radioselect %} + {% if field|is_checkbox and form_show_labels %} + + {% include 'bootstrap3/layout/help_text_and_errors.html' %} + {% else %} +
    + {% crispy_field field %} + {% include 'bootstrap3/layout/help_text_and_errors.html' %} +
    + {% endif %} + {% endif %} + + {% if field|is_checkbox %} + {% if label_class %} +
    + {% endif %} +
    + {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/inputs.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/inputs.html new file mode 100644 index 0000000..48fe839 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/inputs.html @@ -0,0 +1,13 @@ +{% if inputs %} +
    + {% if label_class %} +
    + {% endif %} + +
    + {% for input in inputs %} + {% include "bootstrap3/layout/baseinput.html" %} + {% endfor %} +
    +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/alert.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/alert.html new file mode 100644 index 0000000..904c111 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/alert.html @@ -0,0 +1,4 @@ + + {% if dismiss %}{% endif %} + {{ content|safe }} +
    \ No newline at end of file diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/baseinput.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/baseinput.html new file mode 100644 index 0000000..aa3f2fe --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/baseinput.html @@ -0,0 +1,9 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/button.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/button.html new file mode 100644 index 0000000..013492e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/button.html @@ -0,0 +1 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/buttonholder.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/buttonholder.html new file mode 100644 index 0000000..23a3945 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/buttonholder.html @@ -0,0 +1,4 @@ +
    + {{ fields_output|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/checkboxselectmultiple.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/checkboxselectmultiple.html new file mode 100644 index 0000000..abc07aa --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/checkboxselectmultiple.html @@ -0,0 +1,17 @@ +{% load crispy_forms_filters %} +{% load l10n %} + +
    + {% include 'bootstrap3/layout/field_errors_block.html' %} + + {% for choice in field.field.choices %} + + {% if not inline_class %}
    {% endif %} + + {% if not inline_class %}
    {% endif %} + {% endfor %} + + {% include 'bootstrap3/layout/help_text.html' %} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/checkboxselectmultiple_inline.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/checkboxselectmultiple_inline.html new file mode 100644 index 0000000..394480d --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/checkboxselectmultiple_inline.html @@ -0,0 +1,14 @@ +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + + {% if field.label %} + + {% endif %} + + {% include 'bootstrap3/layout/checkboxselectmultiple.html' %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/column.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/column.html new file mode 100644 index 0000000..82fa3e2 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/column.html @@ -0,0 +1,3 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/div.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/div.html new file mode 100644 index 0000000..1e72f16 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/div.html @@ -0,0 +1,4 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_errors.html new file mode 100644 index 0000000..b49cdc3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_errors.html @@ -0,0 +1,5 @@ +{% if form_show_errors and field.errors %} + {% for error in field.errors %} + {{ error }} + {% endfor %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_errors_block.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_errors_block.html new file mode 100644 index 0000000..fb02dee --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_errors_block.html @@ -0,0 +1,5 @@ +{% if form_show_errors and field.errors %} + {% for error in field.errors %} +

    {{ error }}

    + {% endfor %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_with_buttons.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_with_buttons.html new file mode 100644 index 0000000..ed31891 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/field_with_buttons.html @@ -0,0 +1,17 @@ +{% load crispy_forms_field %} + + + {% if field.label and form_show_labels %} + + {% endif %} + +
    +
    + {% crispy_field field %} + {{ buttons|safe }} +
    + {% include 'bootstrap3/layout/help_text_and_errors.html' %} +
    + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/fieldset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/fieldset.html new file mode 100644 index 0000000..81ed29b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/fieldset.html @@ -0,0 +1,6 @@ +
    + {% if legend %}{{ legend|safe }}{% endif %} + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/formactions.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/formactions.html new file mode 100644 index 0000000..770785e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/formactions.html @@ -0,0 +1,9 @@ + + {% if label_class %} +
    + {% endif %} + +
    + {{ fields_output|safe }} +
    + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/help_text.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/help_text.html new file mode 100644 index 0000000..7574614 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/help_text.html @@ -0,0 +1,7 @@ +{% if field.help_text %} + {% if help_text_inline %} + {{ field.help_text|safe }} + {% else %} +
    {{ field.help_text|safe }}
    + {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/help_text_and_errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/help_text_and_errors.html new file mode 100644 index 0000000..3b3964a --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/help_text_and_errors.html @@ -0,0 +1,13 @@ +{% if help_text_inline and not error_text_inline %} + {% include 'bootstrap3/layout/help_text.html' %} +{% endif %} + +{% if error_text_inline %} + {% include 'bootstrap3/layout/field_errors.html' %} +{% else %} + {% include 'bootstrap3/layout/field_errors_block.html' %} +{% endif %} + +{% if not help_text_inline %} + {% include 'bootstrap3/layout/help_text.html' %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/inline_field.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/inline_field.html new file mode 100644 index 0000000..8b1dc77 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/inline_field.html @@ -0,0 +1,21 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + {% if field|is_checkbox %} +
    + +
    + {% else %} +
    + + {% crispy_field field 'placeholder' field.label %} +
    + {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/multifield.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/multifield.html new file mode 100644 index 0000000..a7cda4b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/multifield.html @@ -0,0 +1,25 @@ +
    + + {% if form_show_errors %} + + {% endif %} + + {% if multifield.label_html %} +

    {{ multifield.label_html|safe }}

    + {% endif %} + +
    + {{ fields_output|safe }} +
    + +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/prepended_appended_text.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/prepended_appended_text.html new file mode 100644 index 0000000..8f28eda --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/prepended_appended_text.html @@ -0,0 +1,24 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + + {% if field.label and form_show_labels %} + + {% endif %} + +
    +
    + {% if crispy_prepended_text %}{{ crispy_prepended_text|safe }}{% endif %} + {% crispy_field field %} + {% if crispy_appended_text %}{{ crispy_appended_text|safe }}{% endif %} +
    + + {% include 'bootstrap3/layout/help_text_and_errors.html' %} +
    +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/radioselect.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/radioselect.html new file mode 100644 index 0000000..ea6e80a --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/radioselect.html @@ -0,0 +1,16 @@ +{% load crispy_forms_filters %} +{% load l10n %} + +
    + {% include 'bootstrap3/layout/field_errors_block.html' %} + + {% for choice in field.field.choices %} + {% if not inline_class %}
    {% endif %} + + {% if not inline_class %}
    {% endif %} + {% endfor %} + + {% include 'bootstrap3/layout/help_text.html' %} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/radioselect_inline.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/radioselect_inline.html new file mode 100644 index 0000000..d496ed9 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/radioselect_inline.html @@ -0,0 +1,14 @@ +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + + {% if field.label %} + + {% endif %} + + {% include 'bootstrap3/layout/radioselect.html' %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/row.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/row.html new file mode 100644 index 0000000..e2f0170 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/row.html @@ -0,0 +1,3 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/tab-link.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/tab-link.html new file mode 100644 index 0000000..60a69e0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/tab-link.html @@ -0,0 +1 @@ +
  • {{ link.name|capfirst }}{% if tab.errors %}!{% endif %}
  • diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/tab.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/tab.html new file mode 100644 index 0000000..730b4b4 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/tab.html @@ -0,0 +1,6 @@ + + {{ links|safe }} + +
    + {{ content|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/uneditable_input.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/uneditable_input.html new file mode 100644 index 0000000..6a228b6 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/layout/uneditable_input.html @@ -0,0 +1,10 @@ +{% load crispy_forms_field %} + + +
    + +
    + {% crispy_field field 'disabled' 'disabled' %} + {% include 'bootstrap3/layout/help_text.html' %} +
    +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/multifield.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/multifield.html new file mode 100644 index 0000000..47fd4b3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/multifield.html @@ -0,0 +1,39 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + + {% if field|is_checkbox %} + {% if field.errors %}
    {% endif %} +
    + {% if field.label %} + + {% endif %} + {% if field.help_text %} +

    {{ field.help_text|safe }} + {% endif %} +

    + {% if field.errors %}
    {% endif %} + {% else %} +
    + {% if field.label %} + + {% endif %} + {% crispy_field field %} + {% if field.help_text %} + {{ field.help_text|safe }} + {% endif %} +
    + {% endif %} + +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/table_inline_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/table_inline_formset.html new file mode 100644 index 0000000..03f49c0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/table_inline_formset.html @@ -0,0 +1,57 @@ +{% load crispy_forms_tags %} +{% load crispy_forms_utils %} +{% load crispy_forms_field %} + +{% specialspaceless %} +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + + + {% if formset.readonly and not formset.queryset.exists %} + {% else %} + + {% for field in formset.forms.0 %} + {% if field.label and not field.is_hidden %} + + {{ field.label|safe }}{% if field.field.required and not field|is_checkbox %}*{% endif %} + + {% endif %} + {% endfor %} + + {% endif %} + + + + + {% for field in formset.empty_form %} + {% include 'bootstrap3/field.html' with tag="td" form_show_labels=False %} + {% endfor %} + + + {% for form in formset %} + {% if form_show_errors and not form.is_extra %} + {% include "bootstrap3/errors.html" %} + {% endif %} + + + {% for field in form %} + {% include 'bootstrap3/field.html' with tag="td" form_show_labels=False %} + {% endfor %} + + {% endfor %} + + + + {% include "bootstrap3/inputs.html" %} + +{% if formset_tag %}{% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/uni_form.html new file mode 100644 index 0000000..5f863eb --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/uni_form.html @@ -0,0 +1,11 @@ +{% load crispy_forms_utils %} + +{% specialspaceless %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "bootstrap3/errors.html" %} + {% endif %} + {% for field in form %} + {% include field_template %} + {% endfor %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/uni_formset.html new file mode 100644 index 0000000..701852f --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/uni_formset.html @@ -0,0 +1,8 @@ +{% with formset.management_form as form %} + {% include 'bootstrap3/uni_form.html' %} +{% endwith %} +{% for form in formset %} +
    + {% include 'bootstrap3/uni_form.html' %} +
    +{% endfor %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/whole_uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/whole_uni_form.html new file mode 100644 index 0000000..97f4471 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/whole_uni_form.html @@ -0,0 +1,14 @@ +{% load crispy_forms_utils %} + +{% specialspaceless %} +{% if form_tag %}
    {% endif %} + {% if form_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + + {% include "bootstrap3/display_form.html" %} + + {% include "bootstrap3/inputs.html" %} + +{% if form_tag %}
    {% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/whole_uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/whole_uni_formset.html new file mode 100644 index 0000000..30dd974 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap3/whole_uni_formset.html @@ -0,0 +1,30 @@ +{% load crispy_forms_tags %} +{% load crispy_forms_utils %} + +{% specialspaceless %} +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + {% include "bootstrap3/errors_formset.html" %} + + {% for form in formset %} + {% include "bootstrap3/display_form.html" %} + {% endfor %} + + {% if inputs %} +
    + {% for input in inputs %} + {% include "bootstrap3/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if formset_tag %}
    {% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/accordion-group.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/accordion-group.html new file mode 100644 index 0000000..cc0c2e9 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/accordion-group.html @@ -0,0 +1,17 @@ +
    + + +
    +
    + {{ fields|safe }} +
    +
    +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/accordion.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/accordion.html new file mode 100644 index 0000000..b5376bc --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/accordion.html @@ -0,0 +1,3 @@ +
    + {{ content|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/betterform.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/betterform.html new file mode 100644 index 0000000..847520e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/betterform.html @@ -0,0 +1,22 @@ +{% for fieldset in form.fieldsets %} +
    + {% if fieldset.legend %} + {{ fieldset.legend }} + {% endif %} + + {% if fieldset.description %} +

    {{ fieldset.description }}

    + {% endif %} + + {% for field in fieldset %} + {% if field.is_hidden %} + {{ field }} + {% else %} + {% include "bootstrap4/field.html" %} + {% endif %} + {% endfor %} + {% if not forloop.last or not fieldset_open %} +
    + {% endif %} +{% endfor %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/display_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/display_form.html new file mode 100644 index 0000000..7655644 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/display_form.html @@ -0,0 +1,9 @@ +{% if form.form_html %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "bootstrap4/errors.html" %} + {% endif %} + {{ form.form_html }} +{% else %} + {% include "bootstrap4/uni_form.html" %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/errors.html new file mode 100644 index 0000000..3c2934c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/errors.html @@ -0,0 +1,8 @@ +{% if form.non_field_errors %} +
    + {% if form_error_title %}

    {{ form_error_title }}

    {% endif %} +
      + {{ form.non_field_errors|unordered_list }} +
    +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/errors_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/errors_formset.html new file mode 100644 index 0000000..4b9564d --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/errors_formset.html @@ -0,0 +1,9 @@ +{% if formset.non_form_errors %} +
    + {% if formset_error_title %}

    {{ formset_error_title }}

    {% endif %} +
      + {{ formset.non_form_errors|unordered_list }} +
    +
    +{% endif %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/field.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/field.html new file mode 100644 index 0000000..ec6908f --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/field.html @@ -0,0 +1,54 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + {% if field|is_checkbox %} +
    + {% if label_class %} +
    + {% endif %} + {% endif %} + <{% if tag %}{{ tag }}{% else %}div{% endif %} id="div_{{ field.auto_id }}" class="{% if not field|is_checkbox %}form-group{% if 'form-horizontal' in form_class %} row{% endif %}{% else %}{%if use_custom_control%}custom-control custom-checkbox{% else %}form-check{% endif %}{% endif %}{% if wrapper_class %} {{ wrapper_class }}{% endif %}{% if field.css_classes %} {{ field.css_classes }}{% endif %}"> + {% if field.label and not field|is_checkbox and form_show_labels %} + + {% endif %} + + {% if field|is_checkboxselectmultiple %} + {% include 'bootstrap4/layout/checkboxselectmultiple.html' %} + {% endif %} + + {% if field|is_radioselect %} + {% include 'bootstrap4/layout/radioselect.html' %} + {% endif %} + + {% if not field|is_checkboxselectmultiple and not field|is_radioselect %} + {% if field|is_checkbox and form_show_labels %} + {%if use_custom_control%} + {% crispy_field field 'class' 'custom-control-input' %} + {% else %} + {% crispy_field field 'class' 'form-check-input' %} + {% endif %} + + {% include 'bootstrap4/layout/help_text_and_errors.html' %} + {% elif field|is_file and not field|is_clearable_file and use_custom_control %} + {% include 'bootstrap4/layout/field_file.html' %} + {% else %} +
    + {% crispy_field field %} + {% include 'bootstrap4/layout/help_text_and_errors.html' %} +
    + {% endif %} + {% endif %} + + {% if field|is_checkbox %} + {% if label_class %} +
    + {% endif %} +
    + {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/inputs.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/inputs.html new file mode 100644 index 0000000..ac3da3a --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/inputs.html @@ -0,0 +1,13 @@ +{% if inputs %} +
    + {% if label_class %} +
    + {% endif %} + +
    + {% for input in inputs %} + {% include "bootstrap4/layout/baseinput.html" %} + {% endfor %} +
    +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/alert.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/alert.html new file mode 100644 index 0000000..904c111 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/alert.html @@ -0,0 +1,4 @@ + + {% if dismiss %}{% endif %} + {{ content|safe }} + \ No newline at end of file diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/baseinput.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/baseinput.html new file mode 100644 index 0000000..aa3f2fe --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/baseinput.html @@ -0,0 +1,9 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/button.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/button.html new file mode 100644 index 0000000..013492e --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/button.html @@ -0,0 +1 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/buttonholder.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/buttonholder.html new file mode 100644 index 0000000..23a3945 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/buttonholder.html @@ -0,0 +1,4 @@ +
    + {{ fields_output|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/checkboxselectmultiple.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/checkboxselectmultiple.html new file mode 100644 index 0000000..ed62296 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/checkboxselectmultiple.html @@ -0,0 +1,26 @@ +{% load crispy_forms_filters %} +{% load l10n %} + +
    + + {% for choice in field.field.choices %} +
    + + + {% if field.errors and forloop.last and not inline_class %} + {% include 'bootstrap4/layout/field_errors_block.html' %} + {% endif %} +
    + {% endfor %} + {% if field.errors and inline_class %} +
    + {# the following input is only meant to allow boostrap to render the error message as it has to be after an invalid input. As the input has no name, no data will be sent. #} + + {% include 'bootstrap4/layout/field_errors_block.html' %} +
    + {% endif %} + + {% include 'bootstrap4/layout/help_text.html' %} +
    \ No newline at end of file diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/checkboxselectmultiple_inline.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/checkboxselectmultiple_inline.html new file mode 100644 index 0000000..0f55bdb --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/checkboxselectmultiple_inline.html @@ -0,0 +1,14 @@ +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + + {% if field.label %} + + {% endif %} + + {% include 'bootstrap4/layout/checkboxselectmultiple.html' %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/column.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/column.html new file mode 100644 index 0000000..e16c44b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/column.html @@ -0,0 +1,3 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/div.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/div.html new file mode 100644 index 0000000..1e72f16 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/div.html @@ -0,0 +1,4 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_errors.html new file mode 100644 index 0000000..f649872 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_errors.html @@ -0,0 +1,5 @@ +{% if form_show_errors and field.errors %} + {% for error in field.errors %} + {{ error }} + {% endfor %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_errors_block.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_errors_block.html new file mode 100644 index 0000000..e788b79 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_errors_block.html @@ -0,0 +1,5 @@ +{% if form_show_errors and field.errors %} + {% for error in field.errors %} +

    {{ error }}

    + {% endfor %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_file.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_file.html new file mode 100644 index 0000000..7a5d598 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_file.html @@ -0,0 +1,16 @@ +{% load crispy_forms_field %} + +
    + {% crispy_field field 'class' 'custom-file-input' %} + + {% include 'bootstrap4/layout/help_text_and_errors.html' %} + +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_with_buttons.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_with_buttons.html new file mode 100644 index 0000000..8f08307 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/field_with_buttons.html @@ -0,0 +1,17 @@ +{% load crispy_forms_field %} + + + {% if field.label and form_show_labels %} + + {% endif %} + +
    +
    + {% crispy_field field %} + {{ buttons|safe }} +
    + {% include 'bootstrap4/layout/help_text_and_errors.html' %} +
    + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/fieldset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/fieldset.html new file mode 100644 index 0000000..81ed29b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/fieldset.html @@ -0,0 +1,6 @@ +
    + {% if legend %}{{ legend|safe }}{% endif %} + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/formactions.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/formactions.html new file mode 100644 index 0000000..6eaae48 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/formactions.html @@ -0,0 +1,9 @@ + + {% if label_class %} +
    + {% endif %} + +
    + {{ fields_output|safe }} +
    + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/help_text.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/help_text.html new file mode 100644 index 0000000..3b5695c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/help_text.html @@ -0,0 +1,7 @@ +{% if field.help_text %} + {% if help_text_inline %} + {{ field.help_text|safe }} + {% else %} + {{ field.help_text|safe }} + {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/help_text_and_errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/help_text_and_errors.html new file mode 100644 index 0000000..d21cd44 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/help_text_and_errors.html @@ -0,0 +1,13 @@ +{% if help_text_inline and not error_text_inline %} + {% include 'bootstrap4/layout/help_text.html' %} +{% endif %} + +{% if error_text_inline %} + {% include 'bootstrap4/layout/field_errors.html' %} +{% else %} + {% include 'bootstrap4/layout/field_errors_block.html' %} +{% endif %} + +{% if not help_text_inline %} + {% include 'bootstrap4/layout/help_text.html' %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/inline_field.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/inline_field.html new file mode 100644 index 0000000..ad94163 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/inline_field.html @@ -0,0 +1,21 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + {% if field|is_checkbox %} +
    + +
    + {% else %} +
    + + {% crispy_field field 'placeholder' field.label %} +
    + {% endif %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/multifield.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/multifield.html new file mode 100644 index 0000000..0a2c050 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/multifield.html @@ -0,0 +1,27 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} + + {% if field.label %} + + {% endif %} + +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/prepended_appended_text.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/prepended_appended_text.html new file mode 100644 index 0000000..39d4180 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/prepended_appended_text.html @@ -0,0 +1,39 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + + {% if field.label and form_show_labels %} + + {% endif %} + +
    +
    + {% if crispy_prepended_text %} +
    + {{ crispy_prepended_text|safe }} +
    + {% endif %} + {% crispy_field field %} + {% if crispy_appended_text %} +
    + {{ crispy_appended_text|safe }} +
    + {% endif %} + {% if error_text_inline %} + {% include 'bootstrap4/layout/field_errors.html' %} + {% else %} + {% include 'bootstrap4/layout/field_errors_block.html' %} + {% endif %} +
    + {% if not help_text_inline %} + {% include 'bootstrap4/layout/help_text.html' %} + {% endif %} +
    + +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/radioselect.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/radioselect.html new file mode 100644 index 0000000..f5f010a --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/radioselect.html @@ -0,0 +1,26 @@ +{% load crispy_forms_filters %} +{% load l10n %} + +
    + + {% for choice in field.field.choices %} +
    + + + {% if field.errors and forloop.last and not inline_class %} + {% include 'bootstrap4/layout/field_errors_block.html' %} + {% endif %} +
    + {% endfor %} + {% if field.errors and inline_class %} +
    + {# the following input is only meant to allow boostrap to render the error message as it has to be after an invalid input. As the input has no name, no data will be sent. #} + + {% include 'bootstrap4/layout/field_errors_block.html' %} +
    + {% endif %} + + {% include 'bootstrap4/layout/help_text.html' %} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/radioselect_inline.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/radioselect_inline.html new file mode 100644 index 0000000..4590243 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/radioselect_inline.html @@ -0,0 +1,14 @@ +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + + {% if field.label %} + + {% endif %} + + {% include 'bootstrap4/layout/radioselect.html' %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/row.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/row.html new file mode 100644 index 0000000..df032a1 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/row.html @@ -0,0 +1,3 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/tab-link.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/tab-link.html new file mode 100644 index 0000000..8f68f7c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/tab-link.html @@ -0,0 +1 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/tab.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/tab.html new file mode 100644 index 0000000..69b9cfd --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/tab.html @@ -0,0 +1,6 @@ + + {{ links|safe }} + +
    + {{ content|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/uneditable_input.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/uneditable_input.html new file mode 100644 index 0000000..b23335b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/layout/uneditable_input.html @@ -0,0 +1,10 @@ +{% load crispy_forms_field %} + + +
    + +
    + {% crispy_field field 'disabled' 'disabled' %} + {% include 'bootstrap4/layout/help_text.html' %} +
    +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/table_inline_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/table_inline_formset.html new file mode 100644 index 0000000..f77d303 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/table_inline_formset.html @@ -0,0 +1,57 @@ +{% load crispy_forms_tags %} +{% load crispy_forms_utils %} +{% load crispy_forms_field %} + +{% specialspaceless %} +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + + + {% if formset.readonly and not formset.queryset.exists %} + {% else %} + + {% for field in formset.forms.0 %} + {% if field.label and not field.is_hidden %} + + {{ field.label|safe }}{% if field.field.required and not field|is_checkbox %}*{% endif %} + + {% endif %} + {% endfor %} + + {% endif %} + + + + + {% for field in formset.empty_form %} + {% include 'bootstrap4/field.html' with tag="td" form_show_labels=False %} + {% endfor %} + + + {% for form in formset %} + {% if form_show_errors and not form.is_extra %} + {% include "bootstrap4/errors.html" %} + {% endif %} + + + {% for field in form %} + {% include 'bootstrap4/field.html' with tag="td" form_show_labels=False %} + {% endfor %} + + {% endfor %} + + + + {% include "bootstrap4/inputs.html" %} + +{% if formset_tag %}{% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/uni_form.html new file mode 100644 index 0000000..e91d0af --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/uni_form.html @@ -0,0 +1,11 @@ +{% load crispy_forms_utils %} + +{% specialspaceless %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "bootstrap4/errors.html" %} + {% endif %} + {% for field in form %} + {% include field_template %} + {% endfor %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/uni_formset.html new file mode 100644 index 0000000..a2a3c94 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/uni_formset.html @@ -0,0 +1,8 @@ +{% with formset.management_form as form %} + {% include 'bootstrap4/uni_form.html' %} +{% endwith %} +{% for form in formset %} +
    + {% include 'bootstrap4/uni_form.html' %} +
    +{% endfor %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/whole_uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/whole_uni_form.html new file mode 100644 index 0000000..03708f5 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/whole_uni_form.html @@ -0,0 +1,14 @@ +{% load crispy_forms_utils %} + +{% specialspaceless %} +{% if form_tag %}
    {% endif %} + {% if form_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + + {% include "bootstrap4/display_form.html" %} + + {% include "bootstrap4/inputs.html" %} + +{% if form_tag %}
    {% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/whole_uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/whole_uni_formset.html new file mode 100644 index 0000000..bd5cc51 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/bootstrap4/whole_uni_formset.html @@ -0,0 +1,30 @@ +{% load crispy_forms_tags %} +{% load crispy_forms_utils %} + +{% specialspaceless %} +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + {% include "bootstrap4/errors_formset.html" %} + + {% for form in formset %} + {% include "bootstrap4/display_form.html" %} + {% endfor %} + + {% if inputs %} +
    + {% for input in inputs %} + {% include "bootstrap4/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if formset_tag %}
    {% endif %} +{% endspecialspaceless %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/betterform.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/betterform.html new file mode 100644 index 0000000..a6f6783 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/betterform.html @@ -0,0 +1,22 @@ +{% for fieldset in form.fieldsets %} +
    + {% if fieldset.legend %} + {{ fieldset.legend }} + {% endif %} + + {% if fieldset.description %} +

    {{ fieldset.description }}

    + {% endif %} + + {% for field in fieldset %} + {% if field.is_hidden %} + {{ field }} + {% else %} + {% include "uni_form/field.html" %} + {% endif %} + {% endfor %} + {% if not forloop.last or not fieldset_open %} +
    + {% endif %} +{% endfor %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/display_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/display_form.html new file mode 100644 index 0000000..8122bbb --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/display_form.html @@ -0,0 +1,9 @@ +{% if form.form_html %} + {% if include_media %}{{ form.media }}{% endif %} + {% if form_show_errors %} + {% include "uni_form/errors.html" %} + {% endif %} + {{ form.form_html }} +{% else %} + {% include "uni_form/uni_form.html" %} +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/errors.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/errors.html new file mode 100644 index 0000000..c3a4bf3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/errors.html @@ -0,0 +1,8 @@ +{% if form.errors and form.non_field_errors %} +
    + {% if form_error_title %}

    {{ form_error_title }}

    {% endif %} +
      + {{ form.non_field_errors|unordered_list }} +
    +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/errors_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/errors_formset.html new file mode 100644 index 0000000..88e91fd --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/errors_formset.html @@ -0,0 +1,9 @@ +{% if formset.non_form_errors %} +
    + {% if formset_error_title %}

    {{ formset_error_title }}

    {% endif %} +
      + {{ formset.non_form_errors|unordered_list }} +
    +
    +{% endif %} + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/field.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/field.html new file mode 100644 index 0000000..73d1a43 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/field.html @@ -0,0 +1,33 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + {% if form_show_errors %} + {% for error in field.errors %} +

    + {{ error }} +

    + {% endfor %} + {% endif %} + + {% if field.label %} + {% if field|is_checkbox %} + {% crispy_field field %} + {% endif %} + + + {% endif %} + + {% if not field|is_checkbox %} + {% crispy_field field %} + {% endif %} + + {% if field.help_text %} +
    {{ field.help_text|safe }}
    + {% endif %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/field.strict.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/field.strict.html new file mode 100644 index 0000000..af84574 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/field.strict.html @@ -0,0 +1,31 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + {% for error in field.errors %} +

    + {{ error }} +

    + {% endfor %} + + {% if field|is_checkbox %} + {% crispy_field field %} + {% endif %} + + {% if field.label %} + + {% endif %} + + {% if not field|is_checkbox %} + {% crispy_field field %} + {% endif %} + + {% if field.help_text %} +

    {{ field.help_text|safe }}

    + {% endif %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/baseinput.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/baseinput.html new file mode 100644 index 0000000..0d16880 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/baseinput.html @@ -0,0 +1,9 @@ + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/buttonholder.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/buttonholder.html new file mode 100644 index 0000000..23a3945 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/buttonholder.html @@ -0,0 +1,4 @@ +
    + {{ fields_output|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/column.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/column.html new file mode 100644 index 0000000..82fa3e2 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/column.html @@ -0,0 +1,3 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/div.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/div.html new file mode 100644 index 0000000..1e72f16 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/div.html @@ -0,0 +1,4 @@ +
    + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/fieldset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/fieldset.html new file mode 100644 index 0000000..81ed29b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/fieldset.html @@ -0,0 +1,6 @@ +
    + {% if legend %}{{ legend|safe }}{% endif %} + {{ fields|safe }} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/multifield.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/multifield.html new file mode 100644 index 0000000..badff4b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/multifield.html @@ -0,0 +1,28 @@ +
    + + {% if form_show_errors %} + {% for field in multifield.bound_fields %} + {% if field.errors %} + {% for error in field.errors %} +

    {{ error }}

    + {% endfor %} + {% endif %} + {% endfor %} + {% endif %} + + {% if multifield.label_html %} +

    {{ multifield.label_html|safe }}

    + {% endif %} + +
    + {{ fields_output|safe }} +
    + + {% for field in multifield.bound_fields %} + {% if field.help_text %} +

    {{ field.help_text|safe }}

    + {% endif %} + {% endfor %} +
    diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/row.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/row.html new file mode 100644 index 0000000..f8b3cf0 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/layout/row.html @@ -0,0 +1,4 @@ +
    + {{ fields|safe }} +
    + diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/multifield.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/multifield.html new file mode 100644 index 0000000..1984efb --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/multifield.html @@ -0,0 +1,19 @@ +{% load crispy_forms_field %} + +{% if field.is_hidden %} + {{ field }} +{% else %} +
    + {% if form_show_labels and field.label %} + + {% endif %} + + {% crispy_field field %} + + {% if field.help_text %} +
    {{ field.help_text|safe }}
    + {% endif %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/uni_form.html new file mode 100644 index 0000000..9ebf9ba --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/uni_form.html @@ -0,0 +1,17 @@ +{% if include_media %}{{ form.media }}{% endif %} +{% if form_show_errors %} + {% include "uni_form/errors.html" %} +{% endif %} + +{% if form_style == "" or form_style %} +
    + +{% endif %} + +{% for field in form %} + {% include field_template %} +{% endfor %} + +{% if form_style == "" or form_style %} +
    +{% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/uni_formset.html new file mode 100644 index 0000000..28e34bd --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/uni_formset.html @@ -0,0 +1,8 @@ +{% with formset.management_form as form %} + {% include 'uni_form/uni_form.html' %} +{% endwith %} +{% for form in formset %} +
    + {% include 'uni_form/uni_form.html' %} +
    +{% endfor %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/whole_uni_form.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/whole_uni_form.html new file mode 100644 index 0000000..10b36b8 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/whole_uni_form.html @@ -0,0 +1,15 @@ +{% if form_tag %}
    {% endif %} + {% if form_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + + {% include "uni_form/display_form.html" %} + + {% if inputs %} +
    + {% for input in inputs %} + {% include "uni_form/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if form_tag %}
    {% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/whole_uni_formset.html b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/whole_uni_formset.html new file mode 100644 index 0000000..c9b780a --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templates/uni_form/whole_uni_formset.html @@ -0,0 +1,27 @@ +{% load crispy_forms_tags %} + +{% if formset_tag %} +
    +{% endif %} + {% if formset_method|lower == 'post' and not disable_csrf %} + {% csrf_token %} + {% endif %} + +
    + {{ formset.management_form|crispy }} +
    + + {% include "uni_form/errors_formset.html" %} + + {% for form in formset %} + {% include "uni_form/display_form.html" %} + {% endfor %} + + {% if inputs %} +
    + {% for input in inputs %} + {% include "uni_form/layout/baseinput.html" %} + {% endfor %} +
    + {% endif %} +{% if formset_tag %}
    {% endif %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__init__.py b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/__init__.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..b5613ab Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/__init__.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_field.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_field.cpython-36.pyc new file mode 100644 index 0000000..60f53b5 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_field.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_filters.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_filters.cpython-36.pyc new file mode 100644 index 0000000..0eb1dfb Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_filters.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_tags.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_tags.cpython-36.pyc new file mode 100644 index 0000000..f487388 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_tags.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_utils.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_utils.cpython-36.pyc new file mode 100644 index 0000000..e37ec3c Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/__pycache__/crispy_forms_utils.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_field.py b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_field.py new file mode 100644 index 0000000..fc9bdfe --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_field.py @@ -0,0 +1,208 @@ +try: + from itertools import izip +except ImportError: + izip = zip + +from django import forms, template +from django.conf import settings +from django.template import Context, loader + +from crispy_forms.utils import TEMPLATE_PACK, get_template_pack + +register = template.Library() + + +@register.filter +def is_checkbox(field): + return isinstance(field.field.widget, forms.CheckboxInput) + + +@register.filter +def is_password(field): + return isinstance(field.field.widget, forms.PasswordInput) + + +@register.filter +def is_radioselect(field): + return isinstance(field.field.widget, forms.RadioSelect) + + +@register.filter +def is_select(field): + return isinstance(field.field.widget, forms.Select) + + +@register.filter +def is_checkboxselectmultiple(field): + return isinstance(field.field.widget, forms.CheckboxSelectMultiple) + + +@register.filter +def is_file(field): + return isinstance(field.field.widget, forms.FileInput) + + +@register.filter +def is_clearable_file(field): + return isinstance(field.field.widget, forms.ClearableFileInput) + + +@register.filter +def is_multivalue(field): + return isinstance(field.field.widget, forms.MultiWidget) + + +@register.filter +def classes(field): + """ + Returns CSS classes of a field + """ + return field.widget.attrs.get('class', None) + + +@register.filter +def css_class(field): + """ + Returns widgets class name in lowercase + """ + return field.field.widget.__class__.__name__.lower() + + +def pairwise(iterable): + """s -> (s0,s1), (s2,s3), (s4, s5), ...""" + a = iter(iterable) + return izip(a, a) + + +class CrispyFieldNode(template.Node): + def __init__(self, field, attrs): + self.field = field + self.attrs = attrs + self.html5_required = 'html5_required' + + def render(self, context): + # Nodes are not threadsafe so we must store and look up our instance + # variables in the current rendering context first + if self not in context.render_context: + context.render_context[self] = ( + template.Variable(self.field), + self.attrs, + template.Variable(self.html5_required) + ) + + field, attrs, html5_required = context.render_context[self] + field = field.resolve(context) + try: + html5_required = html5_required.resolve(context) + except template.VariableDoesNotExist: + html5_required = False + + # If template pack has been overridden in FormHelper we can pick it from context + template_pack = context.get('template_pack', TEMPLATE_PACK) + + # There are special django widgets that wrap actual widgets, + # such as forms.widgets.MultiWidget, admin.widgets.RelatedFieldWidgetWrapper + widgets = getattr(field.field.widget, 'widgets', [getattr(field.field.widget, 'widget', field.field.widget)]) + + if isinstance(attrs, dict): + attrs = [attrs] * len(widgets) + + converters = { + 'textinput': 'textinput textInput', + 'fileinput': 'fileinput fileUpload', + 'passwordinput': 'textinput textInput', + } + converters.update(getattr(settings, 'CRISPY_CLASS_CONVERTERS', {})) + + for widget, attr in zip(widgets, attrs): + class_name = widget.__class__.__name__.lower() + class_name = converters.get(class_name, class_name) + css_class = widget.attrs.get('class', '') + if css_class: + if css_class.find(class_name) == -1: + css_class += " %s" % class_name + else: + css_class = class_name + + if ( + template_pack == 'bootstrap3' + and not is_checkbox(field) + and not is_file(field) + and not is_multivalue(field) + ): + css_class += ' form-control' + if field.errors: + css_class += ' form-control-danger' + + if ( + template_pack == 'bootstrap4' + and not is_multivalue(field) + ): + if not is_checkbox(field): + css_class += ' form-control' + if field.errors: + css_class += ' is-invalid' + + widget.attrs['class'] = css_class + + # HTML5 required attribute + if html5_required and field.field.required and 'required' not in widget.attrs: + if field.field.widget.__class__.__name__ != 'RadioSelect': + widget.attrs['required'] = 'required' + + for attribute_name, attribute in attr.items(): + attribute_name = template.Variable(attribute_name).resolve(context) + + if attribute_name in widget.attrs: + widget.attrs[attribute_name] += " " + template.Variable(attribute).resolve(context) + else: + widget.attrs[attribute_name] = template.Variable(attribute).resolve(context) + + return str(field) + + +@register.tag(name="crispy_field") +def crispy_field(parser, token): + """ + {% crispy_field field attrs %} + """ + token = token.split_contents() + field = token.pop(1) + attrs = {} + + # We need to pop tag name, or pairwise would fail + token.pop(0) + for attribute_name, value in pairwise(token): + attrs[attribute_name] = value + + return CrispyFieldNode(field, attrs) + + +@register.simple_tag() +def crispy_addon(field, append="", prepend="", form_show_labels=True): + """ + Renders a form field using bootstrap's prepended or appended text:: + + {% crispy_addon form.my_field prepend="$" append=".00" %} + + You can also just prepend or append like so + + {% crispy_addon form.my_field prepend="$" %} + {% crispy_addon form.my_field append=".00" %} + """ + if field: + context = Context({ + 'field': field, + 'form_show_errors': True, + 'form_show_labels': form_show_labels, + }) + template = loader.get_template('%s/layout/prepended_appended_text.html' % get_template_pack()) + context['crispy_prepended_text'] = prepend + context['crispy_appended_text'] = append + + if not prepend and not append: + raise TypeError("Expected a prepend and/or append argument") + + context = context.flatten() + + return template.render(context) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_filters.py b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_filters.py new file mode 100644 index 0000000..dc3bab3 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_filters.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +from django import template +from django.conf import settings +from django.forms import forms +from django.forms.formsets import BaseFormSet +from django.template import Context +from django.template.loader import get_template +from django.utils.safestring import mark_safe + +from crispy_forms.compatibility import lru_cache +from crispy_forms.exceptions import CrispyError +from crispy_forms.utils import TEMPLATE_PACK, flatatt + + +@lru_cache() +def uni_formset_template(template_pack=TEMPLATE_PACK): + return get_template('%s/uni_formset.html' % template_pack) + + +@lru_cache() +def uni_form_template(template_pack=TEMPLATE_PACK): + return get_template('%s/uni_form.html' % template_pack) + +register = template.Library() + + +@register.filter(name='crispy') +def as_crispy_form(form, template_pack=TEMPLATE_PACK, label_class="", field_class=""): + """ + The original and still very useful way to generate a div elegant form/formset:: + + {% load crispy_forms_tags %} + +
    + {% csrf_token %} + {{ myform|crispy }} +
    + + or, if you want to explicitly set the template pack:: + + {{ myform|crispy:"bootstrap" }} + + In ``bootstrap3`` or ``bootstrap4`` for horizontal forms you can do:: + + {{ myform|label_class:"col-lg-2",field_class:"col-lg-8" }} + """ + c = Context({ + 'field_class': field_class, + 'field_template': '%s/field.html' % template_pack, + 'form_show_errors': True, + 'form_show_labels': True, + 'label_class': label_class, + }).flatten() + if isinstance(form, BaseFormSet): + template = uni_formset_template(template_pack) + c['formset'] = form + else: + template = uni_form_template(template_pack) + c['form'] = form + + return template.render(c) + + +@register.filter(name='as_crispy_errors') +def as_crispy_errors(form, template_pack=TEMPLATE_PACK): + """ + Renders only form errors the same way as django-crispy-forms:: + + {% load crispy_forms_tags %} + {{ form|as_crispy_errors }} + + or:: + + {{ form|as_crispy_errors:"bootstrap" }} + """ + if isinstance(form, BaseFormSet): + template = get_template('%s/errors_formset.html' % template_pack) + c = Context({'formset': form}).flatten() + else: + template = get_template('%s/errors.html' % template_pack) + c = Context({'form': form}).flatten() + + return template.render(c) + + +@register.filter(name='as_crispy_field') +def as_crispy_field(field, template_pack=TEMPLATE_PACK, label_class="", field_class=""): + """ + Renders a form field like a django-crispy-forms field:: + + {% load crispy_forms_tags %} + {{ form.field|as_crispy_field }} + + or:: + + {{ form.field|as_crispy_field:"bootstrap" }} + """ + if not isinstance(field, forms.BoundField) and settings.DEBUG: + raise CrispyError('|as_crispy_field got passed an invalid or inexistent field') + + attributes = { + 'field': field, + 'form_show_errors': True, + 'form_show_labels': True, + 'label_class': label_class, + 'field_class': field_class, + } + helper = getattr(field.form, 'helper', None) + + template_path = None + if helper is not None: + attributes.update(helper.get_attributes(template_pack)) + template_path = helper.field_template + if not template_path: + template_path = '%s/field.html' % template_pack + template = get_template(template_path) + + c = Context(attributes).flatten() + return template.render(c) + + +@register.filter(name='flatatt') +def flatatt_filter(attrs): + return mark_safe(flatatt(attrs)) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_tags.py b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_tags.py new file mode 100644 index 0000000..dc20b52 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_tags.py @@ -0,0 +1,275 @@ +# -*- coding: utf-8 -*- +from django import template +from django.conf import settings +from django.forms.formsets import BaseFormSet +from django.template.loader import get_template + +from crispy_forms.compatibility import lru_cache, string_types +from crispy_forms.helper import FormHelper +from crispy_forms.utils import TEMPLATE_PACK, get_template_pack + +register = template.Library() + +# We import the filters, so they are available when doing load crispy_forms_tags +from crispy_forms.templatetags.crispy_forms_filters import * # isort:skip + + +class ForLoopSimulator(object): + """ + Simulates a forloop tag, precisely:: + + {% for form in formset.forms %} + + If `{% crispy %}` is rendering a formset with a helper, We inject a `ForLoopSimulator` object + in the context as `forloop` so that formset forms can do things like:: + + Fieldset("Item {{ forloop.counter }}", [...]) + HTML("{% if forloop.first %}First form text{% endif %}" + """ + def __init__(self, formset): + self.len_values = len(formset.forms) + + # Shortcuts for current loop iteration number. + self.counter = 1 + self.counter0 = 0 + # Reverse counter iteration numbers. + self.revcounter = self.len_values + self.revcounter0 = self.len_values - 1 + # Boolean values designating first and last times through loop. + self.first = True + self.last = (0 == self.len_values - 1) + + def iterate(self): + """ + Updates values as if we had iterated over the for + """ + self.counter += 1 + self.counter0 += 1 + self.revcounter -= 1 + self.revcounter0 -= 1 + self.first = False + self.last = (self.revcounter0 == self.len_values - 1) + + +class BasicNode(template.Node): + """ + Basic Node object that we can rely on for Node objects in normal + template tags. I created this because most of the tags we'll be using + will need both the form object and the helper string. This handles + both the form object and parses out the helper string into attributes + that templates can easily handle. + """ + def __init__(self, form, helper, template_pack=None): + self.form = form + if helper is not None: + self.helper = helper + else: + self.helper = None + self.template_pack = template_pack or get_template_pack() + + def get_render(self, context): + """ + Returns a `Context` object with all the necessary stuff for rendering the form + + :param context: `django.template.Context` variable holding the context for the node + + `self.form` and `self.helper` are resolved into real Python objects resolving them + from the `context`. The `actual_form` can be a form or a formset. If it's a formset + `is_formset` is set to True. If the helper has a layout we use it, for rendering the + form or the formset's forms. + """ + # Nodes are not thread safe in multithreaded environments + # https://docs.djangoproject.com/en/dev/howto/custom-template-tags/#thread-safety-considerations + if self not in context.render_context: + context.render_context[self] = ( + template.Variable(self.form), + template.Variable(self.helper) if self.helper else None + ) + form, helper = context.render_context[self] + + actual_form = form.resolve(context) + if self.helper is not None: + helper = helper.resolve(context) + else: + # If the user names the helper within the form `helper` (standard), we use it + # This allows us to have simplified tag syntax: {% crispy form %} + helper = FormHelper() if not hasattr(actual_form, 'helper') else actual_form.helper + + # use template_pack from helper, if defined + try: + if helper.template_pack: + self.template_pack = helper.template_pack + except AttributeError: + pass + + self.actual_helper = helper + + # We get the response dictionary + is_formset = isinstance(actual_form, BaseFormSet) + response_dict = self.get_response_dict(helper, context, is_formset) + node_context = context.__copy__() + node_context.update({'is_bound': actual_form.is_bound}) + node_context.update(response_dict) + final_context = node_context.__copy__() + + # If we have a helper's layout we use it, for the form or the formset's forms + if helper and helper.layout: + if not is_formset: + actual_form.form_html = helper.render_layout(actual_form, node_context, template_pack=self.template_pack) + else: + forloop = ForLoopSimulator(actual_form) + helper.render_hidden_fields = True + for form in actual_form: + node_context.update({'forloop': forloop}) + node_context.update({'formset_form': form}) + form.form_html = helper.render_layout(form, node_context, template_pack=self.template_pack) + forloop.iterate() + + if is_formset: + final_context['formset'] = actual_form + else: + final_context['form'] = actual_form + + return final_context + + def get_response_dict(self, helper, context, is_formset): + """ + Returns a dictionary with all the parameters necessary to render the form/formset in a template. + + :param context: `django.template.Context` for the node + :param is_formset: Boolean value. If set to True, indicates we are working with a formset. + """ + if not isinstance(helper, FormHelper): + raise TypeError('helper object provided to {% crispy %} tag must be a crispy.helper.FormHelper object.') + + attrs = helper.get_attributes(template_pack=self.template_pack) + form_type = "form" + if is_formset: + form_type = "formset" + + # We take form/formset parameters from attrs if they are set, otherwise we use defaults + response_dict = { + '%s_action' % form_type: attrs['attrs'].get('action', ''), + '%s_attrs' % form_type: attrs.get('attrs', ''), + '%s_class' % form_type: attrs['attrs'].get('class', ''), + '%s_id' % form_type: attrs['attrs'].get('id', ''), + '%s_method' % form_type: attrs.get('form_method', 'post'), + '%s_style' % form_type: attrs.get('form_style', None), + '%s_tag' % form_type: attrs.get('form_tag', True), + 'disable_csrf': attrs.get('disable_csrf', False), + 'error_text_inline': attrs.get('error_text_inline', True), + 'field_class': attrs.get('field_class', ''), + 'field_template': attrs.get('field_template', ''), + 'flat_attrs': attrs.get('flat_attrs', ''), + 'form_error_title': attrs.get('form_error_title', None), + 'form_show_errors': attrs.get('form_show_errors', True), + 'form_show_labels': attrs.get('form_show_labels', True), + 'formset_error_title': attrs.get('formset_error_title', None), + 'help_text_inline': attrs.get('help_text_inline', False), + 'html5_required': attrs.get('html5_required', False), + 'include_media': attrs.get('include_media', True), + 'inputs': attrs.get('inputs', []), + 'is_formset': is_formset, + 'label_class': attrs.get('label_class', ''), + 'template_pack': self.template_pack, + } + + # Handles custom attributes added to helpers + for attribute_name, value in attrs.items(): + if attribute_name not in response_dict: + response_dict[attribute_name] = value + + if 'csrf_token' in context: + response_dict['csrf_token'] = context['csrf_token'] + + return response_dict + + +@lru_cache() +def whole_uni_formset_template(template_pack=TEMPLATE_PACK): + return get_template('%s/whole_uni_formset.html' % template_pack) + + +@lru_cache() +def whole_uni_form_template(template_pack=TEMPLATE_PACK): + return get_template('%s/whole_uni_form.html' % template_pack) + + +class CrispyFormNode(BasicNode): + def render(self, context): + c = self.get_render(context).flatten() + + if self.actual_helper is not None and getattr(self.actual_helper, 'template', False): + template = get_template(self.actual_helper.template) + else: + if c['is_formset']: + template = whole_uni_formset_template(self.template_pack) + else: + template = whole_uni_form_template(self.template_pack) + return template.render(c) + + +# {% crispy %} tag +@register.tag(name="crispy") +def do_uni_form(parser, token): + """ + You need to pass in at least the form/formset object, and can also pass in the + optional `crispy_forms.helpers.FormHelper` object. + + helper (optional): A `crispy_forms.helper.FormHelper` object. + + Usage:: + + {% load crispy_tags %} + {% crispy form form.helper %} + + You can also provide the template pack as the third argument:: + + {% crispy form form.helper 'bootstrap' %} + + If the `FormHelper` attribute is named `helper` you can simply do:: + + {% crispy form %} + {% crispy form 'bootstrap' %} + """ + token = token.split_contents() + form = token.pop(1) + + helper = None + template_pack = "'%s'" % get_template_pack() + + # {% crispy form helper %} + try: + helper = token.pop(1) + except IndexError: + pass + + # {% crispy form helper 'bootstrap' %} + try: + template_pack = token.pop(1) + except IndexError: + pass + + # {% crispy form 'bootstrap' %} + if ( + helper is not None and + isinstance(helper, string_types) and + ("'" in helper or '"' in helper) + ): + template_pack = helper + helper = None + + if template_pack is not None: + template_pack = template_pack[1:-1] + ALLOWED_TEMPLATE_PACKS = getattr( + settings, + 'CRISPY_ALLOWED_TEMPLATE_PACKS', + ('bootstrap', 'uni_form', 'bootstrap3', 'bootstrap4') + ) + if template_pack not in ALLOWED_TEMPLATE_PACKS: + raise template.TemplateSyntaxError( + "crispy tag's template_pack argument should be in %s" % + str(ALLOWED_TEMPLATE_PACKS) + ) + + return CrispyFormNode(form, helper, template_pack=template_pack) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_utils.py b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_utils.py new file mode 100644 index 0000000..e73f942 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/templatetags/crispy_forms_utils.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +import re + +from django import template +from django.utils.encoding import force_text + +from crispy_forms.compatibility import text_type + +try: + from django.utils.functional import keep_lazy +except ImportError: + # django < 1.10 + from django.utils.functional import allow_lazy + # bare version for remove_spaces + def keep_lazy(*args): + def decorator(func): + return allow_lazy(func, *args) + return decorator + +register = template.Library() + + +@keep_lazy(text_type) +def remove_spaces(value): + html = re.sub(r'>\s{3,}<', '> <', force_text(value)) + return re.sub(r'/><', r'/> <', force_text(html)) + + +class SpecialSpacelessNode(template.Node): + def __init__(self, nodelist): + self.nodelist = nodelist + + def render(self, context): + return remove_spaces(self.nodelist.render(context).strip()) + + +@register.tag +def specialspaceless(parser, token): + """ + Removes whitespace between HTML tags, and introduces a whitespace + after buttons an inputs, necessary for Bootstrap to place them + correctly in the layout. + """ + nodelist = parser.parse(('endspecialspaceless',)) + parser.delete_first_token() + + return SpecialSpacelessNode(nodelist) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__init__.py b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/__init__.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..ff8ea75 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/conftest.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/conftest.cpython-36.pyc new file mode 100644 index 0000000..9dd1872 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/conftest.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/forms.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/forms.cpython-36.pyc new file mode 100644 index 0000000..2e15648 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/forms.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_dynamic_api.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_dynamic_api.cpython-36.pyc new file mode 100644 index 0000000..4e948b0 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_dynamic_api.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_form_helper.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_form_helper.cpython-36.pyc new file mode 100644 index 0000000..2b1373e Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_form_helper.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_layout.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_layout.cpython-36.pyc new file mode 100644 index 0000000..4cd2daa Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_layout.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_layout_objects.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_layout_objects.cpython-36.pyc new file mode 100644 index 0000000..352e28d Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_layout_objects.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_settings.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_settings.cpython-36.pyc new file mode 100644 index 0000000..d27518e Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_settings.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_tags.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_tags.cpython-36.pyc new file mode 100644 index 0000000..51a06f4 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_tags.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_utils.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_utils.cpython-36.pyc new file mode 100644 index 0000000..d4fd65d Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/test_utils.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/urls.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000..f5d6520 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/urls.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/utils.cpython-36.pyc b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/utils.cpython-36.pyc new file mode 100644 index 0000000..b05f5c3 Binary files /dev/null and b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/__pycache__/utils.cpython-36.pyc differ diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/conftest.py b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/conftest.py new file mode 100644 index 0000000..ffda48c --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/conftest.py @@ -0,0 +1,43 @@ +# coding: utf-8 +import pytest + +from crispy_forms.layout import HTML, Div, Field, Fieldset, Layout, Submit + +only_uni_form = pytest.mark.only('uni_form') +only_bootstrap = pytest.mark.only('bootstrap', 'bootstrap3', 'bootstrap4') +only_bootstrap3 = pytest.mark.only('bootstrap3') +only_bootstrap4 = pytest.mark.only('bootstrap4') + + +@pytest.fixture +def advanced_layout(): + return Layout( + Div( + Div(Div('email')), + Div(Field('password1')), + Submit("save", "save"), + Fieldset( + "legend", + 'first_name', + HTML("extra text"), + ), + Layout( + "password2", + ), + ), + 'last_name', + ) + + +@pytest.fixture(autouse=True, params=('uni_form', 'bootstrap', 'bootstrap3', + 'bootstrap4')) +def template_packs(request, settings): + check_template_pack(request.node, request.param) + settings.CRISPY_TEMPLATE_PACK = request.param + + +def check_template_pack(node, template_pack): + mark = node.get_closest_marker('only') + if mark: + if template_pack not in mark.args: + pytest.skip('Requires %s template pack' % ' or '.join(mark.args)) diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/forms.py b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/forms.py new file mode 100644 index 0000000..1fd033b --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/forms.py @@ -0,0 +1,149 @@ +from django import forms +from django.db import models + +from crispy_forms.helper import FormHelper + + +class SampleForm(forms.Form): + is_company = forms.CharField(label="company", required=False, widget=forms.CheckboxInput()) + email = forms.EmailField(label="email", max_length=30, required=True, widget=forms.TextInput(), help_text="Insert your email") + password1 = forms.CharField(label="password", max_length=30, required=True, widget=forms.PasswordInput()) + password2 = forms.CharField(label="re-enter password", max_length=30, required=True, widget=forms.PasswordInput()) + first_name = forms.CharField(label="first name", max_length=5, required=True, widget=forms.TextInput()) + last_name = forms.CharField(label="last name", max_length=5, required=True, widget=forms.TextInput()) + datetime_field = forms.SplitDateTimeField(label="date time", widget=forms.SplitDateTimeWidget()) + + def clean(self): + super(SampleForm, self).clean() + password1 = self.cleaned_data.get('password1', None) + password2 = self.cleaned_data.get('password2', None) + if not password1 and not password2 or password1 != password2: + raise forms.ValidationError("Passwords dont match") + + return self.cleaned_data + + +class SampleForm2(SampleForm): + def __init__(self, *args, **kwargs): + super(SampleForm2, self).__init__(*args, **kwargs) + self.helper = FormHelper(self) + + +class CheckboxesSampleForm(forms.Form): + checkboxes = forms.MultipleChoiceField( + choices=( + (1, "Option one"), + (2, "Option two"), + (3, "Option three") + ), + initial=(1,), + widget=forms.CheckboxSelectMultiple, + ) + + alphacheckboxes = forms.MultipleChoiceField( + choices=( + ('option_one', "Option one"), + ('option_two', "Option two"), + ('option_three', "Option three") + ), + initial=('option_two', 'option_three'), + widget=forms.CheckboxSelectMultiple, + ) + + numeric_multiple_checkboxes = forms.MultipleChoiceField( + choices=( + (1, "Option one"), + (2, "Option two"), + (3, "Option three") + ), + initial=(1, 2), + widget=forms.CheckboxSelectMultiple, + ) + + inline_radios = forms.ChoiceField( + choices=( + ('option_one', "Option one"), + ('option_two', "Option two"), + ), + widget=forms.RadioSelect, + initial='option_two', + ) + + +class CrispyTestModel(models.Model): + email = models.CharField(max_length=20) + password = models.CharField(max_length=20) + + +class SampleForm3(forms.ModelForm): + class Meta: + model = CrispyTestModel + fields = ['email', 'password'] + exclude = ['password'] + + def __init__(self, *args, **kwargs): + super(SampleForm3, self).__init__(*args, **kwargs) + self.helper = FormHelper(self) + + +class SampleForm4(forms.ModelForm): + class Meta: + """ + before Django1.6, one cannot use __all__ shortcut for fields + without getting the following error: + django.core.exceptions.FieldError: Unknown field(s) (a, l, _) specified for CrispyTestModel + because obviously it casts the string to a set + """ + model = CrispyTestModel + fields = '__all__' # eliminate RemovedInDjango18Warning + + +class SampleForm5(forms.Form): + choices = [ + (1, 1), + (2, 2), + (1000, 1000), + ] + checkbox_select_multiple = forms.MultipleChoiceField( + widget=forms.CheckboxSelectMultiple, + choices=choices + ) + radio_select = forms.ChoiceField( + widget=forms.RadioSelect, + choices=choices + ) + pk = forms.IntegerField() + + +class SampleFormWithMedia(forms.Form): + class Media: + css = {'all': ('test.css',)} + js = ('test.js',) + + +class SampleFormWithMultiValueField(forms.Form): + multi = forms.SplitDateTimeField() + +class CrispyEmptyChoiceTestModel(models.Model): + fruit = models.CharField( + choices=[ + ('apple','Apple'), + ('pear','Pear')], + null=True, + blank=True, + ) + +class SampleForm6(forms.ModelForm): + class Meta: + """ + When allowing null=True in a model field, + the corresponding field will have a choice + for the empty value. + + When the form is initialized by an instance + with initial value None, this choice should + be selected. + """ + model = CrispyEmptyChoiceTestModel + fields = ['fruit'] + widgets = {'fruit': forms.RadioSelect() } diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/crispy_render_template.html b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/crispy_render_template.html new file mode 100644 index 0000000..7527243 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/crispy_render_template.html @@ -0,0 +1,3 @@ +{% load crispy_forms_tags %} + +{% crispy form %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_field_template.html b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_field_template.html new file mode 100644 index 0000000..4724226 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_field_template.html @@ -0,0 +1,2 @@ +

    Special custom field

    +{% include 'bootstrap/field.html' %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_form_template.html b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_form_template.html new file mode 100644 index 0000000..f2da757 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_form_template.html @@ -0,0 +1,2 @@ +

    Special custom form

    +{% include "bootstrap/whole_uni_form.html" %} diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_form_template_with_context.html b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_form_template_with_context.html new file mode 100644 index 0000000..2378296 --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/templates/custom_form_template_with_context.html @@ -0,0 +1,4 @@ +

    Special custom form with context passthrough

    +Got prefix: {{ prefix }}. +{% include "bootstrap/whole_uni_form.html" %} +Got suffix: {{ suffix }}. diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/test_dynamic_api.py b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/test_dynamic_api.py new file mode 100644 index 0000000..8692f6f --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/test_dynamic_api.py @@ -0,0 +1,531 @@ +# -*- coding: utf-8 -*- +import pytest + +from django import forms + +from crispy_forms.bootstrap import AppendedText +from crispy_forms.compatibility import string_types +from crispy_forms.exceptions import DynamicError +from crispy_forms.helper import FormHelper, FormHelpersException +from crispy_forms.layout import HTML, Div, Field, Fieldset, Layout, MultiField +from crispy_forms.tests.forms import SampleForm + +from .conftest import only_uni_form + + +def test_wrap_all_fields(): + helper = FormHelper() + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + + helper.all().wrap(Field, css_class="test-class") + for field in layout.fields: + assert isinstance(field, Field) + assert field.attrs['class'] == "test-class" + + assert layout[0][0] == 'email' + assert layout[1][0] == 'password1' + assert layout[2][0] == 'password2' + + +def test_wrap_selected_fields(): + helper = FormHelper() + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + + helper[1:3].wrap(Field, css_class="test-class") + assert not isinstance(layout.fields[0], Field) + assert isinstance(layout.fields[1], Field) + assert isinstance(layout.fields[2], Field) + + helper[0].wrap(Fieldset, 'legend', css_class="test-class") + assert isinstance(layout[0], Fieldset) + assert layout[0].legend == 'legend' + assert layout[0][0] == 'email' + + +def test_wrap_together_with_slices(): + helper = FormHelper() + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + helper[1:3].wrap_together(Field, css_class="test-class") + assert layout.fields[0] == 'email' + assert isinstance(layout.fields[1], Field) + assert layout.fields[1][0] == 'password1' + assert layout.fields[1][1] == 'password2' + + layout = Layout( + Div('email'), + 'password1', + 'password2', + ) + helper.layout = layout + helper[0:3].wrap_together(Field, css_class="test-class") + assert isinstance(layout.fields[0], Field) + assert isinstance(layout.fields[0][0], Div) + assert layout.fields[0][0][0] == 'email' + assert layout.fields[0][1] == 'password1' + assert layout.fields[0][2] == 'password2' + + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + helper[0].wrap_together(Field, css_class="test-class") + assert isinstance(layout.fields[0], Field) + assert layout.fields[1] == 'password1' + assert layout.fields[2] == 'password2' + + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + helper[0].wrap_together(Fieldset, "legend", css_class="test-class") + assert isinstance(layout.fields[0], Fieldset) + assert layout.fields[0].legend == 'legend' + assert layout.fields[1] == 'password1' + assert layout.fields[2] == 'password2' + + +def test_wrap_together_partial_slices(): + helper = FormHelper() + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + + helper[:2].wrap_together(Field, css_class="test-class") + assert isinstance(layout.fields[0], Field) + assert layout.fields[1] == 'password2' + assert layout.fields[0][0] == 'email' + assert layout.fields[0][1] == 'password1' + + helper = FormHelper() + layout = Layout( + 'email', + 'password1', + 'password2', + ) + helper.layout = layout + + helper[1:].wrap_together(Field, css_class="test-class") + assert layout.fields[0] == 'email' + assert isinstance(layout.fields[1], Field) + assert layout.fields[1][0] == 'password1' + assert layout.fields[1][1] == 'password2' + + +def test_update_attributes(): + helper = FormHelper() + helper.layout = Layout( + 'email', + Field('password1'), + 'password2', + ) + helper['password1'].update_attributes(readonly=True) + assert 'readonly' in helper.layout[1].attrs + + +def test_update_attributes_and_wrap_once(): + helper = FormHelper() + layout = Layout( + 'email', + Field('password1'), + 'password2', + ) + helper.layout = layout + helper.filter(Field).update_attributes(readonly=True) + assert isinstance(layout[1], Field) + assert layout[1].attrs == {'readonly': True} + + layout = Layout( + 'email', + Div(Field('password1')), + 'password2', + ) + helper.layout = layout + helper.filter(Field, max_level=2).update_attributes(readonly=True) + assert isinstance(layout[1][0], Field) + assert layout[1][0].attrs == {'readonly': True} + + layout = Layout( + 'email', + Div(Field('password1')), + 'password2', + ) + helper.layout = layout + + helper.filter(string_types, greedy=True).wrap_once(Field) + helper.filter(Field, greedy=True).update_attributes(readonly=True) + + assert isinstance(layout[0], Field) + assert isinstance(layout[1][0], Field) + assert isinstance(layout[1][0][0], string_types) + assert isinstance(layout[2], Field) + assert layout[1][0].attrs == {'readonly': True} + assert layout[0].attrs == {'readonly': True} + assert layout[2].attrs == {'readonly': True} + + +def test_get_layout_objects(): + layout_1 = Layout( + Div() + ) + assert layout_1.get_layout_objects(Div) == [[[0], 'div']] + + layout_2 = Layout( + Div( + Div( + Div('email') + ), + Div('password1'), + 'password2' + ) + ) + assert layout_2.get_layout_objects(Div) == [[[0], 'div']] + assert layout_2.get_layout_objects(Div, max_level=1) == [ + [[0], 'div'], + [[0, 0], 'div'], + [[0, 1], 'div'] + ] + assert layout_2.get_layout_objects(Div, max_level=2) == [ + [[0], 'div'], + [[0, 0], 'div'], + [[0, 0, 0], 'div'], + [[0, 1], 'div'] + ] + + layout_3 = Layout( + 'email', + Div('password1'), + 'password2', + ) + assert layout_3.get_layout_objects(string_types, max_level=2) == [ + [[0], 'email'], + [[1, 0], 'password1'], + [[2], 'password2'] + ] + + layout_4 = Layout( + Div( + Div('field_name'), + 'field_name2', + ), + Div('password'), + 'extra_field' + ) + assert layout_4.get_layout_objects(Div) == [ + [[0], 'div'], + [[1], 'div'] + ] + assert layout_4.get_layout_objects(Div, max_level=1) == [ + [[0], 'div'], + [[0, 0], 'div'], + [[1], 'div'] + ] + + +def test_filter_and_wrap(): + helper = FormHelper() + layout = Layout( + 'email', + Div('password1'), + 'password2', + ) + helper.layout = layout + + helper.filter(string_types).wrap(Field, css_class="test-class") + assert isinstance(layout.fields[0], Field) + assert isinstance(layout.fields[1], Div) + assert isinstance(layout.fields[2], Field) + assert layout[2][0] == 'password2' + + # Wrapping a div in a div + helper.filter(Div).wrap(Div, css_class="test-class") + assert isinstance(layout.fields[1], Div) + assert isinstance(layout.fields[1].fields[0], Div) + assert layout[1][0][0] == 'password1' + + +def test_filter_and_wrap_side_effects(): + helper = FormHelper() + layout = Layout( + Div( + 'extra_field', + Div('password1'), + ), + ) + helper.layout = layout + with pytest.raises(DynamicError): + helper.filter(Div, max_level=2).wrap(Div, css_class="test-class") + + +def test_get_field_names(): + layout_1 = Div( + 'field_name' + ) + assert layout_1.get_field_names() == [ + [[0], 'field_name'] + ] + + layout_2 = Div( + Div('field_name') + ) + assert layout_2.get_field_names() == [ + [[0, 0], 'field_name'] + ] + + layout_3 = Div( + Div('field_name'), + 'password' + ) + assert layout_3.get_field_names() == [ + [[0, 0], 'field_name'], + [[1], 'password'] + ] + + layout_4 = Div( + Div( + Div('field_name'), + 'field_name2', + ), + Div('password'), + 'extra_field' + ) + assert layout_4.get_field_names() == [ + [[0, 0, 0], 'field_name'], + [[0, 1], 'field_name2'], + [[1, 0], 'password'], + [[2], 'extra_field'] + ] + + layout_5 = Div( + Div( + 'field_name', + 'field_name2', + ), + 'extra_field' + ) + assert layout_5.get_field_names() == [ + [[0, 0], 'field_name'], + [[0, 1], 'field_name2'], + [[1], 'extra_field'], + ] + + +def test_layout_get_field_names(): + layout_1 = Layout( + Div('field_name'), + 'password' + ) + assert layout_1.get_field_names() == [ + [[0, 0], 'field_name'], + [[1], 'password'], + ] + + layout_2 = Layout( + Div('field_name'), + 'password', + Fieldset('legend', 'extra_field') + ) + assert layout_2.get_field_names() == [ + [[0, 0], 'field_name'], + [[1], 'password'], + [[2, 0], 'extra_field'], + ] + + layout_3 = Layout( + Div( + Div( + Div('email') + ), + Div('password1'), + 'password2' + ) + ) + assert layout_3.get_field_names() == [ + [[0, 0, 0, 0], 'email'], + [[0, 1, 0], 'password1'], + [[0, 2], 'password2'], + ] + + +def test_filter_by_widget(advanced_layout): + form = SampleForm() + form.helper = FormHelper(form) + form.helper.layout = advanced_layout + assert form.helper.filter_by_widget(forms.PasswordInput).slice == [ + [[0, 1, 0, 0], 'password1'], + [[0, 4, 0], 'password2'], + ] + + +def test_exclude_by_widget(advanced_layout): + form = SampleForm() + form.helper = FormHelper(form) + form.helper.layout = advanced_layout + assert form.helper.exclude_by_widget(forms.PasswordInput).slice == [ + [[0, 0, 0, 0], 'email'], + [[0, 3, 0], 'first_name'], + [[1], 'last_name'], + ] + + +def test_exclude_by_widget_and_wrap(advanced_layout): + form = SampleForm() + form.helper = FormHelper(form) + form.helper.layout = advanced_layout + form.helper.exclude_by_widget(forms.PasswordInput).wrap(Field, css_class='hero') + # Check wrapped fields + assert isinstance(form.helper.layout[0][0][0][0], Field) + assert isinstance(form.helper.layout[0][3][0], Field) + assert isinstance(form.helper.layout[1], Field) + # Check others stay the same + assert isinstance(form.helper.layout[0][3][1], HTML) + assert isinstance(form.helper.layout[0][1][0][0], string_types) + assert isinstance(form.helper.layout[0][4][0], string_types) + + +def test_all_without_layout(): + form = SampleForm() + form.helper = FormHelper() + with pytest.raises(FormHelpersException): + form.helper.all().wrap(Div) + + +def test_filter_by_widget_without_form(advanced_layout): + form = SampleForm() + form.helper = FormHelper() + form.helper.layout = advanced_layout + with pytest.raises(FormHelpersException): + form.helper.filter_by_widget(forms.PasswordInput) + + +def test_formhelper__getitem__(): + helper = FormHelper() + layout = Layout( + Div('email'), + 'password1', + ) + helper.layout = layout + helper['email'].wrap(Field, css_class='hero') + assert isinstance(layout[0][0], Field) + assert layout[0][0][0] == 'email' + + helper = FormHelper() + helper.layout = Layout('password1') + helper['password1'].wrap(AppendedText, "extra") + assert isinstance(helper.layout[0], AppendedText) + assert helper.layout[0][0] == 'password1' + assert helper.layout[0].text == 'extra' + + +def test_formhelper__setitem__(): + helper = FormHelper() + layout = Layout( + 'first_field', + Div('email') + ) + helper.layout = layout + helper[0] = 'replaced' + assert layout[0] == 'replaced' + + +def test_formhelper__delitem__and__len__(): + helper = FormHelper() + layout = Layout( + 'first_field', + Div('email') + ) + helper.layout = layout + del helper[0] + assert len(helper) == 1 + + +def test__delitem__and__len__layout_object(): + layout = Layout( + 'first_field', + Div('email') + ) + del layout[0] + assert len(layout) == 1 + + +def test__getitem__layout_object(): + layout = Layout( + Div( + Div( + Div('email') + ), + Div('password1'), + 'password2' + ) + ) + assert isinstance(layout[0], Div) + assert isinstance(layout[0][0], Div) + assert isinstance(layout[0][0][0], Div) + assert isinstance(layout[0][1], Div) + assert isinstance(layout[0][1][0], string_types) + assert isinstance(layout[0][2], string_types) + + +def test__getattr__append_layout_object(): + layout = Layout( + Div('email') + ) + layout.append('password1') + assert isinstance(layout[0], Div) + assert isinstance(layout[0][0], string_types) + assert isinstance(layout[1], string_types) + + +def test__setitem__layout_object(): + layout = Layout( + Div('email') + ) + layout[0][0] = 'password1' + assert isinstance(layout[0], Div) + assert layout[0][0] == 'password1' + + +@only_uni_form +def test_filter(): + helper = FormHelper() + helper.layout = Layout( + Div( + MultiField('field_name'), + 'field_name2', + ), + Div('password'), + 'extra_field' + ) + assert helper.filter(Div, MultiField).slice == [ + [[0], 'div'], + [[1], 'div'] + ] + assert helper.filter(Div, MultiField, max_level=1).slice == [ + [[0], 'div'], + [[0, 0], 'multifield'], + [[1], 'div'] + ] + assert helper.filter(MultiField, max_level=1).slice == [ + [[0, 0], 'multifield'] + ] diff --git a/dbportal/lib/python3.6/site-packages/crispy_forms/tests/test_form_helper.py b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/test_form_helper.py new file mode 100644 index 0000000..5dc5fcd --- /dev/null +++ b/dbportal/lib/python3.6/site-packages/crispy_forms/tests/test_form_helper.py @@ -0,0 +1,912 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +import re + +import pytest + +import django +from django import forms +from django.forms.models import formset_factory +from django.template import Context, Template, TemplateSyntaxError +from django.test.html import parse_html +from django.utils.translation import ugettext_lazy as _ + +from crispy_forms.bootstrap import ( + AppendedText, FieldWithButtons, PrependedAppendedText, PrependedText, + StrictButton, +) +from crispy_forms.compatibility import text_type +from crispy_forms.helper import FormHelper, FormHelpersException +from crispy_forms.layout import ( + Button, Field, Hidden, Layout, MultiField, Reset, Submit, +) +from crispy_forms.templatetags.crispy_forms_tags import CrispyFormNode +from crispy_forms.utils import render_crispy_form + +from .conftest import ( + only_bootstrap, only_bootstrap3, only_bootstrap4, only_uni_form, +) +from .forms import SampleForm, SampleFormWithMedia, SampleFormWithMultiValueField + +try: + from django.middleware.csrf import _get_new_csrf_key +except ImportError: + from django.middleware.csrf import _get_new_csrf_string as _get_new_csrf_key + +try: + from django.urls import reverse +except ImportError: + # Django < 1.10 + from django.core.urlresolvers import reverse + + +def test_inputs(settings): + form_helper = FormHelper() + form_helper.add_input(Submit('my-submit', 'Submit', css_class="button white")) + form_helper.add_input(Reset('my-reset', 'Reset')) + form_helper.add_input(Hidden('my-hidden', 'Hidden')) + form_helper.add_input(Button('my-button', 'Button')) + + template = Template(""" + {% load crispy_forms_tags %} + {% crispy form form_helper %} + """) + c = Context({'form': SampleForm(), 'form_helper': form_helper}) + html = template.render(c) + + assert 'button white' in html + assert 'id="submit-id-my-submit"' in html + assert 'id="reset-id-my-reset"' in html + assert 'name="my-hidden"' in html + assert 'id="button-id-my-button"' in html + + if settings.CRISPY_TEMPLATE_PACK == 'uni_form': + assert 'submit submitButton' in html + assert 'reset resetButton' in html + assert 'class="button"' in html + else: + assert 'class="btn"' in html + assert 'btn btn-primary' in html + assert 'btn btn-inverse' in html + if settings.CRISPY_TEMPLATE_PACK == 'bootstrap4': + assert len(re.findall(r']+> <', html)) == 9 + else: + assert len(re.findall(r']+> <', html)) == 8 + +def test_invalid_form_method(): + form_helper = FormHelper() + with pytest.raises(FormHelpersException): + form_helper.form_method = "superPost" + + +def test_form_with_helper_without_layout(settings): + form_helper = FormHelper() + form_helper.form_id = 'this-form-rocks' + form_helper.form_class = 'forms-that-rock' + form_helper.form_method = 'GET' + form_helper.form_action = 'simpleAction' + form_helper.form_error_title = 'ERRORS' + + template = Template(""" + {% load crispy_forms_tags %} + {% crispy testForm form_helper %} + """) + + # now we render it, with errors + form = SampleForm({'password1': 'wargame', 'password2': 'god'}) + form.is_valid() + c = Context({'testForm': form, 'form_helper': form_helper}) + html = template.render(c) + + # Lets make sure everything loads right + assert html.count('Passwords dont match" in html + + # now lets remove the form tag and render it again. All the True items above + # should now be false because the form tag is removed. + form_helper.form_tag = False + html = template.render(c) + assert 'Passwords dont match' in html + assert text_type(_('This field is required.')) in html + assert 'error' in html + + # Now we render without errors + form.helper.form_show_errors = False + c = Context({'testForm': form}) + html = template.render(c) + + # Ensure errors were not rendered + assert '
  • Passwords dont match
  • ' not in html + assert text_type(_('This field is required.')) not in html + assert 'error' not in html + + +def test_html5_required(): + form = SampleForm() + form.helper = FormHelper() + form.helper.html5_required = True + html = render_crispy_form(form) + # 6 out of 7 fields are required and an extra one for the SplitDateTimeWidget makes 7. + if django.VERSION < (1, 10): + assert html.count('required="required"') == 7 + else: + assert len(re.findall(r'\brequired\b', html)) == 7 + + + form = SampleForm() + form.helper = FormHelper() + form.helper.html5_required = False + html = render_crispy_form(form) + + +def test_media_is_included_by_default_with_uniform(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'uni_form' + html = render_crispy_form(form) + assert 'test.css' in html + assert 'test.js' in html + + +def test_media_is_included_by_default_with_bootstrap(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'bootstrap' + html = render_crispy_form(form) + assert 'test.css' in html + assert 'test.js' in html + + +def test_media_is_included_by_default_with_bootstrap3(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'bootstrap3' + html = render_crispy_form(form) + assert 'test.css' in html + assert 'test.js' in html + + +def test_media_is_included_by_default_with_bootstrap4(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'bootstrap4' + html = render_crispy_form(form) + assert 'test.css' in html + assert 'test.js' in html + + +def test_media_removed_when_include_media_is_false_with_uniform(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'uni_form' + form.helper.include_media = False + html = render_crispy_form(form) + assert 'test.css' not in html + assert 'test.js' not in html + + +def test_media_removed_when_include_media_is_false_with_bootstrap(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'bootstrap' + form.helper.include_media = False + html = render_crispy_form(form) + assert 'test.css' not in html + assert 'test.js' not in html + + +def test_media_removed_when_include_media_is_false_with_bootstrap3(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'bootstrap3' + form.helper.include_media = False + html = render_crispy_form(form) + assert 'test.css' not in html + assert 'test.js' not in html + + +def test_media_removed_when_include_media_is_false_with_bootstrap4(): + form = SampleFormWithMedia() + form.helper = FormHelper() + form.helper.template_pack = 'bootstrap4' + form.helper.include_media = False + html = render_crispy_form(form) + assert 'test.css' not in html + assert 'test.js' not in html + + +def test_attrs(): + form = SampleForm() + form.helper = FormHelper() + form.helper.attrs = {'id': 'TestIdForm', 'autocomplete': "off"} + html = render_crispy_form(form) + + assert 'autocomplete="off"' in html + assert 'id="TestIdForm"' in html + + +def test_template_context(): + helper = FormHelper() + helper.attrs = { + 'id': 'test-form', + 'class': 'test-forms', + 'action': 'submit/test/form', + 'autocomplete': 'off', + } + node = CrispyFormNode('form', 'helper') + context = node.get_response_dict(helper, {}, False) + + assert context['form_id'] == "test-form" + assert context['form_attrs']['id'] == "test-form" + assert "test-forms" in context['form_class'] + assert "test-forms" in context['form_attrs']['class'] + assert context['form_action'] == "submit/test/form" + assert context['form_attrs']['action'] == "submit/test/form" + assert context['form_attrs']['autocomplete'] == "off" + + +def test_template_context_using_form_attrs(): + helper = FormHelper() + helper.form_id = 'test-form' + helper.form_class = 'test-forms' + helper.form_action = 'submit/test/form' + node = CrispyFormNode('form', 'helper') + context = node.get_response_dict(helper, {}, False) + + assert context['form_id'] == "test-form" + assert context['form_attrs']['id'] == "test-form" + assert "test-forms" in context['form_class'] + assert "test-forms" in context['form_attrs']['class'] + assert context['form_action'] == "submit/test/form" + assert context['form_attrs']['action'] == "submit/test/form" + + +def test_template_helper_access(): + helper = FormHelper() + helper.form_id = 'test-form' + + assert helper['form_id'] == 'test-form' + + +def test_without_helper(settings): + template = Template(""" + {% load crispy_forms_tags %} + {% crispy form %} + """) + c = Context({'form': SampleForm()}) + html = template.render(c) + + # Lets make sure everything loads right + assert '') + assert contains_partial(html, '') + + +def test_render_required_fields(): + test_form = SampleForm() + test_form.helper = FormHelper() + test_form.helper.layout = Layout( + 'email' + ) + test_form.helper.render_required_fields = True + + html = render_crispy_form(test_form) + assert html.count('Special custom form" in html + + +def test_helper_custom_field_template(): + form = SampleForm() + form.helper = FormHelper() + form.helper.layout = Layout( + 'password1', + 'password2', + ) + form.helper.field_template = 'custom_field_template.html' + + html = render_crispy_form(form) + assert html.count("

    Special custom field

    ") == 2 + + +def test_helper_custom_field_template_no_layout(): + form = SampleForm() + form.helper = FormHelper() + form.helper.field_template = 'custom_field_template.html' + + html = render_crispy_form(form) + for field in form.fields: + assert html.count('id="div_id_%s"' % field) == 1 + assert html.count("

    Special custom field

    ") == len(form.fields) + + +def test_helper_std_field_template_no_layout(): + form = SampleForm() + form.helper = FormHelper() + + html = render_crispy_form(form) + for field in form.fields: + assert html.count('id="div_id_%s"' % field) == 1 + + +@only_uni_form +def test_form_show_errors(): + form = SampleForm({ + 'email': 'invalidemail', + 'first_name': 'first_name_too_long', + 'last_name': 'last_name_too_long', + 'password1': 'yes', + 'password2': 'yes', + }) + form.helper = FormHelper() + form.helper.layout = Layout( + Field('email'), + Field('first_name'), + Field('last_name'), + Field('password1'), + Field('password2'), + ) + form.is_valid() + + form.helper.form_show_errors = True + html = render_crispy_form(form) + assert html.count('error') == 9 + + form.helper.form_show_errors = False + html = render_crispy_form(form) + assert html.count('error') == 0 + + +@only_uni_form +def test_multifield_errors(): + form = SampleForm({ + 'email': 'invalidemail', + 'password1': 'yes', + 'password2': 'yes', + }) + form.helper = FormHelper() + form.helper.layout = Layout( + MultiField('legend', 'email') + ) + form.is_valid() + + form.helper.form_show_errors = True + html = render_crispy_form(form) + assert html.count('error') == 3 + + # Reset layout for avoiding side effects + form.helper.layout = Layout( + MultiField('legend', 'email') + ) + form.helper.form_show_errors = False + html = render_crispy_form(form) + assert html.count('error') == 0 + + +@only_bootstrap3 +def test_bootstrap_form_show_errors(): + form = SampleForm({ + 'email': 'invalidemail', + 'first_name': 'first_name_too_long', + 'last_name': 'last_name_too_long', + 'password1': 'yes', + 'password2': 'yes', + }) + form.helper = FormHelper() + form.helper.layout = Layout( + AppendedText('email', 'whatever'), + PrependedText('first_name', 'blabla'), + PrependedAppendedText('last_name', 'foo', 'bar'), + AppendedText('password1', 'whatever'), + PrependedText('password2', 'blabla'), + ) + form.is_valid() + + form.helper.form_show_errors = True + html = render_crispy_form(form) + assert html.count('error') == 6 + + form.helper.form_show_errors = False + html = render_crispy_form(form) + assert html.count('error') == 0 + + +@only_bootstrap4 +def test_bootstrap_form_show_errors(): + form = SampleForm({ + 'email': 'invalidemail', + 'first_name': 'first_name_too_long', + 'last_name': 'last_name_too_long', + 'password1': 'yes', + 'password2': 'yes', + }) + form.helper = FormHelper() + form.helper.layout = Layout( + AppendedText('email', 'whatever'), + PrependedText('first_name', 'blabla'), + PrependedAppendedText('last_name', 'foo', 'bar'), + AppendedText('password1', 'whatever'), + PrependedText('password2', 'blabla'), + ) + form.is_valid() + + form.helper.form_show_errors = True + html = render_crispy_form(form) + assert html.count('error') == 3 + + form.helper.form_show_errors = False + html = render_crispy_form(form) + assert html.count('error') == 0 + + +@only_bootstrap +def test_error_text_inline(settings): + form = SampleForm({'email': 'invalidemail'}) + form.helper = FormHelper() + layout = Layout( + AppendedText('first_name', 'wat'), + PrependedText('email', '@'), + PrependedAppendedText('last_name', '@', 'wat'), + ) + form.helper.layout = layout + form.is_valid() + html = render_crispy_form(form) + + help_class = 'help-inline' + help_tag_name = 'p' + if settings.CRISPY_TEMPLATE_PACK == 'bootstrap3': + help_class = 'help-block' + elif settings.CRISPY_TEMPLATE_PACK == 'bootstrap4': + help_class = 'invalid-feedback' + help_tag_name = 'div' + + matches = re.findall( + r'') + error_position = html.find('

    ') + assert help_position < error_position + + # Viceversa + form = SampleForm({'email': 'invalidemail'}) + form.helper = FormHelper() + form.helper.error_text_inline = True + form.helper.help_text_inline = False + form.helper.layout = Layout('email') + form.is_valid() + html = render_crispy_form(form) + + # Check that error goes before help, otherwise CSS won't work + error_position = html.find('') + help_position = html.find('

    ') + assert error_position < help_position + + +@only_bootstrap4 +def test_error_and_help_inline(): + form = SampleForm({'email': 'invalidemail'}) + form.helper = FormHelper() + form.helper.error_text_inline = False + form.helper.help_text_inline = True + form.helper.layout = Layout('email') + form.is_valid() + html = render_crispy_form(form) + + # Check that help goes before error, otherwise CSS won't work + help_position = html.find('') + error_position = html.find('

    ') + assert help_position < error_position + + # Viceversa + form = SampleForm({'email': 'invalidemail'}) + form.helper = FormHelper() + form.helper.error_text_inline = True + form.helper.help_text_inline = False + form.helper.layout = Layout('email') + form.is_valid() + html = render_crispy_form(form) + + # Check that error goes before help, otherwise CSS won't work + error_position = html.find('') + help_position = html.find('') + assert error_position < help_position + + +@only_bootstrap +def test_form_show_labels(): + form = SampleForm() + form.helper = FormHelper() + form.helper.layout = Layout( + 'password1', + FieldWithButtons( + 'password2', + StrictButton("Confirm") + ), + PrependedText( + 'first_name', + 'Mr.' + ), + AppendedText( + 'last_name', + '@' + ), + PrependedAppendedText( + 'datetime_field', + 'on', + 'secs' + ) + ) + form.helper.form_show_labels = False + + html = render_crispy_form(form) + assert html.count("